/* ============================================================
   Radar de CFPs — Hacktitud
   Diseño 100% a medida, sin dependencias externas.
   Identidad de marca Hacktitud (v13): modo CLARO / hueso,
   sección TEAL (como Trainings). Tipografía Space Grotesk
   (títulos) + Open Sans (cuerpo), autohospedadas.
   Acentos: rojo #FF3700 + amarillo cálido #FFB76F. Glow lila.
   Bordes afilados (tech). Grano sutil. Entradas suaves.
   ============================================================ */

/* ---------- Fuentes autohospedadas (de 01-SitioWeb) ---------- */
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ---------- Tokens de marca Hacktitud ---------- */
:root {
  /* Paleta de marca */
  --deep-purple: #2b1047;
  --purple-mate: #503c6f;
  --accent-red: #ff3700;
  --orange-mate: #ff6a3d;
  --yellow: #ffb76f;
  --teal: #35c6d8;
  --teal-deep: #185a64;
  --light: #f2eefb;
  --gray-mate: #bcb0d6;
  --pp-glow: #b97cff;   /* glow lila para focus/hover */
  --pp-soft: #d9b3ff;

  /* Roles semánticos — MODO OSCURO "Cripta de Luz" (coherente con la landing) */
  --bg: #0e0420;
  --bone-1: #170a2c;
  --bone-2: #1f1038;
  --bone-3: #170a2c;
  --grad-bone: radial-gradient(125% 125% at 70% 0%, #3f1d66 0%, #2b1047 42%, #170828 76%, #0e0420 100%);

  --fg: #f2eefb;        /* texto claro sobre morado */
  --fg-dim: #d8ccec;    /* texto tenue lila, con contraste suficiente sobre morado */
  --title: #ffffff;
  --line: rgba(185, 124, 255, 0.18);   /* bordes sutiles lila */
  --line-teal: rgba(32, 122, 135, 0.4);

  /* Superficie de tarjetas sobre el morado */
  --surface: color-mix(in srgb, #503c6f 30%, #170a2c);
  --surface-2: color-mix(in srgb, #503c6f 20%, #0e0420);

  /* Estados de deadline (con acentos de marca) */
  --open: #35d4b0;      /* abierto: teal-verde brillante, alto contraste */
  --soon: #ffb347;      /* próximo a cerrar: ámbar */
  --urgent: #ff5a3c;    /* urgente: rojo cálido legible */
  --closed: #ff8a6b;    /* cerrado: coral/ámbar (no gris que se pierde) */

  --radius: 4px;        /* afilado / tech */
  --radius-pill: 2px;   /* botones casi rectos, estilo del sitio */
  --shadow: 0 14px 40px rgba(36, 20, 51, 0.10);
  --shadow-teal: 0 10px 30px rgba(32, 122, 135, 0.18);

  --font-display: "Space Grotesk", "Open Sans", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Cascadia Code", "SF Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #0e0420; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--grad-bone) no-repeat;
  background-color: #0e0420;
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Grano sutil global (SVG noise), como en el sitio */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(1200px, 92%); margin-inline: auto; position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; color: var(--title); font-weight: 700; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal); color: #fff; padding: 10px 16px; border-radius: 0 0 6px 0;
  z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Entradas suaves al scroll (como v13) */
.reveal-up { opacity: 0; transform: translateY(16px); filter: blur(4px); transition: opacity 1s, transform 1s cubic-bezier(0.16,1,0.3,1), filter 1s; }
.reveal-up.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; filter: none; transition: none; }
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--teal), var(--deep-purple));
  display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-teal);
}
.brand-mark .pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 183, 111, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,183,111,.6); }
  70% { box-shadow: 0 0 0 13px rgba(255,183,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,183,111,0); }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--title); }
