/* de.css — foaia de stil a sitului german. Un singur fișier, zero dependențe,
 * zero cereri către terți (§5 din brief: fără CDN, deci fără banner de cookie).
 *
 * Ordinea: fonturi → tokenuri → reset → tipografie → șablon (nav/footer) →
 * vocabularul de secțiuni din _interfata.md → utilitare → media queries.
 *
 * Contrastele scrise în comentarii sunt CALCULATE (formula WCAG 2.1 pe sRGB),
 * nu estimate din ochi. Regula pe care o impun: --akzent (#D9942B) are 2,39:1
 * pe fundalul cald și NU duce text — nici mare. Are voie doar: fundal de buton
 * (cerneala pe el dă 7,23:1), bordură, punct, linie. Pentru text chihlimbar
 * există --akzent-text, derivat mai închis.
 */

/* ── Fonturi auto-găzduite (OFL; fișierele și licențele în assets/fonts/) ──── */
/* Lora e variabilă 400–700: un singur fișier acoperă titlul normal și semibold. */
@font-face {
  font-family: 'Lora';
  src: url('/de/assets/fonts/lora-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/de/assets/fonts/lora-italic-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/de/assets/fonts/poppins-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/de/assets/fonts/poppins-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/de/assets/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* Fonturile de rezervă, ajustate ca să ocupe ACELAȘI spațiu ca originalul cât
 * timp fontul real se descarcă (font-display: swap ⇒ prima vopsire e cu rezerva).
 * Fără ajustare, schimbul mută textul și strică CLS-ul exact în fereastra LCP.
 * Valorile size-adjust sunt MĂSURATE în browser (lățimea aceluiași text redat cu
 * fontul real vs. cu rezerva, la aceeași dimensiune) — vezi README, secțiunea
 * „Fonturi". ascent/descent-override sunt din metrica declarată a fonturilor
 * (unitsPerEm 1000: Lora 1006/-286, Poppins 1050/-350). */
@font-face {
  font-family: 'Lora Fallback';
  src: local('Georgia'), local('Times New Roman');
  size-adjust: 103.4%;   /* măsurat: Lora e 103,4 % din lățimea Georgia */
  ascent-override: 100.6%;
  descent-override: 28.6%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Poppins Fallback';
  src: local('Arial'), local('Helvetica');
  size-adjust: 110.8%;   /* măsurat: Poppins e 110,8 % din lățimea Arial */
  ascent-override: 105%;
  descent-override: 35%;
  line-gap-override: 0%;
}

/* ── Tokenuri ─────────────────────────────────────────────────────────────── */
:root {
  --hg: #FAF7F2;          /* fundal cald */
  --tinte: #171310;       /* cerneală — 17,28:1 pe --hg */
  --akzent: #D9942B;      /* chihlimbar — 2,39:1 pe --hg ⇒ NICIODATĂ text pe deschis */
  --akzent-text: #8C5A0D; /* chihlimbar închis pentru text — 5,48:1 pe --hg */
  --akzent-hell: #E0A94A; /* chihlimbar deschis, pe secțiuni întunecate — 8,74:1 pe --tinte */

  /* Identificatori de modul. Folosiți DOAR ca bordură/etichetă/punct, dar aleși
   * oricum peste 4,5:1 pe fundal deschis, ca eticheta de text să fie lizibilă. */
  --teal: #2E6B63;        /* 5,78:1 pe --hg */
  --pflaume: #5C4470;     /* 7,81:1 pe --hg */
  --kakao: #6B4A32;       /* 7,41:1 pe --hg */
  --terracotta: #9A4A2E;  /* 5,79:1 pe --hg */

  --sub: #5A524B;         /* text secundar — 7,16:1 pe --hg */
  --hg-dim: #C9BEB2;      /* text secundar pe întuneric — 10,11:1 pe --tinte */
  --linie: #E3DACD;       /* linii și borduri (non-text, contrast irelevant) */
  --karte: #FFFFFF;

  --serif: 'Lora', 'Lora Fallback', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', 'Poppins Fallback', Arial, Helvetica, sans-serif;

  --wrap: 68rem;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 10px;
}

/* ── Reset scurt ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hg);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:where(main) a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* Focus vizibil peste tot, inclusiv pe elementele care își pierd conturul nativ. */
:focus-visible {
  outline: 3px solid var(--akzent-text);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Tipografie ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.15rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; max-width: 62ch; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; max-width: 62ch; }
li { margin-bottom: 0.35em; }
strong { font-weight: 600; }
small { font-size: 0.85em; }

.etikett {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--akzent-text);
  margin-bottom: 0.6rem;
}
.lead { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--tinte); max-width: 54ch; }
.sub { color: var(--sub); font-size: 0.95rem; }
.quelle { color: var(--sub); font-size: 0.82rem; line-height: 1.5; max-width: 62ch; }

