/* ============================================================
   Blog Articles v5.0 — White Luxury Magazine (RG Design System)
   Strahlkraft40+ | Shared CSS for all blog articles + index
   Based on Restaurant Guide / Portal v4.0 component system
   ============================================================ */

/* 1. CSS Variables — White Magazine v5.0 */
:root {
    --bg-deep: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-elevated: #F7F7F5;
    --text-body: #1A1A1A;
    --text-soft: rgba(14,58,40,0.8);
    --text-muted: rgba(14,58,40,0.6);
    --ivory: #0E3A28;
    --gold: #D4AF37;
    --rosa: #E8B4BC;
    --rosa-dark: #D4949E;
    --rosa-glow: rgba(232,180,188,0.15);
    --rosa-border: rgba(232,180,188,0.55);
    --rosa-bg-soft: rgba(232,180,188,0.15);
    --rosa-bg-medium: rgba(232,180,188,0.25);
    --deepGreen: #0E3A28;
    --lighterGreen: #164B35;
    --coral: #AD445C;
    --border-subtle: rgba(14,58,40,0.08);
    --border-light: rgba(14,58,40,0.1);
    --border-medium: rgba(14,58,40,0.12);
    --border-gold: rgba(14,58,40,0.15);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 4px 20px rgba(0,0,0,0.08);
    --gold-dark: #6B5518;
    --gold-accessible: #7A6414;
    --gold-hover: #9E7E1A;
}

/* Prevent horizontal scroll from negative margins — only on body wrapper, not html (html overflow breaks sticky) */
body {
    overflow-x: clip;
}

/* 2. Newsreader @font-face — REMOVED: already inlined in each article's <style> block for critical rendering */

/* ============================================================
   3. Typography — 3-Layer System
   ============================================================ */

/* Newsreader display — editorial titles */
.font-newsreader {
    font-family: 'Newsreader', 'Cormorant Garamond', serif;
}

/* Badge system — category pills */
.badge {
    background: rgba(14, 58, 40, 0.04);
    color: var(--deepGreen);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}
.badge-hormone { background: rgba(107, 76, 122, 0.1); color: #7B5A8E; }
.badge-schlaf { background: rgba(14, 58, 40, 0.06); color: var(--deepGreen); }
.badge-bewegung { background: rgba(56, 140, 130, 0.1); color: #2D7A70; }
.badge-ernahrung { background: rgba(14, 58, 40, 0.06); color: var(--deepGreen); }
.badge-alltag { background: rgba(14, 58, 40, 0.06); color: var(--deepGreen); }
.badge-vitamine { background: rgba(107, 76, 122, 0.1); color: #7B5A8E; }

/* Reading container */
.blog-reading-text {
    font-family: 'Newsreader', 'Georgia', serif;
    line-height: 1.8;
    font-size: 1.25rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.blog-body {
    color: var(--text-body);
    line-height: 1.8;
    font-family: 'Newsreader', 'Georgia', serif;
}

.blog-body-soft {
    color: var(--text-soft);
    line-height: 1.8;
    font-family: 'Newsreader', 'Georgia', serif;
    font-style: italic;
}

/* Rosa aside treatment for italic soft paragraphs in article content */
.blog-reading-text p.blog-body-soft.italic,
.sticky-scroll-text p.blog-body-soft.italic {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--rosa-bg-soft), var(--rosa-bg-medium));
    border-left: 2px solid var(--rosa-border);
    border-radius: 2px;
}

.blog-muted {
    color: var(--text-muted);
}

.blog-meta {
    color: var(--text-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
}

/* Article meta line (date, reading time) — PORTER style */
.blog-reading-text ~ .blog-meta,
article .blog-meta {
    letter-spacing: 0.04em;
}

.blog-breadcrumb {
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}

/* H2: Cormorant 1.625rem — matches portal RG + rosa divider */
.blog-reading-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.125rem !important;
    font-weight: 600;
    color: var(--deepGreen);
    line-height: 1.3;
    margin-top: 3rem !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em;
    padding-top: 1.5rem;
    border-top: none;
    position: relative;
}

/* PORTER-style: centered thin rosa rule before each H2 */
.blog-reading-text h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rosa);
    margin: 0 0 1.5rem;
}

