/* ════════════════════════════════════════════════════════════
   IESA Colombia — Premium Polish Layer
   Cargar DESPUÉS de components.css
   Retrofitea clases legacy (.btn, .badge, .tournament-card, .admin-table,
   .legal-content, etc.) al lenguaje visual v2 sin tocar HTML.
   ════════════════════════════════════════════════════════════ */

/* ── Botones legacy → premium ───────────────────────── */
.v2-scope .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem; font-family: var(--ff-body);
  font-size: var(--fs-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  border-radius: var(--r-sm); border: 1px solid transparent;
  transition: all var(--t-base); line-height: 1; cursor: pointer;
  text-decoration: none;
}
.v2-scope .btn--primary {
  background: var(--gold-gradient);
  color: #000 !important; border: 1px solid transparent;
  box-shadow: none;
  text-shadow: none;
  position: relative; overflow: hidden;
}
.v2-scope .btn--primary::after {
  content: none;
}
.v2-scope .btn--primary:hover {
  background: var(--gold-gradient-h);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251, 191, 36, 0.28);
}
.v2-scope .btn--outline {
  background: transparent; color: var(--c-accent);
  border-color: var(--c-accent);
}
.v2-scope .btn--outline:hover { background: var(--c-accent); color: var(--c-text-on-accent); }
.v2-scope .btn--ghost {
  background: transparent; color: var(--c-text);
  border-color: var(--c-border-strong);
}
.v2-scope .btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ── Badges legacy ─────────────────────────────────── */
.v2-scope .badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .25rem .6rem; font-size: var(--fs-xs);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--r-xs); line-height: 1.2;
  background: var(--c-accent); color: var(--c-text-on-accent);
}
.v2-scope .badge--glow {
  background: var(--gold-gradient); color: var(--c-text-on-accent);
  border: 1px solid var(--gold-border);
  text-shadow: var(--gold-text-shadow);
}
.v2-scope .badge--live {
  background: var(--c-live); color: white;
  animation: pulse-live 1.6s ease-in-out infinite;
}
.v2-scope .badge--upcoming {
  background: transparent; color: var(--c-accent);
  border: 1px solid var(--c-accent-border);
}

/* ── Tournament cards legacy ─────────────────────── */
.v2-scope .tournament-card {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.v2-scope .tournament-card::before {
  content:""; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  opacity: 0.3; transition: opacity var(--t-base);
}
.v2-scope .tournament-card:hover {
  border-color: var(--c-accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.v2-scope .tournament-card:hover::before { opacity: 1; }
.v2-scope .tournament-card__title {
  font-family: var(--ff-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--c-text);
}
.v2-scope .tournament-card__desc { color: var(--c-text-muted); font-size: var(--fs-sm); line-height: var(--lh-snug); }
.v2-scope .tournament-card__meta-item { color: var(--c-text-muted); }
.v2-scope .tournament-card__format { color: var(--c-text-muted); font-size: var(--fs-xs); }

/* ── Tournaments grid container ──────────────────── */
.v2-scope .tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* ── Match list / row ─────────────────────────────── */
.v2-scope .match-row, .v2-scope .matches-list > * {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: border-color var(--t-fast);
}
.v2-scope .match-row:hover, .v2-scope .matches-list > *:hover {
  border-color: var(--c-accent-border);
}

/* ── Section title legacy ─────────────────────────── */
.v2-scope .section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.v2-scope .section__see-all {
  color: var(--c-accent); font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
}
.v2-scope .section__see-all:hover { color: var(--c-accent-hover); }

/* ── Page hero (legales, torneo-detalle, partidos) ─ */
.v2-scope .page-hero {
  background: var(--c-bg-deep) !important;
  border-bottom: 1px solid var(--c-border-strong);
  position: relative;
}
.v2-scope .page-hero::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(212,169,78,0.3), transparent);
}
.v2-scope .page-hero h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ── Form legacy inputs ─────────────────────────── */
.v2-scope .form-input {
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-family: var(--ff-body);
  transition: all var(--t-fast);
}
.v2-scope .form-input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
  outline: 0;
}

/* ── Admin tables ───────────────────────────────── */
.v2-scope .admin-table {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
}
.v2-scope .admin-table th {
  background: var(--c-bg-elevated);
  font-family: var(--ff-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border-strong);
}
.v2-scope .admin-table td {
  border-bottom: 1px solid var(--c-divider);
}
.v2-scope .admin-table tbody tr:hover {
  background: var(--c-accent-soft);
}

/* ── Legal pages content ──────────────────────────── */
.v2-scope .legal-content {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r-md);
  padding: 2.5rem 3rem !important;
  max-width: 820px !important;
  margin: 3rem auto !important;
  color: var(--c-text-muted);
  line-height: 1.75;
}
.v2-scope .legal-content h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-top: 2.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--c-divider);
}
.v2-scope .legal-content h2:first-child { margin-top: 0; }
.v2-scope .legal-content p strong,
.v2-scope .legal-content li strong { color: var(--c-text); }
.v2-scope .legal-content a { color: var(--c-accent); }
.v2-scope .legal-content ul li::marker { color: var(--c-accent); }