/* Cifra mare din hero. tabular-nums ține cifrele pe aceeași lățime — altfel
 * numărul „sare" lateral când se schimbă (contează la calculator). */
.zahl {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0.2em 0 0.15em;
  color: var(--tinte);
}
.zahl small { display: block; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--sub); letter-spacing: 0; margin-top: 0.5rem; }

.hinweis {
  border-left: 3px solid var(--akzent);
  background: rgba(217, 148, 43, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  margin: 1.2rem 0;
  max-width: 62ch;
}
.hinweis p:last-child { margin-bottom: 0; }

/* ── Butoane ──────────────────────────────────────────────────────────────── */
.knopf {
  display: inline-block;
  background: var(--akzent);
  color: var(--tinte);           /* 7,23:1 pe chihlimbar */
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--akzent);
  transition: background-color 0.15s ease;
}
.knopf:hover { background: #C4831F; border-color: #C4831F; }
.knopf--linie { background: transparent; color: var(--tinte); border-color: var(--tinte); }
.knopf--linie:hover { background: var(--tinte); color: var(--hg); }
.knopf--klein { padding: 0.5rem 1rem; font-size: 0.9rem; }
.aktionen { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }

/* ── Șablon: skip-link, antet, subsol ─────────────────────────────────────── */
.sprung {
  position: absolute; left: 0.5rem; top: -4rem; z-index: 20;
  background: var(--tinte); color: var(--hg);
  padding: 0.7rem 1.1rem; border-radius: var(--radius); text-decoration: none;
  transition: top 0.15s ease;
}
.sprung:focus { top: 0.5rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gap); }

.topo {
  border-bottom: 1px solid var(--linie);
  background: var(--hg);
  position: sticky; top: 0; z-index: 10;
}
.topo__inhalt { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 62px; }
.topo__marke {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  text-decoration: none; letter-spacing: -0.01em;
}
.topo__nav { display: none; align-items: center; gap: 1.15rem; }
.topo__nav a { text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.topo__nav a:not(.knopf):hover { color: var(--akzent-text); text-decoration: underline; text-underline-offset: 4px; }

/* Meniul mobil: <details> nativ. Fără JS ⇒ merge și dacă scriptul e blocat. */
.menue > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.7rem; border: 1px solid var(--linie); border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
}
.menue > summary::-webkit-details-marker { display: none; }
.menue__striche { width: 18px; height: 2px; background: var(--tinte); position: relative; display: block; }
.menue__striche::before, .menue__striche::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--tinte);
}
.menue__striche::before { top: -6px; }
.menue__striche::after { top: 6px; }
.menue[open] > summary { border-color: var(--tinte); }
.menue__liste {
  position: absolute; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 0.2rem;
  background: var(--hg); border-bottom: 1px solid var(--linie);
  padding: 0.6rem var(--gap) 1.1rem;
  box-shadow: 0 12px 24px rgba(23, 19, 16, 0.08);
}
.menue__liste a { text-decoration: none; padding: 0.6rem 0; font-weight: 500; border-bottom: 1px solid var(--linie); }
.menue__liste a.knopf { text-align: center; margin-top: 0.7rem; border-bottom: 2px solid var(--akzent); }