/* H2/H3 italic emphasis — same color, typographic accent only (like index) */
.blog-reading-text h2 em,
.blog-reading-text h3 em {
    color: inherit;
    font-style: italic;
}

/* H3: Cormorant 1.5rem — darker gold for subsection differentiation */
.blog-reading-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem !important;
    font-weight: 600;
    color: var(--gold-dark) !important;
    line-height: 1.35;
    margin-top: 1.75rem !important;
    margin-bottom: 0.6rem !important;
}

/* Tighten paragraph spacing */
.blog-reading-text p {
    margin-bottom: 1rem;
}

/* Gold keyword spans in headings — keep gold but darken for contrast */
.blog-reading-text h2 .text-gold,
.blog-reading-text h3 .text-gold {
    color: var(--gold-hover) !important;
}

/* Links: darken gold for WCAG AA contrast on white */
.blog-reading-text a.text-gold,
.blog-reading-text a[class*="text-gold"] {
    color: var(--gold-accessible) !important;
    text-decoration-color: rgba(122, 100, 20, 0.3);
}
.blog-reading-text a.text-gold:hover,
.blog-reading-text a[class*="text-gold"]:hover {
    color: var(--gold-hover) !important;
    text-decoration-color: #9E7E1A;
}

/* Internal article links — bold deepGreen, slightly larger */
.article-internal-link {
    color: var(--deepGreen);
    font-weight: 600;
    font-size: 1.05em;
    text-decoration: underline;
    text-decoration-color: rgba(14, 58, 40, 0.25);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}
.article-internal-link:hover {
    color: #164B35;
    text-decoration-color: #164B35;
}

/* Gold text in body: darken for readability */
.blog-reading-text p .text-gold,
.blog-reading-text li .text-gold,
.blog-reading-text div .text-gold {
    color: var(--gold-accessible) !important;
}

/* Suppress drop cap on paragraph after editorial-open (already has its own) */
.blog-reading-text > .editorial-open + p::first-letter {
    font-size: inherit !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: inherit !important;
}

/* Drop cap — PORTER-style refined serif */
.blog-reading-text > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    float: left;
    line-height: 0.65;
    padding-right: 0.35rem;
    padding-top: 0.1rem;
    margin-top: 0.05rem;
    color: var(--deepGreen);
    font-weight: 400;
}

/* ============================================================
   4. Content Section — Card with left-border accent (from RG)
   ============================================================ */
.content-section {
    background: var(--bg-card);
    border: 1px solid rgba(14,58,40,0.06);
    border-left: 3px solid rgba(14,58,40,0.12);
    border-radius: 0 2px 2px 0;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
}

.content-section:hover {
    border-left-color: var(--deepGreen);
    box-shadow: var(--shadow-card-hover);
}

.content-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--deepGreen);
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--border-subtle);
}

.content-section-text {
    font-family: 'Newsreader', 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.content-section-text p {
    margin-bottom: 0.625rem;
}

.content-section-text p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   5. Editorial Open — Intro with rosa divider + drop cap
   ============================================================ */
.editorial-open {
    padding: 1.5rem 0 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.editorial-open::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--rosa);
    margin-bottom: 1.5rem;
}

.editorial-open-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--deepGreen);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.editorial-open-body {
    font-family: 'Newsreader', 'Georgia', serif;
    font-size: 1.3125rem;
    line-height: 1.85;
    color: rgba(14,58,40,0.9);
}

.editorial-open-body::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.75rem;
    font-weight: 600;
    float: left;
    line-height: 0.75;
    margin-right: 0.2rem;
    margin-top: 0.15rem;
    color: var(--deepGreen);
}

.editorial-open::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--rosa-bg-medium);
    margin-top: 2rem;
}

/* ============================================================
   6. Blog Pull Quote — Centered with top/bottom borders
   ============================================================ */
