/* STEPS */
    .steps-grid { display: grid; gap: 14px; margin: 20px 0; }
    .step-card { display: flex; gap: 16px; align-items: flex-start; background: white; border: 1px solid #04166A; border-radius: 10px; padding: 18px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
    .step-num { background: #04166A; color: #FECA03; font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-content h4 { font-size: 15px; font-weight: 700; color:#0a1f3c; margin-bottom: 4px; }
    .step-content p { font-size: 13.5px; color: #5a6070; margin: 0; line-height: 1.6; }

/* IMPACT CARDS */
    .impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
    .impact-card { background: white; border: 1px solid #dde3ed; border-top: 4px solid #c0392b; border-radius: 8px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
    .impact-card.neutral { border-top-color: #f9a825; }
    .impact-card.positive { border-top-color: #1a7a4a; }
    .impact-card .ic-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: #1a7a4a; }
    .impact-card h4 { font-size: 15px; font-weight: 700; color: #dde3ed; margin-bottom: 8px; line-height: 1.3; }
    .impact-card p { font-size: 13.5px; color: #000000; margin: 0; line-height: 1.6; }

/* FEE COMPARISON TABLE — hero */
    .fee-hero { background: #f8f7f4; border: 2px solid #dde3ed; border-radius: 12px; overflow: hidden; margin: 24px 0; }
    .fee-hero-header { background: #0a1f3c; color: white; padding: 14px 20px; font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; }
    .fee-row { display: grid; grid-template-columns: 1fr 1fr 1fr 100px; gap: 0; border-bottom: 1px solid #dde3ed; }
    .fee-row:last-child { border-bottom: none; }
    .fee-row.head { background: #e8edf6; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #dde3ed; }
    .fee-cell { color:#000000; padding: 12px 16px; font-size: 14px; display: flex; align-items: center; border-right: 1px solid #dde3ed; }
    .fee-cell:last-child { border-right: none; color:#000000; }
    .fee-old { text-decoration: line-through; color: #000000; }
    .fee-new { font-weight: 800; color: #c0392b; font-size: 16px; }
    .fee-pct { font-weight: 700; color: #c0392b; font-size: 13px; }

/* Share bar */
    .share-bar {
      display: flex;
      gap: 8px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }
    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      color: white;
      cursor: pointer;
      border: none;
      transition: opacity 0.2s;
    }
    .share-btn:hover { opacity: 0.88; }
    .share-fb { background: #1877f2; }
    .share-wa { background: #25d366; }
    .share-x { background: #000; }
    .share-tg { background: #0088cc; }

/* Changes card grid */
    .changes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
      margin: 24px 0;
    }
    .change-card {
      background: white;
      border: 1px solid #dde3ed;
      border-top: 4px solid #0a1f3c;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .change-card.bad { border-top-color: #c0392b; }
    .change-card.neutral { border-top-color: #f9a825; }
    .change-card .tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
      color: #c0392b;
    }
    .change-card h4 { font-size: 15px; font-weight: 700; color: #0a1f3c; margin-bottom: 8px; }
    .change-card p { font-size: 13.5px; color: #c0392b; margin: 0; }

/* ── COST BOX ── */
    .cost-breakdown { background: #021769; border-radius: 14px; padding: 26px; margin: 26px 0; }
    .cost-breakdown h3 {  color: #FFCB05; font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.15); }
    .cost-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .cost-row:last-of-type { border-bottom: none; }
    .cost-row .cr-label { font-size: 1.4rem; color: #c8d4e8; }
    .cost-row .cr-label small { display: block; font-size: 1.2rem; opacity: .7; margin-top: 2px; }
    .cost-row .cr-amount {   font-size: 1.4rem; color: #FFCB05; font-weight: 700; }
    .cost-total { background: rgba(201,168,76,.15); border-radius: 8px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
    .cost-total span:first-child { font-weight: 700; color: #ffffff; font-size: 1.5rem; }
    .cost-total .total-val {   font-size: 1.8rem; color: #FFCB05; }
    
    
/* ── DOCUMENTS GRID ── */
    .docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
    @media(max-width: 640px){ .docs-grid { grid-template-columns: 1fr; } }
    .docs-col { background: var(--gray-bg); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; }
    .docs-col h4 {  font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
    .docs-col ul { padding-left: 18px; margin: 0; }
    .docs-col li { font-size: 1.3rem; margin-bottom: 7px; line-height: 1.5; }

/* ── WORK CARDS ── */
    .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
    @media(max-width: 700px){ .work-grid { grid-template-columns: 1fr; } }
    .work-card { border-radius: 10px; padding: 18px 16px; border: 1px solid; }
    .work-card .wc-title { font-size: 1.4rem; margin-bottom: 8px; display: block; }
    .work-card .wc-tag { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
    .work-card p { font-size: 1.3rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
    .w-campus { border-color: #1a7a4a; background: #e8f6ee; } .w-campus .wc-tag { color: #1a7a4a; } .w-campus .wc-title { color:#1a7a4a; }
    .w-cpt    { border-color: #1558a8; background: #e8f0fb; } .w-cpt .wc-tag    { color: #1558a8;} .w-cpt .wc-title    { color:#1558a8; }
    .w-opt    { border-color: #3730a3; background: #eef2ff; } .w-opt .wc-tag { color: #3730a3; } .w-opt .wc-title { color:#3730a3; } 

/* ── TIMELINE DE CASOS ── */
    .scandal-timeline { list-style: none; padding: 0; margin: 28px 0; }
    .scandal-timeline li { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
    .scandal-timeline .s-date { background: var(--navy); color: var(--gold); border-radius: 8px; padding: 6px 10px; font-size: 1.3rem; font-weight: 800; text-align: center; flex-shrink: 0; min-width: 68px; line-height: 1.3; }
    .scandal-timeline .s-body { flex: 1; }
    .scandal-timeline .s-title { font-weight: 700; color: var(--navy); font-size: 1.4rem; margin-bottom: 4px; display: block; }
    .scandal-timeline .s-desc { font-size:1.4rem; color: var(--text-muted); line-height: 1.6; }
    .scandal-timeline .s-flag { font-size: 1.3rem; margin-right: 4px; }
    
    
    /* ── CASO CARDS ── */
    .casos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
    @media(max-width: 640px){ .casos-grid { grid-template-columns: 1fr; } }
    .caso-card { border-radius: 12px; padding: 20px; border: 2px solid; }
    .caso-card .caso-pais { font-size: 1.3rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; display: block; }
    .caso-card .caso-nombre { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; display: block; }
    .caso-card .caso-status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
    .caso-card p { font-size: .87rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
    .caso-red { border-color: var(--red-alert); background: #fff8f8; } .caso-red .caso-pais { color: var(--red-alert); }
    .caso-orange { border-color: var(--orange-warn); background: #fff9f5; } .caso-orange .caso-pais { color: var(--orange-warn); }
    .caso-blue { border-color: var(--blue-info); background: #f5f8fe; } .caso-blue .caso-pais { color: var(--blue-info); }
    .caso-dark { border-color: #4a2020; background: #1a0505; } .caso-dark .caso-pais { color: #ff9999; } .caso-dark .caso-nombre { color: #ffdddd; } .caso-dark p { color: #c0a0a0; }
    .status-denied { background: #fde8e8; color: var(--red-alert); }
    .status-detained { background: #fef3e2; color: var(--orange-warn); }
    .status-restricted { background: #e8f0fb; color: var(--blue-info); }
    .status-blocked { background: #2d0000; color: #ff9999; }

    /* ── ARTICLE WRAPPER ── */
    article {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 20px 60px;
    }
    
    /* ── RIGHTS BOX ── */
    .rights-box { background: #f0f6ff; border: 1px solid #c5d8f5; border-radius: 8px; padding: 22px 24px; margin: 24px 0; }
    .rights-box h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: #0d3d7a; margin: 0 0 14px; }
    .rights-box ol { list-style: none; counter-reset: rights; }
    .rights-box ol li { counter-increment: rights; display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid #dce4f0; font-size: 1.2rem; line-height: 1.55; }
    .rights-box ol li:last-child { border-bottom: none; }
    .rights-box ol li::before { content: counter(rights); min-width: 24px; height: 24px; background: #1155a6; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── VOTE BOARD ── */
    .vote-board { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
    @media(max-width:480px){ .vote-board { grid-template-columns: 1fr; } }
    .vote-card { border-radius: 8px; padding: 20px; text-align: center; }
    .vote-card.senate { background: #f0f6ff; border: 1px solid #c5d8f5; }
    .vote-card.house  { background: #fff7f7; border: 1px solid #f5c6c9; }
    .vote-card .vc-label { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #5a6a80; margin-bottom: 10px; }
    .vote-card .vc-result { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; color: #0d1b2e; }
    .vote-card .vc-detail { font-size: 1.3rem; color: #5a6a80; line-height: 1.45; }
    .vote-yes { color: #06793e; }
    .vote-no  { color: #8b0000; }

    /* ── CATEGORY TAG ── */
    .category-tag {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 3px;
      margin: 24px 0 14px;
    }

    /* ── HEADLINE ── */
    
    @media(max-width:600px){ h1 { font-size: 1.5rem; } }

    /* ── SUMMARY DECK ── */
    .deck {
      font-size: 1.08rem;
      color: var(--text-light);
      border-left: 4px solid var(--primary);
      padding-left: 16px;
      margin-bottom: 20px;
      font-style: italic;
    }

    
    /* ── SUMMARY BOX ── */
    .summary-box {
      background: var(--bg-gray);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 24px;
      margin-bottom: 32px;
      font-size: 0.97rem;
    }
    .summary-box strong { color: var(--primary); }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 36px;
      text-align: center;
    }
    .stat {
      background: var(--bg);
      padding: 18px 12px;
    }
    .stat-number {
      font-family: 'Merriweather', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--primary);
      display: block;
    }
    .stat-label { font-size: 0.82rem; color: var(--text-light); }
    @media(max-width:540px){ .stats-bar { grid-template-columns: 1fr; } }

    /* ── TOC ── */
    .toc {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 22px 24px;
      margin-bottom: 40px;
    }
    .toc h2 {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin-bottom: 14px;
      font-family: 'Source Sans 3', sans-serif;
    }
    .toc ol {
      padding-left: 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .toc a {
      color: var(--primary);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .toc a:hover { text-decoration: underline; }

    /* ── SECTION HEADINGS ── */
    

    /* ── PARAGRAPHS ── */
    p { margin-bottom: 18px; color: var(--text); }

    /* ── CALLOUT BOXES ── */
    .callout {
      border-radius: 8px;
      padding: 18px 20px;
      margin: 24px 0;
      font-size: 1.3rem;
    }
    .callout.warning {
      background: var(--warning-bg);
      border-left: 5px solid var(--warning-border);
    }
    .callout.danger {
      background: var(--danger-bg);
      border-left: 5px solid var(--danger-border);
    }
    .callout.success {
      background: var(--success-bg);
      border-left: 5px solid var(--success-border);
    }
    .callout.info {
      background: var(--info-bg);
      border-left: 5px solid var(--info-border);
    }
    .callout-title {
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 1.5rem;
    }

    /* ── CHECKLIST ── */
    .checklist { list-style: none; padding: 0; margin: 14px 0 20px; }
    .checklist li {
      padding: 6px 0 6px 32px;
      position: relative;
      font-size: 1.4rem;
      border-bottom: 1px solid #f0f0f0;
    }
    .checklist li:last-child { border-bottom: none; }
    .checklist li::before {
      content: '✅';
      position: absolute;
      left: 0;
      top: 6px;
      font-size: 1.5rem;
    }
    .checklist li.red::before { content: '🔴'; }
    .checklist li.orange::before { content: '⚠️'; }
    .checklist li.blue::before { content: '📋'; }

    
    
    
    /* ── DATA TABLE ── */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0 28px;
      font-size: 1.4rem;
      border: 1px solid #021769;
    }
    .data-table th {
      background: #021769;
      color: #fff;
      padding: 12px 14px;
      text-align: left;
      font-weight: 700;
    }
    .data-table td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--border);
    }
    .data-table tr:nth-child(even) td { background: var(--bg-gray); }
    .data-table tr:hover td { background: #ffeaea; }
    .td-green { color: #06793e; font-weight: 600; }
    .td-red   { color: #c81e28; font-weight: 600; }
    
    
    /* ── COST COMPARISON ── */
    .cost-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
    @media(max-width:600px){ .cost-compare { grid-template-columns: 1fr; } }
    .cost-card { border-radius: 8px; padding: 22px 20px; text-align: center; }
    .cost-card.before { background: #fff0f0; border: 2px solid #f5c6c9; }
    .cost-card.after  { background: #eafaf5; border: 2px solid #b7e8d5; }
    .cost-card .cost-label { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
    .cost-card.before .cost-label { color: #c81e28; }
    .cost-card.after  .cost-label { color: #06793e; }
    .cost-card .cost-amount { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: 8px; }
    .cost-card.before .cost-amount { color: #c81e28; }
    .cost-card.after  .cost-amount { color: #06793e; }
    .cost-card .cost-note { font-size: 1.4rem; color: #5a6a80; line-height: 1.45; }

    /* ── STEPS ── */
    .steps { counter-reset: step; padding: 0; list-style: none; margin: 20px 0; }
    .steps li {
      counter-increment: step;
      position: relative;
      padding: 16px 16px 16px 60px;
      margin-bottom: 12px;
      background: var(--bg-gray);
      border-radius: 8px;
      font-size: 1.4rem;
    }
    .steps li::before {
      content: counter(step);
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 32px; height: 32px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.4rem;
    }

    /* ── FAQ ── */
    

    /* ── RELATED LINKS ── */
    .related {
      background: var(--bg-gray);
      border-radius: 8px;
      padding: 22px 24px;
      margin-top: 44px;
    }
    .related h3 { margin-top: 0; font-size: 1rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; }
    .related ul { list-style: none; padding: 0; }
    .related ul li { padding: 7px 0; border-bottom: 1px solid var(--border); }
    .related ul li:last-child { border-bottom: none; }
    .related ul li a { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.97rem; }
    .related ul li a:hover { text-decoration: underline; }
    .related ul li::before { content: '✔️ '; }

    

    /* ── BACK TO TOP ── */
    .back-top {
      font-size: 0.97rem;
      color: #aaa;
      text-decoration: none;
      display: inline-block;
      margin-top: 4px;
    }
    .back-top:hover { color: #021769; }

    