.brand-sub { font-size: 12px; color: var(--fg-dim); }
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { color: var(--fg-dim); font-weight: 600; }
.header-nav a:hover { color: var(--title); text-decoration: none; }
.btn-ghost {
  border: 1.5px solid var(--teal); padding: 9px 18px; border-radius: var(--radius-pill);
  color: var(--teal) !important; background: transparent; font-weight: 700;
  transition: background .18s, color .18s;
}
.btn-ghost:hover { background: var(--teal); color: #fff !important; }

/* ---------- Hero (Cripta de Luz — coherente con el resto del sitio) ---------- */
.hero {
  position: relative; padding: 96px 0 56px; overflow: hidden;
  
  /* FONDO ORIGINAL CON CANVAS POLIGONAL (DESHABILITADO):
  background: radial-gradient(125% 125% at 70% 0%, #3f1d66 0%, #2b1047 42%, #170828 76%, #0e0420 100%);
  */
  
  /* NUEVO FONDO CON IMAGEN: */
  background-image: url('/img/Backgrounds/BkgTEST01-despues-se-cambiara.jpg');
    /* ← AQUÍ ENTRA EL OVERLAY (capa semi-transparente) */
    linear-gradient(180deg, rgba(14, 4, 32, 0.65) 0%, rgba(14, 4, 32, 0.75) 100%),
    /* ← Y AQUÍ LA IMAGEN */
    url('/img/backgrounds/BkgTEST01-despues-se-cambiara.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
  /* FALLBACK POR SI NO CARGA LA IMAGEN: */
  background-color: #0e0420;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--pp-glow); margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent-red); display: inline-block; box-shadow: 0 0 10px var(--accent-red); }
/* ---- H1 del Hero: Título principal ---- */
.hero h1 { 
  font-family: "Google Sans", var(--font-display);  /* ← Cambio: Google Sans primero */
  font-weight: 700;                                 /* ← Asegurar negrita */
  font-size: clamp(34px, 5.6vw, 60px); 
  line-height: 1.04; 
  margin: 0 0 20px; 
  color: var(--light); 
  letter-spacing: -0.02em; 
  text-shadow: 0 0 60px rgba(185,124,255,0.2); 
}

/* Acentos en el H1 */
.accent { color: var(--pp-glow); }
.hero h1 .accent { position: relative; border-bottom: 3px solid var(--accent-red); }

/* NUEVO: Acentos en rojo para "Global CFP" */
.accent-red { 
  color: var(--accent-red);  /* ← Rojo de marca */
  font-weight: 900;           /* ← Negrita */
  border-bottom: none;        /* ← Sin línea inferior */
}
.lead { font-family: var(--font-body); font-size: clamp(16px, 2.2vw, 19px); color: var(--fg-dim); margin: 0 0 32px; max-width: 660px; }
.lead em { color: var(--light); font-style: normal; font-weight: 600; }

.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 6px 6px 6px 18px; box-shadow: var(--shadow); max-width: 660px;
  transition: border-color .2s, box-shadow .2s;
}
.search-bar:focus-within { border-color: var(--pp-glow); box-shadow: 0 0 0 4px rgba(185, 124, 255, 0.28); }
.search-ico { width: 20px; height: 20px; color: var(--pp-soft); flex: none; }
#q {
  flex: 1; border: none; background: transparent; color: var(--fg);
  font-size: 16px; padding: 13px 0; outline: none; font-family: var(--font-body);
}
#q::placeholder { color: var(--fg-dim); }
.search-bar kbd {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim);
  border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px; background: var(--surface-2);
}

.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(600px 320px at 82% 8%, rgba(185,124,255,.22), transparent 70%),
    radial-gradient(500px 300px at 60% 30%, rgba(32,122,135,.14), transparent 72%);
}

/* Acciones del hero (Explorar / Aportar un CFP) — reemplazan al header interno */
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 22px; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-actions > a:not(.btn-ghost) { color: var(--pp-soft); font-weight: 700; }
.hero-actions > a:not(.btn-ghost):hover { color: var(--light); text-decoration: none; }

