    /* ========== Blog Section ========== */
.blog-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: block;
    background: #F9FAFB;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-read-more-overlay {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more-overlay {
    transform: scale(1);
}

.blog-read-more-overlay i {
    color: var(--aviris-secondary);
    font-size: 20px;
}

.blog-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6B7280;
}

.blog-author {
    font-weight: 600;
    color: #374151;
}

.blog-separator {
    color: #D1D5DB;
}

.blog-date {
    color: #6B7280;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #374151;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title a {
    color: var(--aviris-secondary);
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 20px;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .blog-image-wrapper {
        height: 260px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-content {
        padding: 24px;
    }
}

@media (max-width: 991.98px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-image-wrapper {
        height: 240px;
    }

    .blog-title {
        font-size: 19px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blog-content {
        padding: 22px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-image-wrapper {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-meta {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .blog-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .blog-excerpt {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .blog-read-more-overlay {
        width: 50px;
        height: 50px;
    }

    .blog-read-more-overlay i {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .blog-card {
        margin-bottom: 20px;
    }

    .blog-image-wrapper {
        height: 200px;
    }
}