/* ================================
   BLOG PAGE CSS
   Curat, fără interferențe cu style.css
   ================================ */


/* BLOG HERO */

.blog-hero {
    min-height: 74vh;
    padding: 150px 8% 90px;
    background: #08080d;
    display: flex;
    align-items: center;
    text-align: center;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.eyebrow,
.section-heading span,
.blog-card span,
.featured-meta span {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-hero h1,
.featured-article h2,
.section-heading h2,
.reflection-content h2,
.blog-cta-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-main);
}

.blog-hero h1 {
    font-size: clamp(44px, 5.4vw, 68px);
    line-height: 1.08;
    margin-bottom: 24px;
}

.blog-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.85;
}


/* FEATURED ARTICLE */

.featured-article-section {
    padding: 0 8% 100px;
    background: #08080d;
}

.featured-article {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 60px;
    padding: 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 180, 131, 0.32);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.featured-meta small {
    display: block;
    color: var(--text-muted);
    font-size: 15px;
}

.featured-article h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.18;
    margin-bottom: 20px;
}

.featured-article p {
    color: #e4ded5;
    line-height: 1.85;
    margin-bottom: 28px;
}

.featured-article a,
.blog-card a,
.blog-cta-content a {
    display: inline-block;
    background: var(--accent);
    color: #111111;
    padding: 15px 30px;
    border-radius: 44px;
    font-weight: 600;
    transition: 0.3s ease;
}

.featured-article a:hover,
.blog-card a:hover,
.blog-cta-content a:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}


/* BLOG GRID */

.blog-section {
    padding: 100px 8%;
    background: var(--bg-soft);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.2;
}

.blog-container {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 180, 131, 0.38);
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 29px;
    line-height: 1.24;
    margin-bottom: 18px;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.blog-card a {
    width: fit-content;
    padding: 13px 24px;
}


/* REFLECTION */

.reflection-section {
    padding: 105px 8%;
    background: #08080d;
    text-align: center;
}

.reflection-content {
    max-width: 860px;
    margin: 0 auto;
}

.reflection-content h2 {
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.2;
    margin-bottom: 22px;
}

.reflection-content p {
    color: var(--text-muted);
    line-height: 1.8;
}


/* CTA */

.blog-cta {
    padding: 105px 8%;
    background: #0d0d13;
    text-align: center;
}

.blog-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.22;
    margin-bottom: 22px;
}

.blog-cta-content p {
    max-width: 700px;
    margin: 0 auto 34px;
    color: var(--text-muted);
    line-height: 1.8;
}


/* ================================
   RESPONSIVE
   ================================ */


/* TABLET */

@media (max-width: 992px) {

    .blog-hero {
        padding: 180px 5% 90px;
    }

    .featured-article-section,
    .blog-section,
    .reflection-section,
    .blog-cta {
        padding-left: 5%;
        padding-right: 5%;
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-container {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .blog-card {
        min-height: auto;
    }
}


/* MOBILE */

@media (max-width: 768px) {

    .blog-hero {
        min-height: auto;
        padding: 120px 5% 76px;
    }

    .blog-hero h1 {
        font-size: 40px;
    }

    .blog-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .featured-article-section {
        padding-bottom: 76px;
    }

    .featured-article,
    .blog-card {
        padding: 28px;
    }

    .blog-section,
    .reflection-section,
    .blog-cta {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .featured-article a,
    .blog-card a,
    .blog-cta-content a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .blog-hero h1 {
        font-size: 36px;
    }

    .featured-article h2,
    .section-heading h2,
    .reflection-content h2,
    .blog-cta-content h2 {
        font-size: 31px;
    }

    .blog-card h3 {
        font-size: 26px;
    }
}