/* =========================================================
   VARIABLES Y BASE
   ========================================================= */
:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --blue-accent: #3498db;
  --gold: #ffd36a;
  --white: #ffffff;
  --slate: #64748b;
  --success: #2ecc71;
  --alert: #e74c3c;
  --text-main: #1e293b;
  scroll-padding-top: 95px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  scroll-behavior: smooth;
  background: #f0f4f8;
  color: var(--navy);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--blue-accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.brand {
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}
.brand span { color: var(--blue-accent); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   BOTONES
   ========================================================= */
.donate-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.donate-btn:hover {
  transform: translateY(-2px);
  background: #f7c34d;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10, 25, 47, 0.7);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  transform: translateY(-3px);
  background: rgba(10, 25, 47, 0.9);
  border-color: var(--white);
}

.hero-btn--gold {
  background: rgba(255, 211, 106, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-btn--gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =========================================================
   GRID Y TARJETAS
   ========================================================= */
.grid-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.tool-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5eaf0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-accent);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.tool-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.tool-card p {
  margin: 0;
  font-size: 14px;
  color: var(--slate);
}

/* =========================================================
   VENTANA DE NOTICIAS (FLOTANTE)
   ========================================================= */
.news-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 340px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: newsSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

@keyframes newsSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.news-float__head {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #f8fafc, rgba(255,211,106,0.1));
  border-bottom: 1px solid #f1f5f9;
}

.news-float__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-float__close {
  cursor: pointer;
  background: #f1f5f9;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.news-float__close:hover { background: #e2e8f0; }

.news-float__body {
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-main);
}

.news-float__foot {
  padding: 12px 18px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
}

.news-float__btn {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transition: opacity 0.2s;
}

.news-float__btn:hover { opacity: 0.9; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 640px) {
  .hero-links { flex-direction: column; padding: 0 20px; }
  .hero-btn { width: 100%; padding: 14px; }

  .news-float {
    left: 15px;
    right: 15px;
    width: auto;
    bottom: 15px;
  }

  .nav__inner { padding: 10px 15px; }
}

/* =========================================================
   TIMELINE / CASOS (I-220A)
   ========================================================= */
#i220a .case-list{
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  position: relative;
}

#i220a .case-list::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}

#i220a .case-list::after{
  content:"AHORA";
  position:absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .9px;
  color: rgba(255,255,255,.85);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
}

#i220a .timeline-arrow{
  display:flex;
  justify-content:center;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.75);
}

#i220a .case-item{
  position: relative;
  width: 46%;
  padding: 14px 16px;
  margin-bottom: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  font-size: 13px;
  line-height: 1.6;
}

#i220a .case-item.left{ margin-right: auto; text-align: right; }
#i220a .case-item.right{ margin-left: auto; text-align: left; }

#i220a .case-item::before{
  content:"";
  position:absolute;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: var(--blue-accent);
  box-shadow: 0 0 0 5px rgba(52,152,219,.25);
}
#i220a .case-item.left::before{ right: -30px; }
#i220a .case-item.right::before{ left: -30px; }

#i220a .case-item strong{
  display:block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--gold);
}

#i220a .case-meta{
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.18);
}

#i220a .case-item[data-tags*="CAA"]::before{ background:#ffd36a; box-shadow:0 0 0 5px rgba(255,211,106,.25); }
#i220a .case-item[data-tags*="BONO"]::before{ background:#6ae2ff; box-shadow:0 0 0 5px rgba(106,226,255,.25); }
#i220a .case-item[data-tags*="EOIR"]::before{ background:#a78bfa; box-shadow:0 0 0 5px rgba(167,139,250,.25); }
#i220a .case-item[data-tags*="ARGUMENTO"]::before{ background:#ff7a90; box-shadow:0 0 0 5px rgba(255,122,144,.25); }
#i220a .case-item[data-tags*="FEDERAL"]::before{ background:#7ee787; box-shadow:0 0 0 5px rgba(126,231,135,.22); }

#i220a .case-item[hidden]{ display:none !important; }

@media (max-width: 768px){
  #i220a .case-list::before{ left: 10px; transform:none; }
  #i220a .case-list::after{ left: 10px; transform:none; }
  #i220a .case-item{
    width: calc(100% - 30px);
    margin-left: 30px;
    text-align: left !important;
  }
  #i220a .case-item::before{
    left: -22px !important;
    right: auto !important;
  }
}

/* toque gráfico timeline */
#i220a .case-item{ padding-left: 70px; }

#i220a .case-year{
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .5px;
  padding: 6px 8px;
  border-radius: 10px;
  color: #0a192f;
  background: #e5e7eb;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.08);
}

#i220a .y2025{ background: linear-gradient(135deg,#60a5fa,#2563eb); color:#fff; }
#i220a .y2023{ background: linear-gradient(135deg,#fbbf24,#f59e0b); color:#1f2937; }
#i220a .y2024{ background: linear-gradient(135deg,#34d399,#059669); color:#022c22; }
#i220a .yPR{ background: linear-gradient(135deg,#f472b6,#be185d); color:#fff; }

