/* ============================================================
   CARVO · Estilos base y layout
   Requiere: reset.css, variables.css
   ============================================================ */

/* ---------- Fuentes autoalojadas ---------- */
@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/archivo-black-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Base ---------- */
html {
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: clip;
}

::selection {
  background: var(--c-green);
  color: var(--text-on-green);
}

/* Skip link accesible */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: calc(var(--z-header) + 10);
  padding: 0.75rem 1.25rem;
  background: var(--c-green);
  color: var(--text-on-green);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-cap);
}

.display-xl,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
}

.display-xl { font-size: var(--fs-display-xl); }
.display    { font-size: var(--fs-display); }

.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lead {
  font-size: var(--fs-body-lg);
  color: var(--text-2);
  max-width: 56ch;
}

.text-2 { color: var(--text-2); }
.text-3 { color: var(--text-3); }
.text-green { color: var(--c-green); }

.text-gradient {
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow técnico (mono) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-green);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--c-green);
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: var(--gutter);
}

.section {
  padding-block: var(--space-xl);
  position: relative;
}

.section--tight { padding-block: var(--space-lg); }

.section-head {
  margin-bottom: var(--space-lg);
  max-width: 900px;
}

.section-head .display,
.section-head .h1 {
  margin-top: var(--space-sm);
}

.section-head .lead {
  margin-top: var(--space-md);
}

/* Línea divisoria técnica */
.rule {
  border: none;
  height: 1px;
  background: var(--border);
}

/* ---------- Header ---------- */
.announce {
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--g-brand);
  color: var(--text-on-green);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-inline: 1rem;
  text-align: center;
}

.announce[hidden] { display: none; }

.announce strong { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 11, 13, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(9, 11, 13, 0.9);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-link {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--g-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Progreso de scroll */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--g-brand);
  z-index: 2;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - var(--announce-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 11, 13, 0.55) 0%, rgba(9, 11, 13, 0.15) 35%, rgba(9, 11, 13, 0.82) 78%, var(--c-black) 100%),
    linear-gradient(90deg, rgba(9, 11, 13, 0.6) 0%, rgba(9, 11, 13, 0) 55%);
}

.hero-content {
  padding-block: var(--space-lg) var(--space-md);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.hero-meta .dot { color: var(--c-green); }

.hero-title {
  max-width: 15ch;
}

.hero-title .line { display: block; }

.hero-sub {
  margin-top: var(--space-md);
  max-width: 52ch;
  font-size: var(--fs-body-lg);
  color: var(--text-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--border);
  margin-top: var(--space-lg);
}

.hero-foot .mono { color: var(--text-3); }

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, var(--c-green), transparent);
  animation: hint-drop 2.2s var(--ease-in-out) infinite;
}

/* ---------- Ticker de marcas ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 0.9rem;
  background: var(--bg-elev);
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}

.ticker span {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.ticker span b {
  color: var(--c-green);
  font-weight: 500;
}

/* ---------- Sección servicios (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}

.service-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-green);
}

.service-card--wide { grid-column: span 8; }

.service-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card--wide .service-card-media { aspect-ratio: 21 / 10; }

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
  filter: saturate(0.92);
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
  filter: saturate(1);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
}

.service-card-body .num {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  color: var(--text-3);
  letter-spacing: 0.14em;
}

.service-card-body h3 {
  font-size: var(--fs-h3);
}

.service-card-body p {
  color: var(--text-2);
  font-size: var(--fs-small);
  flex: 1;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--c-green);
}

.service-card-cta svg {
  transition: transform var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-card-cta svg {
  transform: translateX(4px);
}

/* ---------- Diagnóstico (home + página) ---------- */
.diagnostic {
  background: var(--bg-elev);
  border-block: 1px solid var(--border);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.diagnostic-sticky {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.diagnostic-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--space-md);
}

.step-list {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-block: clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-green);
  padding-top: 0.35rem;
}

.step h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--text-2);
  font-size: var(--fs-small);
  max-width: 46ch;
}

/* ---------- Transición híbridos ---------- */
.hybrid-transition {
  text-align: left;
  padding-block: var(--space-xl);
  overflow: clip;
}

.hybrid-transition .q {
  color: var(--text-2);
  font-size: var(--fs-h2);
  font-weight: 500;
  max-width: 30ch;
}

.hybrid-transition .a {
  margin-top: var(--space-md);
  max-width: 16ch;
}

.hybrid-block {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-block: 1px solid var(--border);
}

.hybrid-block .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hybrid-block .bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hybrid-block .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hybrid-block .scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(9, 11, 13, 0.92) 0%, rgba(9, 11, 13, 0.55) 60%, rgba(9, 11, 13, 0.35) 100%);
}

.hybrid-content {
  padding-block: var(--space-xl);
  max-width: 640px;
}

.hybrid-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2rem;
  margin-top: var(--space-md);
}

.hybrid-services li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
  padding-block: 0.4rem;
}

.hybrid-services li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green-lima);
  box-shadow: 0 0 12px rgba(197, 242, 26, 0.8);
}

/* ---------- Proceso ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
  counter-reset: proc;
}

.process-item {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.process-item:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.process-item .num {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  color: var(--c-green);
  letter-spacing: 0.14em;
}

.process-item h3 {
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

.process-item p {
  font-size: var(--fs-small);
  color: var(--text-2);
  margin-top: 0.35rem;
}

/* ---------- Bandas CTA ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--bg-elev);
}

.cta-band .glow {
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(127, 184, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* ---------- Página interior: cabecera ---------- */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: var(--space-xl) var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.page-hero--media { min-height: 52svh; display: flex; align-items: flex-end; }

.page-hero .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero .bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 11, 13, 0.6) 0%, rgba(9, 11, 13, 0.35) 40%, var(--c-black) 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumbs a {
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.breadcrumbs a:hover { color: var(--c-green); }

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-3);
}

.breadcrumbs [aria-current="page"] { color: var(--text-2); }

/* ---------- Layout de contenido de servicio ---------- */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.service-aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.service-aside h2 {
  font-size: var(--fs-h3);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.check-list li {
  display: flex;
  gap: 0.85rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-2);
}

.check-list li:last-child { border-bottom: none; }

.check-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-green);
}

.prose h2 {
  font-size: var(--fs-h2);
  margin-block: var(--space-lg) var(--space-sm);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: var(--fs-h3);
  margin-block: var(--space-md) 0.5rem;
}

.prose p {
  color: var(--text-2);
  margin-bottom: 1rem;
  max-width: 68ch;
}

.prose strong { color: var(--text); }

.prose figure {
  margin-block: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.prose figcaption {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  color: var(--text-3);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding-block: var(--space-lg) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr));
  gap: var(--space-md) var(--gutter);
}

.footer-brand img {
  height: 52px;
  width: auto;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--text-3);
  font-size: var(--fs-small);
  max-width: 34ch;
}

.footer-col h2 {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color var(--dur-fast);
}

.footer-col a:hover { color: var(--c-green); }

.footer-col address {
  font-style: normal;
  color: var(--text-2);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.06em;
  color: var(--text-3);
}

/* ---------- Mapa / contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  color: var(--c-green);
}

.contact-item h3 {
  font-size: 1rem;
}

.contact-item p,
.contact-item address {
  font-style: normal;
  font-size: var(--fs-small);
  color: var(--text-2);
}

/* ---------- Sticky CTA móvil ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(9, 11, 13, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

/* util */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.overflow-guard { overflow-x: clip; }
