/* ═══════════════════════════════════════════════════
   KSites/news — Diseño Revista v1.0
   Variables inyectadas desde site.json via PHP <style>
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body, 'Inter', sans-serif);
  background: #f7f7f5;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── BANNERS ── */
.banner-wrap { width: 100%; text-align: center; overflow: hidden; }
.banner-header { background: #ebebeb; min-height: 90px; display: flex; align-items: center; justify-content: center; }
.banner-sidebar { background: #ebebeb; min-height: 250px; border-radius: 6px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.banner-inline { text-align: center; margin: 1rem 0; }
.span-full { grid-column: 1 / -1; }

/* ── NAVBAR ── */
.navbar { background: var(--color-primary); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 8px rgba(0,0,0,.35); }

.navbar-top { border-bottom: 1px solid rgba(255,255,255,.12); }
.navbar-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .35rem 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.navbar-social { display: flex; gap: 1rem; }
.navbar-social a { color: rgba(255,255,255,.65); font-size: .75rem; }
.navbar-social a:hover { color: #fff; }

.navbar-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.25rem;
}
.brand-link { display: flex; align-items: center; }
.brand-logo { height: 48px; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}

.navbar-sections { border-top: 1px solid rgba(255,255,255,.12); }
.navbar-sections-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.navbar-sections-inner::-webkit-scrollbar { display: none; }
.navbar-sections-inner a {
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 1rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.navbar-sections-inner a:hover,
.navbar-sections-inner a.active {
  color: #fff;
  border-bottom-color: var(--color-accent);
}

/* ── LAYOUT ── */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

/* ── TAG (categoría) ── */
.tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: .6rem;
}
.tag:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #111;
}
.hero-img-wrap { display: block; }
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: .82;
  transition: opacity .3s;
}
.hero:hover .hero-img-wrap img { opacity: .75; }
.hero-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 60%, transparent 100%);
}
.hero-body h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .6rem;
}
.hero-body h1 a { color: #fff; }
.hero-body h1 a:hover { text-decoration: underline; }
.hero-resumen { color: rgba(255,255,255,.82); font-size: .95rem; margin-bottom: .6rem; line-height: 1.4; }
.hero-body time { color: rgba(255,255,255,.6); font-size: .78rem; }

@media (max-width: 640px) {
  .hero-img-wrap img { height: 280px; }
  .hero-body { padding: 1.5rem 1rem 1rem; }
}

/* ── EDITORIAL GRID ── */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 860px) { .editorial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .editorial-grid { grid-template-columns: 1fr; } }

/* ── CARD ── */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.13); transform: translateY(-2px); }