#i220a .case-item[data-tags*="FEDERAL"]{ border-left: 4px solid #2563eb; }
#i220a .case-item[data-tags*="EOIR"]{ border-left: 4px solid #7c3aed; }
#i220a .case-item[data-tags*="BONO"]{ border-left: 4px solid #06b6d4; }
#i220a .case-item[data-tags*="CAA"]{ border-left: 4px solid #f59e0b; }
#i220a .case-item[data-tags*="ARGUMENTO"]{ border-left: 4px solid #db2777; }

/* ===== Timeline legal visual ===== */
.timeline-legal{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  position: relative;
  padding-left: 40px;
}

.timeline-legal::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom,#60a5fa,#a78bfa,#f59e0b,#ec4899);
  border-radius: 10px;
}

.tl-item{ display: flex; gap: 14px; position: relative; }

.tl-year{
  min-width: 64px;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  color: #0a192f;
}

.tl-card{
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border-left: 5px solid;
}

.tl-card h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
}

.tl-card p{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}

.tl-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
}

.tl-item.federal .tl-card{ border-color:#2563eb; }
.tl-item.bono .tl-card{ border-color:#06b6d4; }
.tl-item.eoir .tl-card{ border-color:#7c3aed; }
.tl-item.caa .tl-card{ border-color:#f59e0b; }
.tl-item.argumento .tl-card{ border-color:#db2777; }

@media (max-width: 768px){
  .timeline-legal{ padding-left: 28px; }
  .tl-year{ min-width: 50px; font-size: 12px; }
}

/* =========================================================
   UPDATE / NOTICIAS CON VIDA
   ========================================================= */
.update-box{
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-left: 6px solid #f59e0b;
}

.update-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 12px;
}

.update-title{
  font-size: 15px;
  font-weight: 1000;
  color: #0a192f;
}

.update-date{
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245,158,11,.15);
  color: #92400e;
}

.update-list{
  list-style:none;
  padding:0;
  margin:0;
}

.update-item{
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.06);
}

.update-tag{
  display:inline-block;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f59e0b;
  color: #ffffff;
  margin-bottom: 10px;
}

.update-item h4{
  margin: 6px 0 10px;
  font-size: 15px;
  font-weight: 1000;
  color: #0f172a;
}

.update-item p{
  font-size: 13px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 10px;
}

.update-highlight{
  background: rgba(59,130,246,.08);
  border-left: 4px solid #3b82f6;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #1e3a8a;
}

@media (max-width:768px){
  .update-box{ padding: 16px; }
}

/* =========================================================
   PARPADEO SUAVE (IMPORTANTE) CADA 2s
   ========================================================= */
@keyframes softBlink {
  0% {
    background-color: rgba(59,130,246,0.06);
    box-shadow: 0 0 0 rgba(59,130,246,0);
  }
  50% {
    background-color: rgba(59,130,246,0.22);
    box-shadow: 0 0 20px rgba(59,130,246,0.35);
  }
  100% {
    background-color: rgba(59,130,246,0.06);
    box-shadow: 0 0 0 rgba(59,130,246,0);
  }
}

.blink-important {
  animation: softBlink 2s ease-in-out infinite;
  border-radius: 14px;
  padding: 10px 14px;
}

/* =========================================================
   SIDEBAR – ESPACIADO Y RESPIRACIÓN
   ========================================================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Apoyo */
.sidebar-donate h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.sidebar-donate p {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--slate);
}

/* =========================================================
   SOURCES (SIDEBAR) – ESTABLE Y LEGIBLE
   ========================================================= */
.sidebar .sources{
  background: #ffffff !important;
  color: #0a192f !important;
  border: 1px solid #e5e7eb !important;
  border-left: none !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08) !important;
}

.sidebar .sources h3{
  color: #0a192f !important;
  font-size: 15px;
  font-weight: 1000;
  margin: 0 0 12px;
}

.sidebar .sources ul{
  margin: 0;
  padding-left: 18px;
  margin-top: 10px;
}

.sidebar .sources li{
  margin-bottom: 8px;
  font-size: 12px;
}

.sidebar .sources li:last-child{ margin-bottom: 0; }

.sidebar .sources a{
  color: #1e293b !important;
  font-weight: 800;
  text-decoration: none;
}

.sidebar .sources a:hover{
  color: #0a192f !important;
  text-decoration: underline;
}

.verify-pill{
  background: rgba(0,0,0,0.06) !important;
  color: #334155 !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 1000;
}

/* =========================================================
   QUICK LINKS – VERSION FINAL (PRO, VISIBLE, COHERENTE)
   ========================================================= */
