/* Blog Listing Page Styles */

.blog-hero {
    background: linear-gradient(135deg, #004a99 0%, #003d7d 100%);
    padding: 80px 0 60px;
    color: white;
}

/* Featured Card */
.blog-featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 74, 153, 0.1);
    transition: all 0.3s ease;
}
.blog-featured-card:hover {
    box-shadow: 0 8px 30px rgba(0, 74, 153, 0.15);
}
.blog-featured-image {
    height: 320px;
    background: linear-gradient(135deg, #004a99 0%, #003d7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 72px;
}
.blog-featured-body {
    padding: 32px;
}
.blog-featured-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-featured-title a {
    color: #1a1a1a;
    text-decoration: none;
}
.blog-featured-title a:hover {
    color: #004a99;
}
.blog-featured-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #004a99;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}
.blog-read-more:hover {
    color: #003d7d;
    gap: 10px;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.blog-card-image-link {
    text-decoration: none;
}
.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, #004a99 0%, #003d7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}
.blog-card-body {
    padding: 24px;
}
.blog-card-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 74, 153, 0.08);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #004a99;
    margin-bottom: 12px;
}
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: #004a99;
}
.blog-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #999;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.blog-card-meta i {
    margin-right: 4px;
}

/* Category Filter */
.blog-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.blog-category-btn {
    padding: 8px 18px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}
.blog-category-btn:hover,
.blog-category-btn.active {
    border-color: #004a99;
    background: #004a99;
    color: white;
}

/* Empty State */
.blog-empty-state {
    max-width: 500px;
    margin: 0 auto;
}
.blog-empty-icon {
    font-size: 64px;
    color: #004a99;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 991.98px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    .blog-featured-image {
        height: 240px;
        font-size: 56px;
    }
    .blog-featured-body {
        padding: 24px;
    }
    .blog-featured-title {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .blog-hero {
        padding: 50px 0 30px;
    }
    .blog-hero .display-4 {
        font-size: 2rem;
    }
    .blog-category-filter {
        gap: 8px;
    }
    .blog-category-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
    .blog-featured-image {
        height: 200px;
        font-size: 48px;
    }
}
