/* ================================================
   BLOG PAGE (Archive) Styles
   Unique styles for the blog archive/listing page
   ================================================ */

/* ── BLOG PAGE HERO ── */
.blog-page-hero {
    padding: 160px 56px 60px;
    position: relative;
    z-index: 1;
}

.blog-page-hero-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.blog-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a5aaf;
    margin-bottom: 12px;
}

.blog-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.2;
    color: #0a1e3d;
    text-transform: uppercase;
}

/* ── BLOG FILTERS ── */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.blog-filter-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #5a6d85;
    background: #fff;
    border: 1px solid rgba(10, 30, 61, 0.1);
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.blog-filter-btn:hover {
    color: #1a5aaf;
    border-color: rgba(26, 90, 175, 0.3);
}

.blog-filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, #1a5aaf, #38b6e6);
    border-color: transparent;
}

/* ── FEATURED LINK STYLES ── */
.blog-featured-title a {
    color: inherit;
    text-decoration: none;
}

.blog-featured-title a:hover {
    color: #1a5aaf;
}


.blog-featured-img {
    display: block;
}

/* ── BLOG CONTENT ── */
.blog-content {
    position: relative;
    z-index: 1;
    padding: 60px 56px 160px;
}

.blog-content-inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1140px) {
    .blog-page-hero {
        padding: 120px 24px 40px;
    }

    .blog-filters {
        gap: 8px;
    }

    .blog-filter-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .blog-content {
        padding: 40px 24px 80px;
    }
}