.fuss { background: var(--tinte); color: var(--hg-dim); margin-top: 4rem; padding: 3rem 0 2rem; font-size: 0.92rem; }
.fuss__raster { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
.fuss__name { font-family: var(--serif); font-size: 1.25rem; color: var(--hg); display: block; margin-bottom: 0.5rem; }
.fuss__spalte { display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
.fuss__spalte .etikett { color: var(--akzent-hell); margin-bottom: 0.3rem; }
.fuss__spalte a { color: var(--hg-dim); text-decoration: none; }
.fuss__spalte a:hover { color: var(--hg); text-decoration: underline; text-underline-offset: 3px; }
.fuss__marke p { color: var(--hg-dim); max-width: 34ch; }
.fuss__recht, .fuss__ende {
  border-top: 1px solid rgba(250, 247, 242, 0.16);
  margin-top: 2rem; padding-top: 1.1rem;
}
.fuss__recht a { color: var(--hg); }
.fuss__ende { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.85rem; margin-top: 1rem; }

/* ── Vocabularul de secțiuni (_interfata.md) ──────────────────────────────── */
main > section { padding: clamp(2.5rem, 7vw, 4.5rem) 0; }
main > section + section { border-top: 1px solid var(--linie); }

.held { padding-top: clamp(2rem, 6vw, 3.5rem); }
.held h1 { margin-bottom: 0.45em; }

.raster h2 + .sub { margin-top: -0.4em; margin-bottom: 1.8rem; }
.karten { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.6rem; }
.karte {
  background: var(--karte);
  border: 1px solid var(--linie);
  border-top: 3px solid var(--akzent);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem;
}
.karte h3 { margin-bottom: 0.4em; }
.karte p { font-size: 0.95rem; margin-bottom: 0.8em; }
.karte a { font-weight: 600; color: var(--akzent-text); text-underline-offset: 3px; }
/* Identificatorii de modul: doar linia de sus și eticheta se colorează. */
[data-modul="kalkulation"] { border-top-color: var(--teal); }
[data-modul="kalkulation"] a { color: var(--teal); }
[data-modul="bestellkanal"] { border-top-color: var(--terracotta); }
[data-modul="bestellkanal"] a { color: var(--terracotta); }
[data-modul="speisekarte"] { border-top-color: var(--kakao); }
[data-modul="speisekarte"] a { color: var(--kakao); }
[data-modul="gaestekontakt"] { border-top-color: var(--pflaume); }
[data-modul="gaestekontakt"] a { color: var(--pflaume); }
[data-modul="marketing"] { border-top-color: var(--akzent); }
[data-modul="marketing"] a { color: var(--akzent-text); }

/* bild — captură + explicație */
.bild .wrap { display: grid; grid-template-columns: 1fr; gap: var(--gap); align-items: center; }
.shot { margin: 0; }
.shot img { border: 1px solid var(--linie); border-radius: var(--radius); background: var(--karte); }
.shot figcaption { color: var(--sub); font-size: 0.86rem; line-height: 1.5; margin-top: 0.7rem; max-width: 52ch; }
/* Telefonul: contur desenat în CSS, fără imagine de ramă (o poză de ramă ar fi
 * un fișier în plus pe traseul LCP pentru zero informație). */
.shot--phone { max-width: 320px; margin-inline: auto; }
.shot--phone img {
  border: 9px solid var(--tinte);
  border-radius: 30px;
  box-shadow: 0 0 0 2px var(--linie), 0 14px 30px rgba(23, 19, 16, 0.14);
}
.shot--phone figcaption { margin-inline: auto; text-align: center; }

/* prosa */
.prosa h3 { margin-top: 1.8em; }
.prosa.dunkel { background: var(--tinte); color: var(--hg); }
.prosa.dunkel h2, .prosa.dunkel h3 { color: var(--hg); }
.prosa.dunkel .etikett { color: var(--akzent-hell); }
.prosa.dunkel .sub, .prosa.dunkel .quelle { color: var(--hg-dim); }
.prosa.dunkel a { color: var(--akzent-hell); }
.prosa.dunkel .hinweis { background: rgba(224, 169, 74, 0.12); border-left-color: var(--akzent-hell); }
.prosa.dunkel + section { border-top: 0; }

/* tabelle */
.tabelle .scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.4rem 0; }
.tabelle table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: 0.94rem; }
.tabelle th, .tabelle td { text-align: left; vertical-align: top; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--linie); }
.tabelle thead th { font-family: var(--sans); font-weight: 600; background: rgba(23, 19, 16, 0.04); border-bottom: 2px solid var(--linie); }
.tabelle td:last-child, .tabelle th:last-child { padding-right: 0.4rem; }
.tabelle tbody tr:hover { background: rgba(23, 19, 16, 0.02); }
.tabelle .zahl-zelle { font-variant-numeric: tabular-nums; white-space: nowrap; }
/* Rândul accentuat (pe /rechtliches: DSGVO). Culoarea NU e singurul semnal —
 * bara din stânga rămâne vizibilă și pentru cine nu distinge nuanța. */
tr.hervorgehoben { background: rgba(217, 148, 43, 0.10); }
tr.hervorgehoben td:first-child { box-shadow: inset 3px 0 0 var(--akzent); font-weight: 600; }

/* ehrlich — ce e gata, ce nu */
.ehrlich .zwei { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1.4rem; }
.ehrlich .zwei > div { background: var(--karte); border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.2rem; }
.ehrlich .zwei > div:first-child { border-left: 3px solid var(--teal); }
.ehrlich .zwei > div:last-child { border-left: 3px solid var(--terracotta); }
.ehrlich ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.ehrlich li { padding-left: 1.4rem; position: relative; font-size: 0.95rem; }
.ehrlich li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.45; }

/* ruf — CTA final */
.ruf { background: var(--tinte); color: var(--hg); }
.ruf h2 { color: var(--hg); }
.ruf p { color: var(--hg-dim); }
.ruf .knopf--linie { color: var(--hg); border-color: var(--hg); }
.ruf .knopf--linie:hover { background: var(--hg); color: var(--tinte); }