/* ── Stats bar legacy ────────────────────────────── */
.v2-scope .stats-bar {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
}
.v2-scope .stats-bar__number {
  font-family: var(--ff-display);
  color: var(--c-accent);
  font-weight: 900;
}

/* ── About cards legacy ──────────────────────────── */
.v2-scope .about-card {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast);
}
.v2-scope .about-card:hover { border-color: var(--c-accent-border); }
.v2-scope .about-card__number {
  font-family: var(--ff-display);
  color: var(--c-accent);
  font-weight: 900;
}

/* ── Navbar legacy ──────────────────────────────── */
.v2-scope .navbar {
  background: var(--c-bg-deep);
  border-bottom: 1px solid var(--c-border-strong);
}
.v2-scope .navbar__link {
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.v2-scope .navbar__link--active { color: var(--c-accent); }

/* ── Wizard (reportar) premium ──────────────────── */
.v2-scope .report-panel {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r-md);
}
.v2-scope .wizard-header h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.v2-scope .btn-wizard {
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--r-sm);
}

/* ── Torneo-detalle hero polish ─────────────────── */
.v2-scope .td-hero-title {
  font-family: var(--ff-display) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.v2-scope .td-hero-desc { color: var(--c-text-muted); }
.v2-scope .td-info-value {
  font-family: var(--ff-display);
  font-weight: 700;
}
.v2-scope .td-info-value--accent {
  color: var(--c-accent);
}
.v2-scope .td-panel {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
}
.v2-scope .td-panel__title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--c-text);
}

