/* =====================================================================
   COSTA LUZ HUELVA — Transportes Costaluz Huelva, S.L.
   Hoja de estilos principal (sitio estático, sin dependencias externas)
   ===================================================================== */

/* ---------- Variables de tema ---------- */
:root {
  --c-primary: #0d2b52;      /* azul marino corporativo */
  --c-primary-2: #164a8a;    /* azul medio */
  --c-accent: #f5a623;       /* ámbar (logística) */
  --c-accent-dark: #d98a06;
  --c-text: #1f2933;
  --c-muted: #5b6b7b;
  --c-bg: #ffffff;
  --c-bg-alt: #f4f7fb;
  --c-border: #e2e8f0;
  --c-white: #ffffff;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(13, 43, 82, .08);
  --shadow-lg: 0 18px 50px rgba(13, 43, 82, .16);
  --container: 1160px;
  --header-h: 84px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ligero ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-primary-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-accent-dark); }
h1, h2, h3, h4 { line-height: 1.2; color: var(--c-primary); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--c-accent); color: #3a2600; }
.btn-primary:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--c-primary); }
.btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: #fff; }

/* ---------- Cabecera / navegación ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 52px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-text strong { color: var(--c-primary); font-size: 1.05rem; letter-spacing: .5px; }
.brand .brand-text span { color: var(--c-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; }

.menu { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.menu a {
  display: block; padding: .6rem .9rem; border-radius: var(--radius-sm);
  color: var(--c-primary); font-weight: 600; font-size: .93rem; letter-spacing: .3px;
}
.menu a:hover { background: var(--c-bg-alt); color: var(--c-primary-2); }
.menu a.active { color: var(--c-accent-dark); }
.menu a.active::after {
  content: ""; display: block; height: 3px; border-radius: 3px;
  background: var(--c-accent); margin-top: 4px;
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
}
.nav-toggle span { display: block; height: 3px; background: var(--c-primary); border-radius: 3px; margin: 5px 0; transition: .3s; }

/* ---------- Hero portada ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(rgba(9,25,48,.72), rgba(9,25,48,.72)), url("../img/hero-1.jpg") center/cover no-repeat;
}
.hero h1 { color: #fff; margin-bottom: .4em; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 720px; margin: 0 auto 2rem; color: #eaf1fb; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Hero interior de página ---------- */
.page-hero {
  position: relative; color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(rgba(9,25,48,.78), rgba(9,25,48,.6)), url("../img/hero-2.jpg") center/cover no-repeat;
}
.page-hero h1 { color: #fff; margin: 0; }
.breadcrumb { font-size: .85rem; color: #cdd9ea; margin-bottom: .6rem; }
.breadcrumb a { color: #cdd9ea; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Secciones ---------- */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px;
  font-size: .78rem; font-weight: 700; color: var(--c-accent-dark); margin-bottom: .6rem;
}
.section-head p { color: var(--c-muted); font-size: 1.08rem; }

/* ---------- Rejillas y tarjetas ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px; margin-bottom: 1rem;
  display: grid; place-items: center; background: rgba(245,166,35,.15); color: var(--c-accent-dark);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--c-muted); margin: 0; }

/* Split (texto + imagen) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split .eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px;
  font-size: .78rem; font-weight: 700; color: var(--c-accent-dark); margin-bottom: .6rem;
}

/* Lista con checks */
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: .7rem; color: var(--c-text); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/70% no-repeat;
}

/* Franja de estadísticas */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats .num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--c-accent); line-height: 1; }
.stats .label { color: #cdd9ea; font-size: .95rem; margin-top: .4rem; }
.stats-band { background: var(--c-primary); color: #fff; }
.stats-band h2 { color: #fff; }

/* CTA final */
.cta-band { background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbe6f5; max-width: 620px; margin: 0 auto 2rem; }

/* Galería */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.gallery img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(9,25,48,.85)); color: #fff; font-weight: 600;
}

/* Noticias */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.8rem; }
.news-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card img { height: 210px; width: 100%; object-fit: cover; }
.news-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-card time { font-size: .82rem; color: var(--c-accent-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.news-card h3 { margin: .5rem 0 .6rem; }
.news-card p { color: var(--c-muted); flex: 1; }

/* Artículo (detalle de noticia) */
.article { max-width: 820px; margin: 0 auto; }
.article img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.5rem 0; }
.article .meta { color: var(--c-muted); font-size: .9rem; margin-bottom: 1.5rem; }

/* Documentos */
.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.doc-item {
  display: flex; align-items: center; gap: 1.2rem;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.doc-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.doc-item .doc-icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 10px; background: rgba(245,166,35,.15); color: var(--c-accent-dark); display: grid; place-items: center; }
.doc-item .doc-info { flex: 1; }
.doc-item .doc-info strong { display: block; color: var(--c-primary); }
.doc-item .doc-info span { font-size: .85rem; color: var(--c-muted); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-item .info-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--c-primary); color: #fff; display: grid; place-items: center; }
.info-item h4 { margin: 0 0 .2rem; font-size: 1rem; }
.info-item p { margin: 0; color: var(--c-muted); }
.info-item a { color: var(--c-muted); }
.info-item a:hover { color: var(--c-accent-dark); }

form.contact-form { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--c-primary); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  font: inherit; color: var(--c-text); background: #fbfdff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-primary-2); box-shadow: 0 0 0 3px rgba(22,74,138,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--c-muted); margin-top: .8rem; }

/* Tarjeta de contacto directo (teléfono + email) */
.contact-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.contact-card h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.contact-card > p { color: var(--c-muted); }
.contact-actions { display: grid; gap: 1rem; margin: 1.6rem 0 1.2rem; }
.btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem 1.6rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7f6ec; color: #1a7f3c; border: 1px solid #b7e4c6; }
.form-status.err { background: #fdecec; color: #b02a2a; border: 1px solid #f3c0c0; }
.contact-form.sending button[type="submit"] { opacity: .6; pointer-events: none; }

.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 2.5rem; }

/* Mapa bajo consentimiento (cookies de terceros) */
.map-consent { margin-top: 2.5rem; min-height: 340px; border-radius: var(--radius); box-shadow: var(--shadow);
  background: var(--c-bg-alt); border: 1px dashed var(--c-border);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.map-consent-inner { max-width: 440px; }
.map-consent .map-ic { width: 46px; height: 46px; color: var(--c-accent-dark); margin: 0 auto .9rem; }
.map-consent p { color: var(--c-muted); font-size: .95rem; margin: 0 0 1rem; }
.map-consent .form-note { margin-top: .9rem; }

/* Enlaces legales en el pie */
.footer-legal { display: block; margin-top: .6rem; font-size: .85rem; }
.footer-legal a { color: #a9bad2; }
.footer-legal a:hover { color: var(--c-accent); }

/* ---------- Texto largo / prosa ---------- */
.prose { max-width: 760px; }
.prose.center { margin-left: auto; margin-right: auto; }
.prose p { color: var(--c-text); font-size: 1.05rem; }
.lead-xl { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--c-muted); }

/* ---------- Bloque de servicio detallado ---------- */
.service {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid var(--c-border);
}
.service:last-child { border-bottom: 0; }
.service.reverse .service-media { order: -1; }
.service-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.service .tag {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(245,166,35,.15);
  color: var(--c-accent-dark); font-weight: 700; font-size: .78rem; text-transform: uppercase;
  letter-spacing: 1.5px; padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
}
.service h3 { font-size: 1.6rem; }

/* ---------- Proceso por pasos ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--c-primary); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(13,43,82,.25);
}
.step h4 { margin: 0 0 .4rem; }
.step p { color: var(--c-muted); margin: 0; font-size: .95rem; }

/* ---------- Sectores ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.sector {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.3rem;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); box-shadow: var(--shadow);
  font-weight: 600; color: var(--c-primary); transition: transform .2s, box-shadow .2s;
}
.sector:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sector svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--c-accent-dark); }

/* ---------- Distintivos / autorizaciones ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem;
  background: var(--c-bg-alt); border: 1px solid var(--c-border); border-radius: 999px;
  font-weight: 600; font-size: .9rem; color: var(--c-primary);
}
.badge svg { width: 18px; height: 18px; color: var(--c-accent-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  margin-bottom: 1rem; box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.2rem 1.5rem; font-weight: 700; color: var(--c-primary);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--c-accent-dark); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.3rem; margin: 0; color: var(--c-muted); }

/* ---------- Callout ---------- */
.callout {
  background: var(--c-bg-alt); border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm); padding: 1.3rem 1.6rem; margin: 1.6rem 0; color: var(--c-text);
}
.callout strong { color: var(--c-primary); }

/* ---------- Franja de logos / confianza ---------- */
.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mini-feature { display: flex; gap: 1rem; align-items: flex-start; }
.mini-feature .mf-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(245,166,35,.15); color: var(--c-accent-dark); display: grid; place-items: center; }
.mini-feature h4 { margin: 0 0 .25rem; font-size: 1.05rem; }
.mini-feature p { margin: 0; color: var(--c-muted); font-size: .95rem; }

