/* BLOG LAYOUT */
.blog-section {
    background: var(--milk);
    color: var(--text);
    padding-top: 170px;
}

.blog-section p {
    color: #556158;
    line-height: 1.85;
    margin-bottom: 18px;
}

.blog-top {
    margin-bottom: 38px;
}

.blog-top h1 {
    color: var(--text);
    margin-bottom: 22px;
    font-size: clamp(64px, 9vw, 130px);
    line-height: .92;
}

.blog-top h2 {
    margin-bottom: 0;
    max-width: 850px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
}

.eyebrow {
    margin-bottom: 22px;
    letter-spacing: .24em;
}

/* FILTERS */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.filter-btn {
    border: 1px solid rgba(34, 49, 39, .12);
    background: white;
    color: var(--text);
    border-radius: 999px;
    padding: 12px 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .035);
}

.filter-btn:hover, .filter-btn.active {
    background: #173626;
    color: white;
    transform: translateY(-1px);
}

/* ARTICLES GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .055);
    transition: .28s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .09);
}

.article-image {
    height: 280px;
    overflow: hidden;
    background: #d9d3c7;
}

.article-image img {
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.04);
}

.article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1ece2;
    color: #6b5a38;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
}

.article-content h3 {
    font-size: 34px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 14px;
}

.article-content p {
    font-size: 15px;
    margin-bottom: 28px;
}

.article-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #173626;
    font-weight: 800;
}

.article-link span {
    transition: .25s;
}

.article-link:hover span {
    transform: translateX(5px);
}

.empty-state {
    display: none;
    padding: 50px;
    border-radius: 30px;
    background: white;
    text-align: center;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, .06);
}

.empty-state.show {
    display: block;
}

/* FEATURED SIDEBAR STRIP */
.featured-strip {
    background: #0b1b13;
}

.featured-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.featured-list {
    display: grid;
    gap: 16px;
}

.featured-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.featured-item img {
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
}

.featured-item h3 {
    font-size: 25px;
    margin-bottom: 4px;
}

.featured-item p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
}

/* CTA BLOG */
.cta-blog {
    text-align: center;
    background: linear-gradient(rgba(7, 20, 14, .86), rgba(7, 20, 14, .92)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
}

.cta-card {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 36px;
    padding: 70px;
    backdrop-filter: blur(14px);
}

/* RESPONSIVE FOR BLOG */
@media (max-width: 980px) {
    .blog-grid, .featured-wrap {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 44px 24px;
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding-top: 140px;
    }

    .featured-item {
        grid-template-columns: 1fr;
    }

    .featured-item img {
        height: 180px;
    }
}

/* ARTICLE HERO */

.article-hero {
    min-height: 92vh;
    padding-top: 130px;
    padding-bottom: 70px;
    background: radial-gradient(circle at 80% 18%, rgba(184, 155, 102, .14), transparent 28%),
    linear-gradient(135deg, #f4efe6 0%, #eee8dd 58%, #e6dfd1 100%);
    display: flex;
    align-items: center;
}

.article-hero-grid {
    display: grid;
    grid-template-columns:1fr .82fr;
    gap: 70px;
    align-items: center;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: white;
    color: #6b5a38;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    border: 1px solid rgba(0, 0, 0, .06);
}

.article-hero p {
    max-width: 680px;
    font-size: 20px;
    color: #59645d;
}

.article-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-image {
    position: relative;
    height: 650px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 36px 100px rgba(0, 0, 0, .18);
    background: #d9d3c7;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(8, 23, 16, .62);
    backdrop-filter: blur(14px);
}

.hero-note p {
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    margin: 0;
}