/* ── rechner — calculatorul de comision ──────────────────────────────────── */
.rechner { background: var(--karte); }
.rechner__gitter { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1.4rem; }
.rechner__eingaben { display: grid; gap: 1rem; align-content: start; }
.rechner label { display: block; font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
.rechner input, .rechner select {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--sub); border-radius: var(--radius);
  background: var(--hg); color: var(--tinte);
}
.rechner input { font-variant-numeric: tabular-nums; }
.rechner__ergebnis {
  background: var(--hg); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.rechner__zeile {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--linie);
  font-variant-numeric: tabular-nums;
}
.rechner__zeile:last-child { border-bottom: 0; }
.rechner__zeile b { font-weight: 600; white-space: nowrap; }
.rechner__zeile span:first-child { color: var(--sub); font-size: 0.94rem; }
.rechner__summe { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 2px solid var(--akzent); font-size: 1.02rem; }
.rechner__summe b { font-family: var(--serif); font-size: 1.35rem; }
.rechner noscript p { margin-top: 1rem; }

/* ── formular — contact ──────────────────────────────────────────────────── */
.formular form { display: grid; gap: 1.05rem; max-width: 34rem; margin-top: 1.4rem; }
.formular label { display: block; font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
.formular input, .formular select, .formular textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--sub); border-radius: var(--radius);
  background: var(--karte); color: var(--tinte);
}
.formular textarea { min-height: 8rem; resize: vertical; }
.formular__zustimmung { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.93rem; line-height: 1.5; }
.formular__zustimmung input { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; margin-top: 0.2rem; }
.formular button { justify-self: start; cursor: pointer; font-family: inherit; }
/* Honeypot: ascuns pentru om și pentru cititorul de ecran (wrapperul are și
 * aria-hidden), vizibil doar pentru robotul care completează orbește. NU se
 * folosește display:none — unii roboți sar peste câmpurile ascunse așa. */
.honig {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Mesajele de după trimitere: ascunse până când URL-ul le țintește (#danke /
 * #fehler). Zero JS — serverul face 303 către ancora potrivită. */
#danke, #fehler { display: none; }
#danke:target, #fehler:target { display: block; }
#fehler { border-left-color: var(--terracotta); background: rgba(154, 74, 46, 0.08); }

/* Sub 720 px tabelul se STIVUIEȘTE. Motivul e măsurat, nu estetic: pe 390 px,
 * din tabelul de prețuri se vedea doar coloana „Angebot", iar „Einrichtung" și
 * „Pro Monat" rămâneau după scroll orizontal — adică prețurile erau invizibile
 * exact pentru publicul care citește pe telefon. La fel pe /rechtliches, unde
 * dispărea coloana „Wo Gustora steht", inclusiv rândul DSGVO accentuat.
 * Fiecare rând devine un card, iar eticheta coloanei se ia din data-th. */
@media (max-width: 720px) {
  .tabelle .scroll { overflow-x: visible; margin: 1.2rem 0; }
  .tabelle table { min-width: 0; }
  /* Antetul iese din pagină, dar RĂMÂNE în arborele de accesibilitate: cu
   * display:none, cititorul de ecran ar pierde legătura header–celulă. */
  .tabelle thead {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  }
  .tabelle tr {
    display: block;
    background: var(--karte);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin-bottom: 0.9rem;
  }
  .tabelle th[scope="row"], .tabelle td { display: block; padding: 0; border-bottom: 0; }
  .tabelle th[scope="row"] {
    font-family: var(--serif); font-size: 1.08rem; font-weight: 600;
    line-height: 1.25; margin-bottom: 0.75rem; background: none;
  }
  .tabelle td + td { margin-top: 0.9rem; }
  .tabelle td[data-th]::before {
    content: attr(data-th);
    display: block;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--akzent-text);
    margin-bottom: 0.15rem;
  }
  .tabelle tbody tr:hover { background: var(--karte); }
  /* Rândul accentuat își păstrează semnalul, dar ca margine de card — bara din
   * stânga celulei nu mai are unde să stea când celulele sunt blocuri. */
  tr.hervorgehoben { background: rgba(217, 148, 43, 0.10); border-color: var(--akzent); }
  tr.hervorgehoben td:first-child { box-shadow: none; }
}

/* ── Media queries ───────────────────────────────────────────────────────── */
@media (min-width: 40rem) {
  .karten { grid-template-columns: repeat(2, 1fr); }
  .ehrlich .zwei { grid-template-columns: repeat(2, 1fr); }
  .rechner__gitter { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 56rem) {
  .topo__nav { display: flex; }
  .menue { display: none; }
  .karten { grid-template-columns: repeat(3, 1fr); }
  .bild .wrap { grid-template-columns: 1.15fr 1fr; }
  .bild--umgekehrt .shot { order: 2; }
  .fuss__raster { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