/* PORTER-style pull quote: generous whitespace, centered thin rule */
.blog-pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-style: italic;
    font-weight: 600;
    color: var(--deepGreen);
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 2.5rem 0;
    border-top: none;
    border-bottom: none;
    line-height: 1.45;
    position: relative;
    background: rgba(232,180,188,0.06);
    border-radius: 8px;
}

/* Centered thin rule above */
.blog-pull-quote::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--rosa);
    margin: 0 auto 1.75rem;
}

/* Centered thin rule below */
.blog-pull-quote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--rosa);
    margin: 1.75rem auto 0;
}

.blog-pull-quote cite {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-top: 1rem;
}

/* ============================================================
   7. Blog Motivation Box — Editorial quote with decorative comma
   ============================================================ */
.blog-motivation-box {
    background: var(--bg-card);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 1.25rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
    border-top: 1px solid var(--border-medium);
    border-bottom: 1px solid var(--border-medium);
}

.blog-motivation-box::before {
    content: '\201C';
    position: absolute;
    top: -0.15em;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    padding: 0 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--coral);
    line-height: 1;
}

.blog-motivation-box p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--deepGreen);
    letter-spacing: 0.01em;
    font-weight: 600;
}

/* ============================================================
   8. Content Image — Rounded + shadow + hover zoom
   ============================================================ */
/* PORTER-style: images break out of narrow text column */
.content-image {
    margin: 2.5rem -10%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}

/* Hero image (first after meta bar) — wider breakout on desktop */
.article-meta-bar + .content-image {
    margin: 0 -18% 2.5rem;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.01);
}

/* Image caption (PORTER-style) */
.content-image figcaption,
.content-image .caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.75rem 0;
    letter-spacing: 0.03em;
}

/* Legacy .article-img — same breakout treatment */
.article-img {
    border-radius: 4px;
    box-shadow: none;
    margin-left: -10%;
    margin-right: -10%;
    width: 120%;
    max-width: 120%;
}

/* ============================================================
   9. Quote Card — Centered editorial (v5.0 green/rosa on white)
   ============================================================ */
/* PORTER-style quote card: elegant, airy, serif italic */
.quote-card {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 560px;
    position: relative;
}

.quote-card::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rosa);
    margin: 0 auto 2rem;
}

.quote-card p {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2.25rem !important;
    font-weight: 600 !important;
    font-style: italic !important;
    line-height: 1.35 !important;
    color: var(--ivory) !important;
}

.quote-card .quote-source {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(14, 58, 40, 0.3);
    display: block;
    margin-top: 1.5rem;
}

.quote-card::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rosa);
    margin: 2rem auto 0;
}

/* ============================================================
   10. Cite Tags — Rosa accent for scientific sources
   ============================================================ */
.cite-tag {
    font-size: 0.9375rem;
    color: rgba(14, 58, 40, 0.7);
    background: rgba(14, 58, 40, 0.04);
    border: 1px solid rgba(14, 58, 40, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.02em;
    vertical-align: baseline;
    margin-left: 3px;
    transition: background 0.2s ease;
}

.cite-tag:hover {
    background: rgba(14, 58, 40, 0.08);
}

/* ============================================================
   11. Section Label — Montserrat uppercase
   ============================================================ */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deepGreen);
    margin-bottom: 0.75rem;
}

/* ============================================================
   13. Nav — Stays green (brand identity frame)
   ============================================================ */
