/* ── BREADCRUMB ──────────────────────────────── */
    .breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 9px 24px; font-size: .74rem; color: var(--muted); }
    .breadcrumb a { color: var(--navy); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { margin: 0 5px; opacity: .45; }

    /* ── PAGE WRAP ───────────────────────────────── */
    .page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 44px 24px 100px; }

    /* ── ARTICLE HEADER ──────────────────────────── */
    .eyebrow { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; color: var(--rust); margin-bottom: 11px; }
    h1.art-title { font-family: var(--font-d); font-size: clamp(1.9rem, 5.5vw, 2.85rem); font-weight: 700; color: var(--navy); line-height: 1.12; letter-spacing: -.5px; margin-bottom: 18px; }
    .art-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding: 13px 0; border-top: 2.5px solid var(--navy); border-bottom: 1px solid var(--border); margin-bottom: 14px; font-size: .79rem; color: var(--muted); }
    .art-meta .author { font-weight: 600; color: var(--text); }
    .art-meta .sep { opacity: .35; }

    /* ── LEAD / RESUMEN ──────────────────────────── */
    .lead-box { background: var(--navy); color: #fff; border-radius: var(--r); padding: 22px 26px; margin-bottom: 22px; border-left: 5px solid #f5875a; font-size: .92rem; line-height: 1.68; }
    .lead-box strong { color: #fff; font-weight: 600; }

    /* ── KPI STRIP ───────────────────────────────── */
    .kpi-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 10px; margin: 22px 0 32px; }
    .kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 14px; text-align: center; }
    .kpi .kpi-val { font-family: var(--font-d); font-size: 1.6rem; font-weight: 700; line-height: 1; margin-bottom: 5px; }
    .kpi .kpi-label { font-size: .71rem; color: var(--muted); line-height: 1.35; }
    .kpi.red .kpi-val   { color: var(--rust); }
    .kpi.green .kpi-val { color: var(--green); }
    .kpi.blue .kpi-val  { color: var(--blue-soft); }
    .kpi.amber .kpi-val { color: var(--amber); }

    /* ── TABLE OF CONTENTS ───────────────────────── */
    .toc { background: #eef2f8; border: 1px solid #c8d6e9; border-radius: var(--r); padding: 20px 24px; margin-bottom: 36px; }
    .toc h2 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
    .toc ol { padding-left: 18px; }
    .toc li { margin-bottom: 6px; }
    .toc a { color: var(--navy-mid); font-size: .84rem; text-decoration: none; }
    .toc a:hover { text-decoration: underline; color: var(--rust); }

    /* ── SECTION HEADERS ─────────────────────────── */
    h2.sec-title {
      font-family: var(--font-d);
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--navy);
      margin: 48px 0 16px;
      padding-bottom: 10px;
      border-bottom: 2.5px solid var(--navy);
    }
    h3.sub-title {
      font-family: var(--font-d);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--navy);
      margin: 28px 0 10px;
    }

    /* ── PROSE ───────────────────────────────────── */
    .prose p { font-size: 1.5rem; color: #2a2a2a; margin-bottom: 14px; line-height: 1.76; }
    .prose p:last-child { margin-bottom: 0; }

    /* ── VISA BULLETIN TABLE ─────────────────────── */
    .table-wrap { overflow-x: auto; margin: 18px 0 28px; border-radius: var(--r); border: 1px solid var(--border); }
    .vb-table { width: 100%; border-collapse: collapse; font-size: 1.5rem; }
    .vb-table thead th { background: var(--navy); color: #fff; padding: 10px 10px; text-align: center; font-weight: 600; font-size: .78rem; letter-spacing: .3px; }
    .vb-table thead th:first-child { text-align: left; }
    .vb-table tbody tr:nth-child(even) { background: #f8f6f2; }
    .vb-table tbody tr:hover { background: #eef2f8; }
    .vb-table td { padding: 9px 10px; border-bottom: 1px solid #ede9e0; text-align: center; font-size: 1.4rem; }
    .vb-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
    .vb-table .current { color: var(--green); font-weight: 700; }
    .vb-table .unavail { color: var(--rust); font-weight: 700; }

    /* ── MOVEMENT BADGE ──────────────────────────── */
    .move { display: inline-flex; align-items: center; gap: 4px; font-size: 1.2rem; font-weight: 500; padding: 2px 8px; border-radius: 50px; white-space: nowrap; vertical-align: middle; margin-left: 6px; }
    .move.retro  { background: #fde9e3; color: var(--rust); }
    .move.adv    { background: #e5f3ec; color: var(--green); }
    .move.stable { background: #f0f0f0; color: var(--muted); }

    /* ── CALLOUT BOXES ───────────────────────────── */
    .callout { border-radius: var(--r); padding: 18px 22px; margin: 20px 0; font-size: 1.5rem; line-height: 1.68; }
    .callout strong { display: block; margin-bottom: 6px; font-size: .9rem; }
    .callout.warn  { background: #fef5e7; border-left: 4px solid #e6a817; }
    .callout.info  { background: #e8f1fb; border-left: 4px solid var(--blue-soft); }
    .callout.alert { background: #fde9e3; border-left: 4px solid var(--rust); }
    .callout.ok    { background: #e5f3ec; border-left: 4px solid var(--green); }

    /* ── CATEGORY CARDS ──────────────────────────── */
    .cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; margin: 18px 0 28px; }
    .cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; border-top: 3px solid var(--border); }
    .cat-card.retro-cat { border-top-color: var(--rust); }
    .cat-card.adv-cat   { border-top-color: var(--green); }
    .cat-card.stable-cat{ border-top-color: var(--blue-soft); }
    .cat-card .cat-name { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .cat-card .cat-date { font-size: 1.4rem; font-weight: 600; margin-bottom: 6px; }
    .cat-card .cat-wait { font-size: 1.4rem; color: var(--muted); }
    .cat-card .cat-change { font-size: 1.4rem; font-weight: 700; margin-top: 8px; }
    .cat-card.retro-cat .cat-change { color: var(--rust); }
    .cat-card.adv-cat   .cat-change { color: var(--green); }

    /* ── DV TABLE ────────────────────────────────── */
    .dv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin: 16px 0 28px; }
    .dv-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; }
    .dv-card .dv-region { font-weight: 700; color: var(--navy); font-size: 1.5rem; margin-bottom: 4px; }
    .dv-card .dv-num { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; color: var(--blue-soft); }
    .dv-card .dv-exc { font-size: 1.3rem; color: var(--muted); margin-top: 4px; }

    /* ── FAQ ─────────────────────────────────────── */
    .faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
    .faq-q { background: var(--surface); padding: 14px 18px; font-weight: 600; font-size: .9rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-q::after { content: "+"; font-size: 1.2rem; color: var(--muted); flex-shrink: 0; }
    .faq-a { padding: 0 18px 14px; font-size: .87rem; color: #333; line-height: 1.7; }

    /* ── SUMMARY TABLE ───────────────────────────── */
    .summary-table { width: 100%; border-collapse: collapse; margin: 14px 0 24px; font-size: 1.5rem; }
    .summary-table th { background: var(--navy); color: #fff; padding: 9px 12px; text-align: left; font-size: .78rem; }
    .summary-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); }
    .summary-table tr:nth-child(even) td { background: #f9f7f3; }
    .summary-table .retro-td { color: var(--rust); font-weight: 700; }
    .summary-table .adv-td   { color: var(--green); font-weight: 700; }
    .summary-table .stable-td{ color: var(--muted); }

    /* ── TIMELINE ────────────────────────────────── */
    .timeline { position: relative; padding-left: 28px; margin: 16px 0 28px; }
    .timeline::before { content: ""; position: absolute; left: 9px; top: 0; bottom: 0; width: 2px; background: var(--border); }
    .tl-item { position: relative; margin-bottom: 20px; }
    .tl-item::before { content: ""; position: absolute; left: -23px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--navy); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--navy); }
    .tl-date { font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
    .tl-text { font-size: .87rem; color: var(--text); line-height: 1.6; }

    /* ── CTA ─────────────────────────────────────── */
    .cta-block { background: #fde9e3; border: 1px solid #f0c4ae; border-radius: var(--r); padding: 28px 28px; margin-top: 40px; text-align: center; }
    .cta-block h3 { font-family: var(--font-d); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
    .cta-block p  { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
    .cta-btn { display: inline-block; background: var(--rust); color: #fff; text-decoration: none; font-size: .84rem; font-weight: 600; padding: 11px 26px; border-radius: 50px; margin: 0 5px 6px; transition: opacity .18s; }
    .cta-btn:hover { opacity: .87; }
    .cta-btn.sec { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }

    /* ── FOOTER ──────────────────────────────────── */
    .site-footer { background: var(--navy); color: rgba(255,255,255,.55); text-align: center; padding: 26px 24px; font-size: .76rem; line-height: 1.65; }
    .site-footer a { color: rgba(255,255,255,.78); }

    /* ── DIVIDER ─────────────────────────────────── */
    hr.divider { border: none; border-top: 1px solid var(--border); margin: 44px 0; }

    /* ── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 620px) {
      .page-wrap { padding: 24px 16px 70px; }
      .site-header .header-nav { display: none; }
      .kpi-strip { grid-template-columns: repeat(2, 1fr); }
    }