.card-img-wrap { display: block; overflow: hidden; }
.card-img-wrap img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform .35s;
}
.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body { padding: 1rem 1rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.card-body h2 { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.3; font-weight: 700; }
.card-body h2 a { color: #111; }
.card-body h2 a:hover { color: var(--color-accent); }
.card-resumen { font-size: .85rem; color: #555; line-height: 1.45; flex: 1; }
.card-body time { font-size: .75rem; color: #aaa; margin-top: auto; }

.empty-msg { grid-column: 1/-1; text-align: center; padding: 4rem; color: #999; font-size: 1.1rem; }

/* ── PAGINACIÓN ── */
.paginacion {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.paginacion a {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: .88rem;
  color: #444;
  font-weight: 600;
  transition: all .15s;
}
.paginacion a:hover, .paginacion a.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.pag-arrow { font-size: 1.1rem; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 130px; }

.widget {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 1rem;
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-primary);
}
.widget-item {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid #f2f2f2;
  transition: background .15s;
}
.widget-item:last-child { border-bottom: none; }
.widget-item:hover { background: #fafafa; }
.widget-item img { width: 64px; height: 48px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.widget-item div { flex: 1; min-width: 0; }
.widget-item span { display: block; font-size: .83rem; font-weight: 600; color: #222; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.widget-item time { display: block; font-size: .72rem; color: #bbb; margin-top: .2rem; }

/* ── ARTÍCULO INDIVIDUAL ── */
.article-full { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.07); }

.article-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.article-header { padding: 2rem 2.5rem 1.5rem; border-bottom: 1px solid #f0f0f0; }
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: .5rem 0 .75rem;
  color: #111;
}
.article-lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 1rem;
  font-style: italic;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.article-meta time { font-size: .82rem; color: #aaa; }

.share-btns, .share-final { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.share-final { padding: 1.5rem 2.5rem; border-top: 1px solid #f0f0f0; font-size: .88rem; color: #888; }
.share-btns a, .share-final a {
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 20px;
  color: #fff;
  letter-spacing: .03em;
}
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-tw { background: #000; }
.share-btns a:hover, .share-final a:hover { opacity: .85; }

.article-body {
  padding: 2rem 2.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
}
.article-body p { margin-bottom: 1.25rem; }

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
  padding: 0 2.5rem 2rem;
}
.article-gallery figure { border-radius: 6px; overflow: hidden; }
.article-gallery img { width: 100%; height: 160px; object-fit: cover; transition: transform .3s; }
.article-gallery figure:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .article-header, .article-body, .share-final { padding-left: 1rem; padding-right: 1rem; }
  .article-gallery { padding-left: 1rem; padding-right: 1rem; }
}

/* ── FOOTER ── */
.footer { background: var(--color-primary); color: rgba(255,255,255,.7); margin-top: 3rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 1.25rem 2rem;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; } }

.brand-name-footer { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #fff; display: block; margin-bottom: .4rem; }
.footer-brand p { font-size: .85rem; line-height: 1.5; }

.footer-cats { display: flex; flex-direction: column; gap: .4rem; }
.footer-cats strong { color: rgba(255,255,255,.9); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.footer-cats a { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-cats a:hover { color: #fff; }

.footer-extra { display: flex; flex-direction: column; gap: .5rem; }
.rss-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #f26522;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 4px;
  width: fit-content;
}
.rss-link:hover { opacity: .88; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: .85rem 1.25rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}


/* ═══════════════════════════════════════════════════
   BANNERS — Tamaños IAB estándar
   ═══════════════════════════════════════════════════ */

/* Header: 728×90 desktop / 320×50 mobile */
.banner-header {
  min-height: 90px;
  max-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0ee;
  overflow: hidden;
}
.banner-header ins,
.banner-header iframe,
.banner-header img { max-width: 728px; max-height: 90px; }

@media (max-width: 768px) {
  .banner-header { min-height: 50px; max-height: 50px; }
  .banner-header ins,
  .banner-header iframe,
  .banner-header img { max-width: 320px; max-height: 50px; }
}

/* Sidebar: 300×250 */
.banner-sidebar {
  width: 300px;
  min-height: 250px;
  max-height: 250px;
  background: #f0f0ee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-sidebar ins,
.banner-sidebar iframe,
.banner-sidebar img { width: 300px; height: 250px; }

/* Between news: 728×90 desktop / 300×250 mobile */
.banner-inline {
  width: 100%;
  background: #f0f0ee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.banner-inline ins,
.banner-inline iframe,
.banner-inline img { max-width: 728px; max-height: 90px; }

@media (max-width: 768px) {
  .banner-inline { min-height: 250px; }
  .banner-inline ins,
  .banner-inline iframe,
  .banner-inline img { width: 300px; height: 250px; max-width: 300px; max-height: 250px; }
}

/* In-article: 300×250 — se centra dentro del cuerpo */
.banner-in-article {
  width: 300px;
  height: 250px;
  background: #f0f0ee;
  border-radius: 6px;
  overflow: hidden;
  margin: 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* En mobile: sidebar oculto → banners sidebar van al flujo principal */
@media (max-width: 960px) {
  .banner-sidebar {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}


/* ═══════════════════════════════════════════════════
   MOBILE UI/UX — Mejoras generales
   ═══════════════════════════════════════════════════ */

/* Navbar mobile: secciones con scroll horizontal */
@media (max-width: 768px) {
  .navbar-brand-row { padding: .6rem 1rem; }
  .brand-name { font-size: 1.5rem; }
  .brand-logo { height: 36px; }
  .navbar-sections-inner a { padding: .5rem .75rem; font-size: .75rem; }
  .navbar-top { display: none; } /* oculta fecha y redes en mobile */
}

/* Hero mobile */
@media (max-width: 640px) {
  .hero-body h1 { font-size: 1.3rem; }
  .hero-body { padding: 1rem .75rem .75rem; }
}

/* Cards: en mobile son más compactas */
@media (max-width: 520px) {
  .card-img-wrap img { height: 160px; }
  .card-body { padding: .75rem; }
  .card-body h2 { font-size: .95rem; }
}

/* Artículo individual mobile */
@media (max-width: 640px) {
  .article-header h1 { font-size: 1.35rem; }
  .article-lead { font-size: .95rem; }
  .article-body { font-size: .95rem; line-height: 1.7; }
  .article-gallery { grid-template-columns: repeat(2, 1fr); }
  .share-btns { gap: .35rem; }
  .share-btns a { padding: .3rem .65rem; font-size: .72rem; }
}

/* Footer mobile */
@media (max-width: 640px) {
  .footer-inner { gap: 1.5rem; padding-top: 1.5rem; }
  .footer-cats { flex-direction: row; flex-wrap: wrap; gap: .35rem .75rem; }
  .footer-cats a { font-size: .8rem; }
}

/* Touch targets mínimo 44px en mobile */
@media (max-width: 768px) {
  .navbar-sections-inner a,
  .paginacion a,
  .tag { min-height: 44px; display: inline-flex; align-items: center; }
}


/* ═══════════════════════════════════════════════════
   SISTEMA DE FOTOS EDITORIAL
   Convención de tamaños:
     foto.jpg         → original (hero full-width, lightbox)
     foto_medium.jpg  → 800px (cards del grid)
     foto_thumb.jpg   → 400px (widgets, relacionadas, galería thumb)
   ═══════════════════════════════════════════════════ */

/* Hero portada e individual — 16:9, imagen original */
.foto-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Cards del grid editorial — 4:3, usa _medium */
.foto-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .3s ease;
}
.card-img-wrap:hover .foto-card { transform: scale(1.04); }

/* Miniaturas: widgets sidebar, notas relacionadas — 1:1, usa _thumb */
.foto-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Foto dentro del cuerpo del artículo — max-width contenida, usa _medium */
.foto-inline {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 1.5rem auto;
}

/* Galería grid — miniaturas que abren lightbox, usa _thumb */
.foto-galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .5rem;
  margin: 1.5rem 0;
}
.foto-galeria-item {
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1;
}
.foto-galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, opacity .2s;
}
.foto-galeria-item:hover img { transform: scale(1.06); opacity: .9; }
.foto-galeria-item::after {
  content: '⤢';
  position: absolute;
  bottom: 4px; right: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  pointer-events: none;
}

/* ─── Lightbox ──────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  animation: lb-in .2s ease;
}
.lightbox.open { display: flex; }
@keyframes lb-in { from { opacity: 0 } to { opacity: 1 } }

.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.lightbox-btn {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-btn:hover { background: rgba(255,255,255,.25); }
.lightbox-counter {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  min-width: 60px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════════════
   MENÚ OVERFLOW — Desktop dropdown + Mobile drawer
   ═══════════════════════════════════════════════════ */

/* ─── Desktop: botón "Más ▾" ──────────────────────── */
.nav-more-btn {
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.8);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 .85rem;
  height: 100%;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .3rem;
  border-left: 1px solid rgba(255,255,255,.08);
  transition: background .2s, color .2s;
}
.nav-more-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.nav-more-btn .arrow { transition: transform .2s; font-size: .65rem; }
.nav-more-btn.open .arrow { transform: rotate(180deg); }

/* Dropdown de categorías ocultas */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.1);
  border-top: none;
  border-radius: 0 0 6px 6px;
  z-index: 500;
  padding: .35rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  animation: dd-in .15s ease;
}
@keyframes dd-in { from { opacity:0; transform:translateY(-4px) } to { opacity:1; transform:translateY(0) } }
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block;
  padding: .5rem 1rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: rgba(255,255,255,.07); color: #fff; }

/* El wrapper de la barra de secciones necesita position:relative para el dropdown */
.navbar-sections { position: relative; }

/* ─── Mobile: botón para abrir drawer ─────────────── */
.nav-drawer-btn {
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  width: 38px; height: 38px;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* se muestra solo en mobile via JS cuando hay overflow */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: auto 6px;
}

/* ─── Drawer mobile: panel desde abajo ────────────── */
.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 800;
}
.nav-drawer-overlay.open { display: block; }

.nav-drawer {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-bg, #fff);
  border-radius: 16px 16px 0 0;
  z-index: 900;
  padding: 1rem 1rem 2rem;
  max-height: 70vh;
  overflow-y: auto;
  animation: drawer-in .25s ease;
}
@keyframes drawer-in { from { transform:translateY(100%) } to { transform:translateY(0) } }
.nav-drawer.open { display: block; }

.nav-drawer-handle {
  width: 36px; height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto .75rem;
}
.nav-drawer-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: .75rem;
}
.nav-drawer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.nav-drawer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .65rem .5rem;
  background: #f5f5f5;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  min-height: 44px;
  transition: background .15s;
}
.nav-drawer-item:hover { background: #ebebeb; }
.nav-drawer-item.active { background: var(--color-accent, #0066FF); color: #fff; }