/* ---------- StatBand (franja de números) ---------- */
.statband { background: linear-gradient(110deg, #1a0b30 0%, var(--deep-purple) 40%, var(--purple-mate) 100%); color: #fff; border-block: 1px solid var(--line); }
.statband-inner { display: flex; flex-wrap: wrap; gap: 42px; padding: 26px 0; }
.stat { display: flex; flex-direction: column; }
.stat b { font-family: var(--font-display); font-size: 30px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.stat span { font-size: 13px; color: rgba(255,255,255,.82); }
.stat .warm { color: var(--yellow); }

/* ---------- Layout híbrido: columna izquierda (País+Comunidad) + resultados ---------- */
.main-grid { display: grid; grid-template-columns: 256px 1fr; gap: 28px; padding: 28px 0 70px; align-items: start; }

.side-filters {
  position: sticky; top: 72px;
  display: flex; flex-direction: column; gap: 20px;
}
.side-group {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 16px; margin: 0; box-shadow: var(--shadow);
}
.side-group legend {
  font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: var(--pp-soft); padding: 0 6px; margin-left: -2px;
}
.side-scroll { max-height: 360px; overflow-y: auto; margin-top: 6px; padding-right: 4px; }
.side-scroll::-webkit-scrollbar { width: 7px; }
.side-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 7px; }
.side-scroll::-webkit-scrollbar-thumb:hover { background: var(--line-teal); }
.results-col { min-width: 0; }

/* ---------- Barra de filtros horizontal (estilo consola/SOC) ---------- */
.filterbar {
  background: rgba(31, 16, 56, 0.7);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; margin-bottom: 22px; box-shadow: var(--shadow);
}
.filterbar-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }

/* Cada filtro es un botón que abre un panel flotante */
.filter-dd { position: relative; }
.dd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--fg);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 14px; cursor: pointer; transition: border-color .15s, box-shadow .15s, color .15s;
}
.dd-btn:hover { border-color: var(--pp-glow); color: var(--pp-soft); }
.dd-btn .dd-ico { color: var(--teal); font-size: 13px; }
.dd-btn .dd-caret { color: var(--fg-dim); font-size: 10px; transition: transform .15s; }
.filter-dd.open .dd-btn { border-color: var(--pp-glow); box-shadow: 0 0 0 3px rgba(185,124,255,.22); }
.filter-dd.open .dd-caret { transform: rotate(180deg); }
/* Botón con filtro activo: acento */
.dd-btn.has-active { background: var(--teal); color: #fff; border-color: var(--teal); }
.dd-btn.has-active .dd-ico, .dd-btn.has-active .dd-caret { color: rgba(255,255,255,.85); }

.dd-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  min-width: 240px; max-height: 340px; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; box-shadow: 0 18px 44px rgba(6,2,16,.55);
  flex-direction: column; gap: 9px;
}
.filter-dd.open .dd-panel { display: flex; }
.dd-panel::-webkit-scrollbar { width: 8px; }
.dd-panel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }

.chk { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--fg); white-space: nowrap; }
.chk input { accent-color: var(--teal); width: 16px; height: 16px; }
.chk .count { margin-left: auto; padding-left: 14px; font-size: 12px; color: var(--gray-mate); font-variant-numeric: tabular-nums; font-family: var(--font-mono); }