.sidebar .quick-links-card{
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  border: 1px solid rgba(2, 6, 23, 0.10);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.sidebar .quick-links-card h3{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 1000;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar .quick-links-card h3::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,211,106,0.20);
}

.sidebar .quick-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.sidebar .quick-links-card .quick-link{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;

  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.08);

  font-size: 12px;
  font-weight: 950;
  color: #2563eb !important;
  opacity: 1 !important;
  text-decoration: none;

  transition: transform .15s ease,
              border-color .15s ease,
              box-shadow .15s ease,
              background .15s ease,
              color .15s ease;
}

.sidebar .quick-links-card .quick-link::before{
  content: "🔗";
  font-size: 12px;
  opacity: .9;
}

.sidebar .quick-links-card .quick-link:hover{
  transform: translateY(-1px);
  background: rgba(37,99,235,0.06);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
  color: #1e3a8a !important;
}

.sidebar .quick-links-card .quick-link:visited{
  color: #1d4ed8 !important;
}

.sidebar .quick-links-card .quick-link:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

@media (max-width: 768px){
  .sidebar .quick-links-card{
    padding: 14px;
  }
  .sidebar .quick-links-card .quick-link{
    padding: 10px 10px;
  }
}

/* =========================================================
   FOOTER: CONTADOR DE VISITAS (NUEVO)
   ========================================================= */
.footer-stats{
  margin: 14px auto 6px;
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.footer-pill{
  font-size: 11px;
  font-weight: 1000;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.footer-pill strong{
  color: var(--gold);
  font-weight: 1000;
}
/* Botón de apoyo – versión clara (sidebar) */
.donate-btn-light{
  background: linear-gradient(135deg, #ffe9a8, #ffd36a);
  color: #0a192f;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.donate-btn-light:hover{
  background: linear-gradient(135deg, #fff3c4, #ffe08a);
  color: #0a192f;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
}
.section-title{
  margin: 0;
  font-size: 22px;
  font-weight: 1000;
  color: var(--navy);
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.section-title span{
  font-weight: 700;
  color: #0b5cab;
}

.section-subtitle{
  margin: 6px 0 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
}
/* ✅ FIX: Logo gigante en páginas internas */
.page-hero-logo{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 34px 16px 10px;
}

.page-hero-logo img{
  width: min(620px, 92vw);     /* límite real en PC y se adapta en móvil */
  max-width: 620px;
  max-height: 160px;          /* evita que se coma la pantalla */
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

/* Ajustes finos por tamaño */
@media (max-width: 768px){
  .page-hero-logo img{
    max-height: 120px;
  }
}

@media (max-width: 480px){
  .page-hero-logo{
    padding-top: 26px;
  }
  .page-hero-logo img{
    max-height: 95px;
  }
}
/* ===============================
   TOP ALERT BAR – GLOBAL
   =============================== */

.top-alert-bar{
  background: #b91c1c;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 1px;

  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.ticker-wrapper{
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: ticker 26s linear infinite;
}

.ticker-item{
  display: inline-block;
  padding: 0 40px;
}

@keyframes ticker{
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
/* ===============================
   CONTENEDOR EDITORIAL GLOBAL
   =============================== */

.page-frame{
  max-width: 1100px;
  margin: -70px auto 60px; /* sube el bloque hacia el hero */
  padding: 32px 28px;

  background: #ffffff;
  border-radius: 18px;

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);

  border: 1px solid #e5e7eb;
}

/* Ajuste en móvil */
@media (max-width: 640px){
  .page-frame{
    margin: -50px 14px 40px;
    padding: 22px 16px;
    border-radius: 14px;
  }
}
/* ===============================
   FUENTES OFICIALES – BLOQUE SEPARADO
   =============================== */

.section-separator{
  margin: 36px 0 28px;
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15,23,42,0.15),
    transparent
  );
}

.sources-separated{
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
}

.sources-separated h3{
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.sources-note{
  margin: 6px 0 12px;
  font-size: 12px;
  color: #475569;
}

.sources-separated ul{
  margin: 0;
  padding-left: 18px;
}

.sources-separated li{
  margin: 6px 0;
}

.sources-separated a{
  font-weight: 700;
}
/* ===============================
   EFECTO CRISTAL – LINKS FUENTES
   =============================== */

.sources-separated ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sources-separated li{
  margin: 8px 0;
}

.sources-separated a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
  text-decoration: none;

  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 6px 18px rgba(15,23,42,0.10);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    color .22s ease;
}

/* Icono sutil */
.sources-separated a::before{
  content: "🔗";
  font-size: 12px;
  opacity: .75;
}

/* Hover cristal pro */
.sources-separated a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.85);
  border-color: rgba(59,130,246,0.45);
  color: #0b5cab;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 12px 28px rgba(15,23,42,0.18);
}

/* Active (click) */
.sources-separated a:active{
  transform: translateY(0);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.12),
    0 6px 16px rgba(15,23,42,0.12);
}