@media (max-width: 900px) {
  .service { grid-template-columns: 1fr; }
  .service.reverse .service-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mini-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMACIONES (entrada por scroll + micro-interacciones)
   Progressive enhancement: solo se activan si hay JS. Si el JS
   no carga, el contenido se muestra normal (nunca queda oculto).
   Se desactivan si el usuario pide "menos movimiento".
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Sombra sutil de la cabecera al hacer scroll */
.site-header.scrolled { box-shadow: 0 6px 26px rgba(13,43,82,.10); }

/* Entrada del hero al cargar */
.hero .reveal { transition-duration: .8s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Pie de página ---------- */
.site-footer { background: var(--c-primary); color: #c7d4e6; padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.site-footer p { color: #a9bad2; margin: 0 0 .6rem; }
.footer-brand img { height: 54px; margin-bottom: 1rem; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #a9bad2; }
.footer-links a:hover { color: var(--c-accent); }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; color: #a9bad2; list-style: none; }
.footer-contact { padding: 0; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .85rem; text-align: center; color: #8ea3c2; }
.footer-bottom a { color: #a9bad2; }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: .5rem 1rem 1rem;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform .3s ease; z-index: 90;
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: .9rem .6rem; border-bottom: 1px solid var(--c-border); }
  .menu a.active::after { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
