/* =============================================
   ARTICLE-STYLE.CSS — Knowledge Center
   Geld IVF Courier · Mobile-first, editorial
   Actualizado: jerarquía visual + legibilidad + SEO/AIO
   ============================================= */

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.article-hero {
    background: var(--charcoal);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Foto de fondo: cada artículo pone su imagen via
   style="--hero-img: url('assets/images/01.webp')" en el <section> */
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-img, none);
    background-size: cover;
    background-position: center 35%;
    opacity: 0.32;
    transition: opacity 0.6s;
}

/* Degradado oscuro para legibilidad del texto */
.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14,14,14,0.45) 0%,
        rgba(14,14,14,0.60) 40%,
        rgba(14,14,14,0.92) 100%
    );
}

.article-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .article-hero {
        min-height: 560px;
    }
    .article-hero .container {
        padding-top: 150px;
        padding-bottom: 72px;
    }
}

/* ─────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.breadcrumb a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.48);
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.25);
}
.breadcrumb span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.32);
}

/* ─────────────────────────────────────────────
   HERO META — tag + tiempo de lectura
───────────────────────────────────────────── */
.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.article-tag-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(197,168,128,0.75);
    backdrop-filter: blur(8px);
    padding: 5px 13px;
    border-radius: 50px;
}
.article-read-time-hero {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
}

/* ─────────────────────────────────────────────
   HEADLINE + LEAD
───────────────────────────────────────────── */
.article-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 860px;
    text-wrap: balance;
}
.article-h1 em {
    font-style: italic;
    color: var(--gold);
}
.article-lead {
    font-size: clamp(0.97rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.82;
    max-width: 680px;
}

/* ─────────────────────────────────────────────
   BODY SECTION — layout de columna única centrada
───────────────────────────────────────────── */
.article-body-section {
    padding: 64px 0 96px;
    background: #F7F5F2;
}
.article-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ─────────────────────────────────────────────
   CONTENIDO PRINCIPAL — tipografía y jerarquía
───────────────────────────────────────────── */
.article-content {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

/* ── H2 de sección: el nivel más importante del artículo ── */
.article-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.8vw, 2.25rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.16;
    /* Separación generosa arriba para que cada sección "respire" */
    margin: 64px 0 0;
    padding-top: 40px;
    /* Borde superior dorado — separador visual de sección */
    border-top: 2px solid rgba(197,168,128,0.30);
    text-wrap: balance;
    position: relative;
}

/* Acento dorado corto en el borde superior del H2 */
.article-content h2::before {
    content: '';
    position: absolute;
    top: -2px; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}

/* El primer H2 tras el takeaways-box no necesita margen top extra */
.takeaways-box + h2,
.article-content h2:first-child {
    margin-top: 0;
    padding-top: 28px;
}

/* Espaciado desde el H2 al contenido siguiente */
.article-content h2 + p,
.article-content h2 + ul,
.article-content h2 + ol,
.article-content h2 + .protocol-grid,
.article-content h2 + .steps-grid,
.article-content h2 + .article-callout,
.article-content h2 + .article-list,
.article-content h2 + .article-ordered-list,
.article-content h2 + .fact-strip {
    margin-top: 22px;
}

/* ── H3 de subsección ── */
.article-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 32px 0 10px;
    letter-spacing: -0.1px;
    line-height: 1.35;
}

/* ── Párrafos: tamaño y ritmo visual óptimos ── */
.article-content p {
    font-size: 1rem;       /* 16px — punto de lectura cómodo */
    color: #2e2e2e;
    line-height: 1.9;      /* generoso para textos médicos densos */
    margin-bottom: 20px;
}

/* Primer párrafo tras un H2 ligeramente más grande */
.article-content h2 + p {
    font-size: 1.04rem;
    color: #1e1e1e;
}

.article-content strong {
    color: #1c1c1c;
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   KEY TAKEAWAYS (Compact & Integrated)
───────────────────────────────────────────── */
.takeaways-box {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-top: 2px solid var(--gold);
    border-radius: 10px;
    padding: 16px 20px 14px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.takeaways-header {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.takeaways-box ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 600px) {
    .takeaways-box ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }
}
.takeaways-box li {
    font-size: 0.84rem;
    color: #444;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.takeaways-box li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
    flex-shrink: 0;
}
.takeaways-box li strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ─────────────────────────────────────────────
   CALLOUT (dato clave / realidad vs mito)
───────────────────────────────────────────── */
.article-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(197,168,128,0.07);
    border: 1px solid rgba(197,168,128,0.24);
    border-left: 4px solid rgba(197,168,128,0.55);
    border-radius: 12px;
    padding: 20px 22px;
    margin: 8px 0 26px;
}
.article-callout i {
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.article-callout p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.76;
    color: #2e2e2e;
}

/* ─────────────────────────────────────────────
   LISTAS
───────────────────────────────────────────── */
/* Lista con bullet dorado — más espacio y tamaño de texto */
.article-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 6px 0 30px;
}
.article-list li {
    font-size: 0.97rem;
    color: #2e2e2e;
    line-height: 1.72;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 18px;
    background: #fff;
    border-radius: 11px;
    border: 1px solid rgba(197,168,128,0.15);
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
.article-list li::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 10px;
}