.pais-select {
  width: 100%; min-width: 220px; background: var(--surface); color: var(--fg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 9px 10px; font-family: var(--font-body); font-size: 14px; cursor: pointer;
}
.pais-select:focus { outline: none; border-color: var(--pp-glow); box-shadow: 0 0 0 3px rgba(185,124,255,.28); }

/* Orden en línea dentro de la barra */
.inline-sort { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; }
.inline-sort .dd-ico { color: var(--teal); font-family: var(--font-mono); }
.inline-sort select {
  background: var(--surface); color: var(--fg); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 9px 12px; font-family: var(--font-mono); font-size: 13px; cursor: pointer;
}
.clear-inline { white-space: nowrap; }
.btn-link { background: none; border: none; color: var(--teal); cursor: pointer; font-size: 13px; padding: 0; font-weight: 700; font-family: var(--font-body); }
.btn-link:hover { text-decoration: underline; }

/* Chips de filtros activos + contador consola */
.filterbar-status {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); flex-wrap: wrap;
}
.active-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.active-chips:empty::before { content: "sin filtros activos"; font-family: var(--font-mono); font-size: 12px; color: var(--gray-mate); }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--pp-soft);
  background: rgba(32,122,135,.16); border: 1px solid var(--line-teal); border-radius: var(--radius-pill);
  padding: 4px 6px 4px 11px;
}
.chip button {
  border: none; background: none; color: var(--pp-soft); cursor: pointer;
  font-size: 14px; line-height: 1; padding: 0 3px; border-radius: 3px;
}
.chip button:hover { background: var(--accent-red); color: #fff; }
.console-count { font-family: var(--font-mono); font-size: 13px; color: var(--fg-dim); white-space: nowrap; }
.console-count b { color: var(--accent-red); font-weight: 700; }
.console-count .open-n { color: var(--teal); font-weight: 700; }

/* ---------- Results ---------- */
.cfp-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.cfp {
  background: var(--surface);
  border: 1px solid var(--line); border-left: 3px solid var(--line-teal); border-radius: var(--radius);
  padding: 20px 22px; display: grid; grid-template-columns: 1fr auto; gap: 14px 22px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.cfp:hover { transform: translateY(-2px); border-left-color: var(--pp-glow); box-shadow: var(--shadow); }
.cfp.past { opacity: .6; }

.cfp-main { min-width: 0; }
.cfp-title { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.cfp-title h3 { font-size: 19px; margin: 0; color: #ffffff; font-weight: 700; }
.cfp-title .year { font-family: var(--font-mono); font-size: 13px; color: #c9bce8; font-variant-numeric: tabular-nums; }
.cfp-desc { color: #ded3f2; font-size: 14.5px; line-height: 1.55; margin: 0 0 13px; }

.cfp-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: #d2c6ea; }
.cfp-meta .mi { display: inline-flex; align-items: center; gap: 6px; }
.cfp-meta svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .3px;
  padding: 3px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); color: var(--fg-dim); background: var(--bone-3);
}
.tag.dom { color: var(--pp-soft); border-color: var(--line-teal); background: rgba(32,122,135,.16); }

.cfp-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 14px; text-align: right; }
.deadline-box { text-align: right; }
.deadline-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: #b6a9d4; font-weight: 700; }
.deadline-count {
  font-family: var(--font-mono); font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums;
  display: inline-block; margin-top: 4px; padding: 4px 10px; border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.deadline-count.soon { color: #1a0a30; background: var(--soon); border-color: var(--soon); }
.deadline-count.urgent { color: #fff; background: var(--urgent); border-color: var(--urgent); box-shadow: 0 0 16px -4px var(--urgent); }
.deadline-count.open { color: #05221c; background: var(--open); border-color: var(--open); box-shadow: 0 0 16px -4px var(--open); }
.deadline-count.closed { color: var(--closed); background: color-mix(in srgb, var(--closed) 16%, transparent); border-color: color-mix(in srgb, var(--closed) 45%, transparent); font-size: 13px; }
.deadline-count.pending { color: #ffd9a8; background: color-mix(in srgb, var(--yellow) 16%, transparent); border-color: color-mix(in srgb, var(--yellow) 40%, transparent); font-size: 14px; }

/* Sello de fuente del CFP (transparencia, no autoría) */
.origen { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .2px; padding: 2px 8px; border-radius: var(--radius-pill); white-space: nowrap; }
.origen-fuente { color: var(--pp-soft); background: rgba(32,122,135,.16); border: 1px solid var(--line-teal); }
.deadline-date { font-size: 12px; color: #b6a9d4; margin-top: 5px; }

/* Botón "Página oficial": rojo de marca con glow (como los botones del sitio) */
.cfp-link {
  border: none; background: var(--accent-red); color: #fff;
  padding: 9px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; position: relative; overflow: hidden;
  box-shadow: 0 6px 18px rgba(255, 55, 0, 0.28);
  transition: transform .15s, box-shadow .15s;
}
.cfp-link:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 10px 26px rgba(255, 55, 0, 0.42); }
.cfp-link:hover::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shine .7s ease; 
}
@keyframes shine { to { left: 130%; } }
.cfp-link svg { width: 14px; height: 14px; }
.cfp-link.disabled { background: var(--bone-2); color: var(--gray-mate); box-shadow: none; cursor: default; }

.empty { text-align: center; color: var(--fg-dim); padding: 54px 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--fg-dim); font-size: 14px; background: var(--bone-2); position: relative; z-index: 1; }
.site-footer strong { color: var(--title); font-family: var(--font-display); }
.site-footer .muted { color: var(--gray-mate); font-size: 13px; margin-top: 6px; }
.site-footer .fuentes-legal { color: #b8b2c0; font-size: 10.5px; line-height: 1.5; margin-top: 14px; max-width: 720px; }
.site-footer .fuentes-legal a { color: #a89fbb; }

/* ---------- Paginador ---------- */
.pager {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 2rem 0 0.5rem; margin-top: 0.5rem;
  border-top: 1px dashed var(--line);
}
.pager-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--fg); background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 9px 18px; cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.pager-btn:hover:not(:disabled) { border-color: var(--pp-glow); color: var(--pp-soft); }
.pager-btn:disabled { opacity: 0.35; cursor: default; }
.pager-info { font-family: var(--font-mono); font-size: 13px; color: var(--fg-dim); white-space: nowrap; }
.pager-info b { color: var(--accent-red); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .main-grid { grid-template-columns: 1fr; }
  .side-filters { position: static; flex-direction: column; }
  .side-scroll { max-height: 240px; }
  .filterbar { position: static; }
  .inline-sort { margin-left: 0; }
  .cfp { grid-template-columns: 1fr; }
  .cfp-side { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
  .deadline-box { text-align: left; }
  .statband-inner { gap: 28px; }
  .header-nav a:not(.btn-ghost) { display: none; }
}