/* ── Tabs legacy → premium ──────────────────────── */
.v2-scope .tab-btn,
.v2-scope .subtab-btn {
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: .8rem 1.25rem;
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.v2-scope .tab-btn:hover,
.v2-scope .subtab-btn:hover { color: var(--c-text); }
.v2-scope .tab-btn.active,
.v2-scope .subtab-btn.active {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}

/* ── Live bar ───────────────────────────────────── */
.v2-scope .live-bar {
  background: linear-gradient(90deg, #11020a 0%, #2a0510 45%, #2a0510 55%, #11020a 100%);
  color: white;
  font-family: var(--ff-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* ── Whatsapp float ─────────────────────────────── */
.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,.4) !important;
  transition: transform var(--t-base) !important;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); }

/* ── Hero legacy enhancements ───────────────────── */
.v2-scope .hero {
  background: var(--c-bg-deep);
}
.v2-scope .hero__title {
  font-family: var(--ff-display) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: -0.02em !important;
}
.v2-scope .hero__title-accent {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Match detail (md-*) ────────────────────────── */
.v2-scope .md-hero {
  background: var(--c-bg-deep) !important;
  border-bottom: 1px solid var(--c-border-strong);
}

/* ── Equipo perfil cards ────────────────────────── */
.v2-scope .team-banner,
.v2-scope .team-card {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
}

/* ── Player cards (jugadores grid) ──────────────── */
.v2-scope .player-card {
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  overflow: hidden;
  position: relative;
}
.v2-scope .player-card::before {
  content:""; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  opacity: 0; transition: opacity var(--t-base);
}
.v2-scope .player-card:hover {
  border-color: var(--c-accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* ============================================================
   MARQUEE CAROUSELS (teams + sponsors)
   Infinite auto-scroll. The track holds the items twice;
   animating to translateX(-50%) loops seamlessly.
   ============================================================ */
.v2-scope .c-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Holgura vertical: el hover eleva/escala el tile y proyecta sombra; sin este
     respiro el overflow:hidden (necesario para el bucle horizontal) recortaría
     la parte superior/inferior del elemento. */
  padding: 22px 0;
  /* Fade the edges so logos appear/disappear softly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v2-scope .c-marquee__track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--sp-5);
  /* duration is set inline per-instance from JS */
  animation: marquee-scroll var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}
.v2-scope .c-marquee:hover .c-marquee__track {
  animation-play-state: paused;
}
.v2-scope .c-marquee--reverse .c-marquee__track {
  animation-direction: reverse;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Each logo chip */
.v2-scope .c-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: border-color var(--t-base, .2s), transform var(--t-base, .2s), box-shadow var(--t-base, .2s);
}
.v2-scope .c-marquee__item:hover {
  border-color: var(--c-accent-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.v2-scope .c-marquee__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Tiles enlazados (equipos, o patrocinadores con URL) → clic evidente */
.v2-scope a.c-marquee__item,
.v2-scope a.c-marquee__item *,
.v2-scope a > .c-marquee__item,
.v2-scope a > .c-marquee__item * {
  cursor: pointer;
}

/* Teams variant: logo tile + team name caption */
.v2-scope .c-marquee--teams .c-marquee__item {
  flex-direction: column;
  gap: 8px;
  width: 116px;
  height: 116px;
  padding: 12px 10px;
}
.v2-scope .c-marquee--teams .c-marquee__item img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.v2-scope .c-marquee__caption {
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sponsors/marcas: manda el logo. El tile se adapta al formato REAL del logo
   (ancho automático) y el logo se muestra grande, completo y sin recorte.
   Nada de tarjeta/placeholder: sin caja, sin borde, sin fondo, sin sombra,
   sin padding muerto. */
.v2-scope .c-marquee--sponsors .c-marquee__item {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.v2-scope .c-marquee--sponsors .c-marquee__item:hover {
  border: 0;
  box-shadow: none;
}
.v2-scope .c-marquee--sponsors .c-marquee__item img {
  width: auto;
  height: 96px;          /* logos visiblemente grandes */
  max-width: 280px;      /* tope sólo para logos hiper-anchos */
  max-height: 96px;
  object-fit: contain;   /* completo, sin recorte, sin deformar */
  opacity: 0.92;
  transition: opacity var(--t-base, .2s), transform var(--t-base, .2s);
}
.v2-scope .c-marquee--sponsors .c-marquee__item:hover img {
  opacity: 1;
}

/* Placeholder tile (no real logo yet) */
.v2-scope .c-marquee__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.1;
}
.v2-scope .c-marquee__placeholder svg {
  width: 26px;
  height: 26px;
  opacity: 0.55;
}
.v2-scope .c-marquee__placeholder span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

/* Section wrapper for the marquees */
.v2-scope .marquee-section {
  padding: var(--sp-6) 0;
}
.v2-scope .marquee-section__title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-5);
}

/* Responsive: smaller tiles on phones */
@media (max-width: 640px) {
  .v2-scope .c-marquee__track { gap: var(--sp-4); }
  .v2-scope .c-marquee--teams .c-marquee__item { width: 96px; height: 100px; padding: 10px 8px; gap: 6px; }
  .v2-scope .c-marquee--teams .c-marquee__item img { width: 44px; height: 44px; }
  .v2-scope .c-marquee--sponsors .c-marquee__item img { height: 68px; max-height: 68px; max-width: 200px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .v2-scope .c-marquee__track { animation: none; }
  .v2-scope .c-marquee { overflow-x: auto; }
}
.v2-scope .player-card:hover::before { opacity: 1; }

/* ── Filter buttons ─────────────────────────────── */
.v2-scope .filter-btn {
  border-radius: var(--r-sm);
  font-weight: 700;
}
.v2-scope .filter-btn--active {
  background: var(--gold-gradient);
  color: #000 !important;
  border: 1px solid transparent;
}

/* ── Section header legacy ──────────────────────── */
.v2-scope .section__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-divider);
}

/* ── Empty state ────────────────────────────────── */
.v2-scope .empty-state, .v2-scope .skeleton {
  border-radius: var(--r-sm);
}

/* Sección del Inicio desactivada desde el panel (Secciones del Inicio).
   !important para ganar a un style.display inline puesto por el render de
   contenido (marquees / noticias). */
.v2-scope .hs-hidden { display: none !important; }

/* ── Noticias (tarjetas en el Inicio) ───────────── */
.v2-scope .news-grid { gap: var(--sp-4); }
.v2-scope .news-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--t-base, .2s), transform var(--t-base, .2s), box-shadow var(--t-base, .2s);
}
.v2-scope .news-card:hover {
  border-color: var(--c-accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.v2-scope .news-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: #0b0a16;
  border-bottom: 1px solid var(--c-border);
}
/* Fondo difuminado del mismo póster: rellena el espacio sobrante (los carteles
   son verticales) para que la imagen completa se vea enmarcada y no a borde
   crudo. La imagen real va encima con object-fit:contain → nunca se recorta. */
.v2-scope .news-card__img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(26px) brightness(0.45) saturate(1.1);
  transform: scale(1.25);
  z-index: 0;
}
.v2-scope .news-card__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.v2-scope .news-card__img--ph {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(251,191,36,0.14), rgba(20,17,46,0.65));
}
.v2-scope .news-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4);
  flex: 1;
}
.v2-scope .news-card__date {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--c-accent);
}
.v2-scope .news-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--c-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-scope .news-card__summary {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-base);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-scope .news-card__more {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-accent);
  margin-top: var(--sp-1);
}

/* Custom premium styles for navbar dropdowns and mobile menus */
.c-nav-dd__news-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--t-fast, 0.2s);
}
.c-nav-dd__news-item:hover {
  background: var(--c-accent-soft);
}
.c-nav-dd__news-title {
  font-size: 0.88rem;
  color: var(--text-white);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.c-nav-dd__news-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile sub-menus inside overlay */
.mobile-nav-dd {
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-left: 1px solid rgba(251, 191, 36, 0.15);
}
.mobile-nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-toggle::after {
  content: '▼';
  font-size: 0.6em;
  transition: transform 0.2s;
  display: inline-block;
  vertical-align: middle;
  color: var(--text-muted);
}
.mobile-nav-toggle.is-active::after {
  transform: rotate(180deg);
  color: var(--c-accent);
}

.mobile-noticia-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--text-light);
  align-items: flex-start;
}
.mobile-noticia-item:last-child {
  border-bottom: none;
}