/* Lista numerada */
.article-ordered-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 6px 0 32px;
    counter-reset: article-counter;
}
.article-ordered-list li {
    counter-increment: article-counter;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.97rem;
    color: #2e2e2e;
    line-height: 1.72;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(197,168,128,0.14);
    padding: 18px 18px 18px 0;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
.article-ordered-list li::before {
    content: counter(article-counter);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 100%;
    background: var(--gradient);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
    border-radius: 11px 0 0 11px;
    padding: 18px 0;
    align-self: stretch;
}
.article-ordered-list li div {
    flex: 1;
    padding-right: 16px;
}
.article-ordered-list li div strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.article-ordered-list li div p {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.68;
}

/* ─────────────────────────────────────────────
   IMAGES & MEDIA
───────────────────────────────────────────── */
.article-image-wrapper {
    margin: 36px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 540px;
}
.article-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(197,168,128,0.2);
}
.article-image-caption {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #666;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────
   PROTOCOL GRID
───────────────────────────────────────────── */
.protocol-grid {
    display: grid;
    gap: 16px;
    margin: 24px 0 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .protocol-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.protocol-item {
    background: #fff;
    border: 1px solid rgba(197,168,128,0.14);
    border-top: 3px solid rgba(197,168,128,0.25);
    border-radius: 14px;
    padding: 26px 22px 22px;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.28s cubic-bezier(0.22,1,0.36,1);
}
.protocol-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.protocol-icon {
    width: 46px; height: 46px;
    background: var(--gradient);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(197,168,128,0.3);
}
.protocol-item h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 9px;
    line-height: 1.35;
}
.protocol-item p {
    font-size: 0.86rem;
    color: #5a5a5a;
    line-height: 1.68;
    margin: 0;
}

/* Grid de pasos — 2 columnas en tablet+ */
.steps-grid {
    display: grid;
    gap: 16px;
    margin: 24px 0 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 540px) { .steps-grid { grid-template-columns: 1fr 1fr; } }

.step-card {
    background: #fff;
    border: 1px solid rgba(197,168,128,0.14);
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.28s cubic-bezier(0.22,1,0.36,1);
}
.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.step-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    /* Más visible: dorado con más opacidad */
    color: rgba(197,168,128,0.35);
    line-height: 1;
    flex-shrink: 0;
    min-width: 44px;
}
.step-card h3 {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 4px 0 8px;
    line-height: 1.35;
}
.step-card p {
    font-size: 0.88rem;
    color: #5a5a5a;
    line-height: 1.68;
    margin: 0;
}

/* ─────────────────────────────────────────────
   CTA BOX — al final del artículo
───────────────────────────────────────────── */
.article-cta-box {
    background: var(--charcoal);
    border-radius: 18px;
    padding: 40px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.article-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
}
.article-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,168,128,0.08) 0%, transparent 55%);
    pointer-events: none;
}
.article-cta-icon {
    width: 54px; height: 54px;
    background: var(--gradient);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 22px rgba(197,168,128,0.38);
    position: relative;
    z-index: 1;
}
.article-cta-box > div { position: relative; z-index: 1; flex: 1; }
.article-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.22rem, 3vw, 1.56rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}
.article-cta-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.74;
    margin: 0;
}
@media (max-width: 540px) {
    .article-cta-box {
        flex-direction: column;
        padding: 30px 24px;
    }
}

/* ─────────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────────── */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 1024px) {
    .article-sidebar {
        position: sticky;
        top: 96px;
    }
}

.sidebar-card {
    background: #fff;
    border: 1px solid rgba(197,168,128,0.18);
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.sidebar-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(197,168,128,0.14);
}

/* TOC */
.sidebar-toc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sidebar-toc a {
    font-size: 0.82rem;
    color: #555;
    padding: 8px 10px;
    border-radius: 7px;
    transition: background 0.18s, color 0.18s;
    display: block;
    line-height: 1.45;
    text-decoration: none;
}
.sidebar-toc a:hover {
    background: rgba(197,168,128,0.10);
    color: var(--charcoal);
}

/* Stats */
.sidebar-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(197,168,128,0.12);
}
.sidebar-stats .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 0.77rem;
    color: #888;
    line-height: 1.45;
}

/* Related links */
.sidebar-related .related-link {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(197,168,128,0.12);
    color: #3d3d3d;
    font-size: 0.82rem;
    line-height: 1.45;
    transition: color 0.18s;
    text-decoration: none;
}
.sidebar-related .related-link:last-child { border-bottom: none; }
.sidebar-related .related-link:hover { color: var(--gold); }
.sidebar-related .related-link i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─────────────────────────────────────────────
   FAQ SECTION — para AIO / Featured Snippets
───────────────────────────────────────────── */
.article-faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(197,168,128,0.20);
    position: relative;
}
.article-faq-section::before {
    content: '';
    position: absolute;
    top: -2px; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
}
.article-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--charcoal);
    margin: 0 0 28px;
    line-height: 1.18;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0; margin: 0;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(197,168,128,0.18);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