.nav-solid {
    background: rgba(14, 58, 40, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.nav-solid .text-ivory { color: #FAFAF5; }
.nav-solid .text-ivory\/80 { color: rgba(250,250,245,0.8); }
.nav-solid .text-ivory\/70 { color: rgba(250,250,245,0.7); }

/* Featured-main text stays light (overlaid on dark image gradient) */
.featured-main .text-ivory { color: #FAFAF5; }

/* ============================================================
   14. CTA Buttons — Gold (CTAs only)
   ============================================================ */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #C5A059);
    color: #121212;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 250%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-gold:hover::after { left: 100%; }
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
}

.btn-epic {
    background: linear-gradient(45deg, #D4AF37, #997B28);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease;
}
.btn-epic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, #F3E5AB, #D4AF37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.btn-epic:hover::before { opacity: 1; }
.btn-epic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
}

/* ============================================================
   15. Utility — Reveal, dividers, gradients
   ============================================================ */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* ============================================================
   16. White Magazine — Overrides for legacy Tailwind classes
   ============================================================ */

/* Fix ivory opacity variants — remap from white to deepGreen */
.text-ivory\/50 { color: rgba(14, 58, 40, 0.5) !important; }
.text-ivory\/60 { color: rgba(14, 58, 40, 0.6) !important; }
.text-ivory\/70 { color: rgba(14, 58, 40, 0.7) !important; }
.text-ivory\/80 { color: rgba(14, 58, 40, 0.8) !important; }

/* Legacy elevated boxes: style like content-sections */
.blog-reading-text div[class*="bg-[#F7F7F5]"] {
    border: 1px solid rgba(14,58,40,0.06);
    border-left: 3px solid rgba(14,58,40,0.12);
    border-radius: 0 2px 2px 0;
    box-shadow: var(--shadow-card);
    transition: border-left-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card) !important;
}

.blog-reading-text div[class*="bg-[#F7F7F5]"]:hover {
    border-left-color: var(--deepGreen);
    box-shadow: var(--shadow-card-hover);
}

/* Pull-quote left border: rosa accent (like RG editorial) */
.blog-reading-text div[class*="border-l-4"][class*="border-gold"] {
    border-left-color: var(--rosa) !important;
    border-left-width: 3px !important;
}

/* Legacy pull-quote text styling — reduce size */
.blog-reading-text div[class*="border-l-4"] > p[class*="text-2xl"],
.blog-reading-text div[class*="border-l-4"] > p[class*="text-xl"] {
    font-size: 1.0625rem !important;
    line-height: 1.7 !important;
}

/* Related article cards: premium structure */
.blog-reading-text a[class*="bg-white"],
.blog-reading-text a.group:not(.related-card) {
    border: 1px solid rgba(14,58,40,0.06);
    border-left: 3px solid rgba(14,58,40,0.1);
    border-radius: 0 2px 2px 0;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-reading-text a[class*="bg-white"]:hover,
.blog-reading-text a.group:not(.related-card):hover {
    border-left-color: var(--deepGreen);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

/* Related article card badges — fix dark-era colors */
.blog-reading-text a span[class*="text-purple"],
.blog-reading-text a span[class*="text-green"],
.blog-reading-text a span[class*="text-blue"] {
    color: var(--deepGreen) !important;
    border-color: rgba(14,58,40,0.12) !important;
    background: rgba(14,58,40,0.04) !important;
}

/* Related article titles on hover */
.blog-reading-text a.group:hover h4 {
    color: var(--gold-dark) !important;
}

/* H1 title — editorial Newsreader sizing */
article h1 {
    font-family: 'Newsreader', 'Cormorant Garamond', serif !important;
    font-size: 3.5rem !important;
    font-weight: 500 !important;
    font-style: italic !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
}

/* Category badge: fix ALL color remnants from dark theme */
article span[class*="bg-purple"],
article span[class*="text-purple"] {
    background: rgba(14,58,40,0.05) !important;
    color: var(--deepGreen) !important;
    border-color: rgba(14,58,40,0.1) !important;
}

/* Lead paragraph */
.blog-reading-text > p:first-of-type {
    font-size: 1.3125rem !important;
    line-height: 1.75;
}

/* Avatar section list items — improve contrast */
.blog-reading-text ul.space-y-3 li,
.blog-reading-text .blog-meta li {
    color: rgba(14,58,40,0.8) !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* Avatar section gold conclusion text — darken */
.blog-reading-text p.text-gold.font-semibold,
.blog-reading-text p[class*="text-gold"][class*="font-semibold"] {
    color: var(--gold-dark) !important;
    font-size: 1rem;
}

/* Tighten margins on legacy gold-border boxes */
.blog-reading-text div[class*="border-l-4"][class*="p-8"] {
    padding: 1.5rem 1.75rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Legacy empathy boxes — rosa left accent */
.blog-reading-text div[class*="border-l-4"][class*="rounded-sm"] {
    border-left-color: var(--rosa) !important;
    border-left-width: 3px !important;
}

/* Author bio box: tighten */
.blog-reading-text > div[class*="flex"][class*="items-start"][class*="rounded-xl"] {
    border-left: 3px solid rgba(14,58,40,0.08);
    border-radius: 0 8px 8px 0;
}

/* Disclaimer boxes: subtle rosa top accent */
.blog-reading-text > div[class*="rounded-sm"][class*="p-8"]:last-of-type,
.blog-reading-text > div[class*="rounded-xl"][class*="mt-12"] {
    border-top: 2px solid var(--rosa-bg-medium);
}

/* ============================================================
   17. Editorial Aside — Witty observation / soft commentary
   ============================================================ */
.editorial-aside {
    position: relative;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--rosa-bg-soft), var(--rosa-bg-medium));
    border-radius: 2px;
    border-left: 2px solid var(--rosa-border);
}

.editorial-aside p {
    font-family: 'Newsreader', 'Georgia', serif;
    font-style: italic;
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0;
}

/* Table breakout — wider on desktop, contained on mobile */
.table-breakout {
    margin-left: -10%;
    margin-right: -10%;
    width: 120%;
    font-size: 0.8125rem;
}

@media (max-width: 768px) {
    .table-breakout {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        font-size: 0.75rem;
        overflow-x: auto;
    }
}

/* ============================================================
   20. Responsive
   ============================================================ */
@media (max-width: 768px) {
    .blog-reading-text {
        font-size: 1.125rem;
        line-height: 1.75;
    }

    .blog-reading-text h2 {
        font-size: 1.625rem !important;
        margin-top: 2rem !important;
    }

    .blog-reading-text h3 {
        font-size: 1.375rem !important;
    }

    .blog-reading-text > p:first-of-type::first-letter {
        font-size: 2.5rem;
    }

    article h1 {
        font-size: 2.5rem !important;
    }


    .blog-motivation-box {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    .blog-motivation-box p {
        font-size: 1.25rem;
    }

    .content-section {
        padding: 1.25rem 1rem;
    }

    .editorial-open-body::first-letter {
        font-size: 2.5rem;
    }

    .content-image {
        margin: 1.5rem -1rem;
        border-radius: 0;
    }

    .article-img {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .blog-pull-quote {
        padding: 2rem 1rem;
        font-size: 1.2rem;
    }

    .quote-card {
        padding: 2rem 1rem;
    }
    .quote-card p {
        font-size: 1.375rem !important;
    }

    .editorial-aside {
        padding: 1rem 1.25rem;
        margin: 1.5rem 0;
    }
}

/* ============================================================
   17b. Article Meta Bar — Horizontal row above hero image
   ============================================================ */

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14,58,40,0.08);
}

.article-meta-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(14,58,40,0.5);
    letter-spacing: 0.02em;
}

.article-meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(14,58,40,0.2);
    flex-shrink: 0;
}

.article-meta-keyword {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 1.1875rem;
    color: rgba(14,58,40,0.45);
}

.article-meta-share {
    margin-left: auto;
    background: var(--deepGreen);
    border: none;
    border-radius: 50%;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAFAF5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-meta-share svg {
    width: 18px;
    height: 18px;
}

.article-meta-share:hover {
    background: var(--gold);
    color: #121212;
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
    transform: translateY(-1px);
}

.article-meta-share.copied {
    background: var(--gold);
    color: #121212;
}

/* ============================================================
   17c. Sticky Scroll — Image left, text scrolls right
   ============================================================ */

.sticky-scroll-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 3rem -10%;
}

/* Zigzag: even sections flip image to right */
.sticky-scroll-section.sticky-reverse {
    direction: rtl;
}
.sticky-scroll-section.sticky-reverse > * {
    direction: ltr;
}

.sticky-scroll-image {
    position: -webkit-sticky;
    position: sticky;
    top: 4.5rem;
    align-self: start;
    height: calc(100vh - 5.5rem);
    border-radius: 4px;
    overflow: hidden;
}

.sticky-scroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.sticky-scroll-text {
    padding: 0.5rem 0;
}

.sticky-scroll-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 1.25rem;
    margin-top: 0;
    line-height: 1.2;
}

.sticky-scroll-text .blog-body,
.sticky-scroll-text .blog-body-soft {
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.sticky-scroll-text .quote-card {
    margin: 2rem 0;
}

@media (max-width: 900px) {
    .sticky-scroll-section {
        display: block;
        margin: 2rem 0;
    }
    .sticky-scroll-section.sticky-reverse {
        direction: ltr;
    }
    .sticky-scroll-image {
        position: relative;
        top: auto;
        height: 50vh;
        margin-bottom: 1.5rem;
    }
}

/* ============================================================
   18. Related Articles — Horizontal Overlay Cards
   ============================================================ */

/* Break out of max-w-4xl container — wider than article body */
.related-articles-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.related-articles-section > .mb-8 {
    padding-left: 0;
}

@media (min-width: 768px) {
    .related-articles-section {
        margin-left: -12rem;
        margin-right: -12rem;
    }
    .related-articles-section > .mb-8 {
        padding-left: 12rem;
    }
}

.related-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Slide-in from right animation */
@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    transition: transform 0.4s ease;
}

.related-card:hover {
    border: none;
    outline: none;
    box-shadow: none;
}

.related-card.is-visible {
    animation: slideFromRight 0.7s ease forwards;
}

.related-card:nth-child(2).is-visible {
    animation-delay: 0.15s;
}

.related-card-img-wrapper {
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 3/4;
}

.related-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.related-card:hover .related-card-img {
    transform: scale(1.08);
}

/* Text box — bottom overlap on image, with margins */
.related-card-text {
    background: #FFFFFF;
    padding: 1.25rem 1.25rem;
    margin-top: -3.5rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.related-card-text .blog-card-keyword {
    font-family: 'Newsreader', 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--deepGreen);
    display: block;
    margin-bottom: 0.5rem;
}

.related-card-text h4 {
    font-family: 'Newsreader', 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--deepGreen);
    margin: 0 0 0.5rem;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-text h4 {
    color: #164B35;
}

.related-card-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.related-card-text .blog-card-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(14, 58, 40, 0.4);
    display: block;
    margin-top: auto;
}

