/* Blog Page Styles */

.blog-page {
    background-color: #f8f9fa;
}

.blog-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(214, 51, 132, 0.1);
}

.blog-title {
    transition: color 0.2s;
}

.blog-card:hover .blog-title {
    color: var(--primary-color) !important;
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.03);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fs-7 {
    font-size: 0.75rem;
}

.blog-avatar {
    width: 40px;
    height: 40px;
    font-weight: bold;
    font-size: 1rem;
}

.blog-contributor-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-read-link {
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.blog-read-link:hover {
    color: var(--primary-color);
}

.blog-read-link i {
    transition: transform 0.2s ease;
}

.blog-read-link:hover i {
    transform: translateX(4px);
}

.blog-author-label {
    font-size: 0.75rem;
}

.blog-search-container {
    max-width: 500px;
}

.blog-search-input {
    height: 60px;
}

.page-description {
    max-width: 600px;
}