.faq-item summary {
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    line-height: 1.4;
    transition: background 0.18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f067'; /* fa-plus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s;
}
.faq-item[open] summary {
    background: rgba(197,168,128,0.05);
    border-bottom: 1px solid rgba(197,168,128,0.14);
}
.faq-item[open] summary::after {
    content: '\f068'; /* fa-minus */
}
.faq-item summary:hover {
    background: rgba(197,168,128,0.06);
}
.faq-body {
    padding: 18px 22px 20px;
    font-size: 0.95rem;
    color: #3a3a3a;
    line-height: 1.82;
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin: 0; }

/* ─────────────────────────────────────────────
   MÁS ARTÍCULOS — sección al final
───────────────────────────────────────────── */
.more-articles-section {
    padding: 72px 0 96px;
    background: #EDEBE8;
}
.more-articles-grid {
    display: grid;
    gap: 18px;
    margin-top: 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .more-articles-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .more-articles-grid { grid-template-columns: repeat(3, 1fr); } }

.more-article-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(197,168,128,0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.32s cubic-bezier(0.22,1,0.36,1);
}
.more-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

/* Imagen superior de la tarjeta con foto real */
.more-article-img {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a1a1a;
}
.more-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    filter: brightness(0.9) saturate(0.88);
}
.more-article-card:hover .more-article-img img {
    transform: scale(1.05);
    filter: brightness(0.98) saturate(0.95);
}
.more-article-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(15,15,15,0.45) 100%
    );
    pointer-events: none;
}

/* Fallback franja de color superior con ícono */
.more-article-icon {
    height: 130px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: rgba(197,168,128,0.6);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.more-article-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(197,168,128,0.12), transparent 65%);
}
.more-article-body,
.more-article-card > div:last-child {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.more-article-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.34;
    text-wrap: balance;
    flex: 1;
}

/* article-tag usado en la sección "More Articles" */
.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(197,168,128,0.10);
    padding: 4px 10px;
    border-radius: 50px;
    width: fit-content;
}

/* ─────────────────────────────────────────────
   TABLA DE COMPARACIÓN
───────────────────────────────────────────── */
.article-table-wrap {
    overflow-x: auto;
    margin: 18px 0 32px;
    border-radius: 12px;
    border: 1px solid rgba(197,168,128,0.16);
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: #fff;
    min-width: 420px;
}
.article-table th {
    background: var(--charcoal);
    color: rgba(255,255,255,0.88);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 18px;
    text-align: left;
}
.article-table th:first-child { border-radius: 11px 0 0 0; }
.article-table th:last-child  { border-radius: 0 11px 0 0; }
.article-table td {
    padding: 13px 18px;
    color: #2e2e2e;
    border-bottom: 1px solid rgba(197,168,128,0.10);
    line-height: 1.58;
    vertical-align: top;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:nth-child(even) td { background: rgba(197,168,128,0.04); }
.article-table td strong { color: var(--charcoal); }
.article-table .check { color: #3d9e6e; font-weight: 700; }
.article-table .cross  { color: #b83232; font-weight: 700; }

/* ─────────────────────────────────────────────
   WARNING / DANGER BOX
───────────────────────────────────────────── */
.article-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(192,57,43,0.06);
    border: 1px solid rgba(192,57,43,0.18);
    border-left: 4px solid #b83232;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 8px 0 26px;
}
.article-warning i {
    color: #b83232;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.article-warning p { margin: 0; font-size: 0.95rem; line-height: 1.74; }

/* ─────────────────────────────────────────────
   FACT HIGHLIGHT — número grande + descripción
───────────────────────────────────────────── */
.fact-strip {
    display: grid;
    gap: 14px;
    margin: 24px 0 36px;
    grid-template-columns: 1fr;
}
@media (min-width: 480px) { .fact-strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 780px) { .fact-strip { grid-template-columns: repeat(3, 1fr); } }

.fact-card {
    background: #fff;
    border: 1px solid rgba(197,168,128,0.15);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
}
.fact-card-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 7px;
    font-variant-numeric: tabular-nums;
}
.fact-card-label {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.48;
}

/* ─────────────────────────────────────────────
   SEPARADOR EDITORIAL
───────────────────────────────────────────── */
.article-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0;
    color: rgba(197,168,128,0.38);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.article-divider::before,
.article-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197,168,128,0.22);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — ajustes finales mobile
───────────────────────────────────────────── */
@media (max-width: 639px) {
    .article-body-section { padding: 48px 0 72px; }
    .article-content h2   { margin-top: 44px; padding-top: 28px; }
    .protocol-grid,
    .steps-grid,
    .fact-strip { grid-template-columns: 1fr; }
    .article-table-wrap   { border-radius: 8px; }
    .more-articles-section { padding: 56px 0 72px; }
    .article-ordered-list li { padding: 16px 14px 16px 0; }
    .article-ordered-list li::before { min-width: 44px; font-size: 1.1rem; }
    .article-faq-section  { margin-top: 44px; }
    .article-cta-box      { margin-top: 44px; }
}