/* Mobile: stack cards vertically, text box below image with upward overlap */
@media (max-width: 767px) {
    article.px-6 {
        padding-left: 1.75rem !important;
        padding-right: 1.75rem !important;
    }

    .blog-reading-text {
        font-size: 1.125rem;
    }

    .related-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-card-text {
        margin: -3rem 0.75rem 0;
        padding: 1.125rem 1rem;
    }
}

/* ============================================================
   19. Athena Blog CTA — Conversational invite block
   ============================================================ */
.blog-athena-cta {
    background: rgba(232,180,188,0.06);
    border: 1px solid rgba(232,180,188,0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-athena-cta-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.blog-athena-cta-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(232,180,188,0.4);
    flex-shrink: 0;
}

.blog-athena-cta-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deepGreen, #0E3A28);
    line-height: 1.2;
}

.blog-athena-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-soft, rgba(14,58,40,0.7));
    font-weight: 400;
}

.blog-athena-cta-message {
    font-family: 'Newsreader', 'Georgia', serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-body, #1A1A1A);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.blog-athena-cta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-athena-cta-chip {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--deepGreen, #0E3A28);
    background: rgba(232,180,188,0.1);
    border: 1px solid rgba(232,180,188,0.25);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: default;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.blog-athena-cta-chip:hover {
    background: rgba(232,180,188,0.18);
    border-color: rgba(232,180,188,0.5);
}

.blog-athena-cta-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(232,180,188,0.15);
}

.blog-athena-cta-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #0E3A28;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.blog-athena-cta-button:hover {
    background: #D4AF37;
    color: #0E3A28;
}

.blog-athena-cta-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted, rgba(14,58,40,0.5));
}

@media (max-width: 640px) {
    .blog-athena-cta {
        padding: 1.25rem;
    }
    .blog-athena-cta-chips {
        flex-direction: column;
    }
    .blog-athena-cta-action {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* ============================================================
   20. Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
