/* =====================================================
   JUGENDDESK — Premium Ergonomie- & Technik-Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Farbpalette - Skandinavisch & Modern */
  --farbe-weiss: #ffffff;
  --farbe-hell-1: #f8fafc;
  --farbe-hell-2: #f1f5f9;
  --farbe-slate-1: #e2e8f0;
  --farbe-slate-2: #cbd5e1;
  --farbe-blau-tief: #0f2b48;
  --farbe-blau-hell: #1d4d7d;
  --farbe-koralle: #e06a3b;
  --farbe-koralle-hell: #ff8452;
  --farbe-text: #1e293b;
  --farbe-text-hell: #64748b;
  --farbe-schatten-weich: rgba(15, 43, 72, 0.04);
  --farbe-schatten-stark: rgba(15, 43, 72, 0.08);

  /* Typografie */
  --schrift-titel: 'Space Grotesk', sans-serif;
  --schrift-text: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --radius: 8px;
  --radius-lg: 16px;
  --uebergang: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--schrift-text);
  background: var(--farbe-weiss);
  color: var(--farbe-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- LADE-BILDSCHIRM ---- */
#vorlade {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--farbe-blau-tief);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease-in-out;
}
#vorlade.versteckt { opacity: 0; pointer-events: none; }
.vorlade__ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(224, 106, 59, 0.2);
  border-top-color: var(--farbe-koralle);
  animation: rotieren 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rotieren { to { transform: rotate(360deg); } }

/* ---- OBERE INFOBAR ---- */
.infoleiste {
  background: var(--farbe-blau-tief);
  color: var(--farbe-weiss);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.infoleiste span { color: var(--farbe-koralle-hell); }

/* ---- NAV-KOPF ---- */
.hauptkopf {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--farbe-slate-1);
}
.behaelter { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.kopf-rahmen {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__symbol {
  width: 32px; height: 32px;
  background: var(--farbe-koralle);
  border-radius: var(--radius);
  position: relative;
}
.logo__symbol::before {
  content: ''; position: absolute;
  top: 6px; left: 6px; right: 6px; height: 4px;
  background: var(--farbe-weiss);
  border-radius: 2px;
  transition: var(--uebergang);
}
.logo__text {
  font-family: var(--schrift-titel);
  font-size: 1.45rem; font-weight: 700;
  color: var(--farbe-blau-tief);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.logo__text span { color: var(--farbe-koralle); }

/* Navigations-Links */
.nav__list { display: flex; align-items: center; gap: 0.5rem; }
.nav__eintrag { display: inline-block; }
.nav__link {
  font-size: 0.88rem; font-weight: 600;
  color: var(--farbe-text-hell);
  padding: 8px 16px; border-radius: var(--radius);
  transition: var(--uebergang);
}
.nav__link:hover, .nav__link--aktiv { color: var(--farbe-blau-tief); background: var(--farbe-hell-1); }

/* Hamburger-Schalter (Standardmäßig versteckt) */
.nav-toggle {
  display: none;
}
.nav__knopf {
  font-size: 0.85rem; font-weight: 700;
  color: var(--farbe-weiss);
  background: var(--farbe-koralle);
  padding: 10px 20px; border-radius: var(--radius);
  transition: var(--uebergang);
  border: none; cursor: pointer;
}
.nav__knopf:hover { background: var(--farbe-koralle-hell); transform: translateY(-1px); }

/* ---- HERO SECTION ---- */
.helden-bereich {
  padding: 5rem 0;
  background: radial-gradient(circle at 80% 20%, #f1f5f9 0%, #ffffff 100%);
  border-bottom: 1px solid var(--farbe-slate-1);
}
.helden-raster {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.helden-links { max-width: 580px; }
.helden-kennzeichnung {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224, 106, 59, 0.08);
  color: var(--farbe-koralle);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 1.5rem;
}
.helden-titel {
  font-family: var(--schrift-titel);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--farbe-blau-tief);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.helden-titel em { font-style: normal; color: var(--farbe-koralle); }
.helden-beschreibung {
  font-size: 1.05rem; color: var(--farbe-text-hell);
  line-height: 1.65; margin-bottom: 2.5rem;
}
.helden-aktion { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.schaltflaeche-akzent {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--farbe-koralle); color: var(--farbe-weiss);
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius);
  transition: var(--uebergang);
  box-shadow: 0 4px 14px rgba(224, 106, 59, 0.25);
}
.schaltflaeche-akzent:hover { background: var(--farbe-koralle-hell); transform: translateY(-2px); }
.schaltflaeche-leise {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--farbe-blau-tief);
  font-size: 0.95rem; font-weight: 700;
  padding: 12px 24px; transition: var(--uebergang);
}
.schaltflaeche-leise:hover { color: var(--farbe-blau-hell); transform: translateX(3px); }

/* Helden Statistiken */
.helden-werte {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid var(--farbe-slate-1);
}
.helden-wert-block__zahl {
  font-family: var(--schrift-titel);
  font-size: 2.2rem; font-weight: 700;
  color: var(--farbe-blau-tief);
  line-height: 1;
}
.helden-wert-block__label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--farbe-text-hell);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 6px;
}

/* Helden Bilderseite */
.helden-rechts { position: relative; }
.helden-bild-rahmen {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 40px var(--farbe-schatten-stark);
  border: 1px solid var(--farbe-slate-1);
}
.helden-bild-rahmen img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.preis-karte {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--farbe-blau-tief); color: var(--farbe-weiss);
  padding: 1.2rem 2rem; border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(15, 43, 72, 0.15);
  border-left: 4px solid var(--farbe-koralle);
}
.preis-karte__beschreibung { font-size: 0.65rem; text-transform: uppercase; color: var(--farbe-text-hell); letter-spacing: 0.1em; display: block; margin-bottom: 2px; }
.preis-karte__preis { font-family: var(--schrift-titel); font-size: 1.85rem; font-weight: 700; color: var(--farbe-weiss); }

/* ---- ALLGEMEINE ABSCHNITTE ---- */
.abschnitt { padding: 6.5rem 0; }
.abschnitt--weich { background: var(--farbe-hell-1); }
.abschnitt--blau { background: var(--farbe-blau-tief); color: var(--farbe-weiss); }

.abschnitt-intro { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.abschnitt-intro__kennzeichnung { font-size: 0.8rem; font-weight: 700; color: var(--farbe-koralle); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.8rem; }
.abschnitt-intro__titel { font-family: var(--schrift-titel); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--farbe-blau-tief); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.abschnitt-intro__titel--hell { color: var(--farbe-weiss); }
.abschnitt-intro__beschreibung { font-size: 0.98rem; color: var(--farbe-text-hell); }
.abschnitt-intro__beschreibung--hell { color: rgba(255, 255, 255, 0.6); }

/* ---- DETAILS RASTER (FEATURES) ---- */
.merkmale-raster {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.merkmal-karte {
  background: var(--farbe-weiss);
  padding: 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--farbe-slate-1);
  box-shadow: 0 4px 20px var(--farbe-schatten-weich);
  transition: var(--uebergang);
}
.merkmal-karte:hover { transform: translateY(-4px); box-shadow: 0 12px 30px var(--farbe-schatten-stark); border-color: var(--farbe-slate-2); }
.merkmal-karte__symbol {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(224, 106, 59, 0.08); color: var(--farbe-koralle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.merkmal-karte__titel { font-family: var(--schrift-titel); font-size: 1.22rem; font-weight: 700; color: var(--farbe-blau-tief); margin-bottom: 0.8rem; }
.merkmal-karte__beschreibung { font-size: 0.9rem; color: var(--farbe-text-hell); line-height: 1.6; }

/* ---- PRODUKT REPORT GRID ---- */
.bericht-raster {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.bericht-raster--umgekehrt { direction: rtl; }
.bericht-raster--umgekehrt > * { direction: ltr; }
.bericht-bild-box { position: relative; }
.bericht-bild {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: 0 15px 35px var(--farbe-schatten-stark);
  border: 1px solid var(--farbe-slate-1);
}
.bericht-bild-deko {
  position: absolute; -webkit-transform: translate(25%, 25%); transform: translate(25%, 25%);
  bottom: 0; right: 0; width: 60px; height: 60px;
  background: var(--farbe-koralle); border-radius: var(--radius);
  z-index: -1;
}
.bericht-text h2 {
  font-family: var(--schrift-titel);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--farbe-blau-tief); font-weight: 700;
  margin-bottom: 1.2rem; letter-spacing: -0.02em;
}
.bericht-text h2 span { color: var(--farbe-koralle); }
.bericht-text p { color: var(--farbe-text-hell); font-size: 0.95rem; margin-bottom: 1.2rem; }
.liste-punkte { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.8rem; }
.liste-eintrag { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.92rem; color: var(--farbe-text); }
.liste-eintrag__haken { color: var(--farbe-koralle); font-size: 0.9rem; margin-top: 1px; }
.liste-eintrag strong { color: var(--farbe-blau-tief); }

/* ---- INTERAKTIVE GALERIE ---- */
.galerie-rahmen { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; }
.galerie-hauptbild { aspect-ratio: 16/10; overflow: hidden; }
.galerie-hauptbild img { width: 100%; height: 100%; object-fit: cover; }
.galerie-seitenblock { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.galerie-nebenbild { aspect-ratio: 4/3; overflow: hidden; }
.galerie-nebenbild img { width: 100%; height: 100%; object-fit: cover; transition: var(--uebergang); }
.galerie-nebenbild:hover img { transform: scale(1.05); }

/* ---- SCHRITT ANLEITUNG ---- */
.schritte-raster { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 1rem; }
.schritt-karte { position: relative; padding-top: 2rem; }
.schritt-karte__nummer {
  font-family: var(--schrift-titel); font-size: 3.5rem; font-weight: 700;
  color: rgba(15, 43, 72, 0.06); position: absolute; top: -1.5rem; left: 0;
  line-height: 1;
}
.schritt-karte__titel { font-family: var(--schrift-titel); font-size: 1.1rem; font-weight: 700; color: var(--farbe-blau-tief); margin-bottom: 0.6rem; position: relative; z-index: 2; }
.schritt-karte__beschreibung { font-size: 0.88rem; color: var(--farbe-text-hell); position: relative; z-index: 2; }

/* ---- BEWERTUNGS ABSCHNITT ---- */
.bewertungen-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.bewertung-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.bewertung-box__sterne { color: var(--farbe-koralle-hell); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.bewertung-box__text { font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; font-style: italic; }
.bewertung-box__autor { font-family: var(--schrift-titel); font-size: 0.88rem; font-weight: 700; color: var(--farbe-weiss); }
.bewertung-box__info { font-size: 0.72rem; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }

/* ---- FAQ AKKORDEON ---- */
.fragen-liste { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.frage-karte { background: var(--farbe-weiss); border: 1px solid var(--farbe-slate-1); border-radius: var(--radius); overflow: hidden; transition: var(--uebergang); }
.frage-karte:hover { border-color: var(--farbe-slate-2); }
.frage-schalter {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; font-family: var(--schrift-titel);
  font-size: 1.08rem; font-weight: 600; color: var(--farbe-blau-tief);
  cursor: pointer; text-align: left;
}
.frage-schalter__icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--farbe-hell-1); color: var(--farbe-koralle);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--uebergang);
}
.frage-antwort {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
  padding: 0 2rem; font-size: 0.92rem; color: var(--farbe-text-hell); line-height: 1.7;
}
.frage-karte.offen .frage-antwort { max-height: 300px; padding: 0 2rem 1.5rem; }
.frage-karte.offen .frage-schalter__icon { transform: rotate(45deg); background: var(--farbe-koralle); color: var(--farbe-weiss); }

/* ---- CTA ACTION BAR ---- */
.cta-leiste { background: var(--farbe-koralle); color: var(--farbe-weiss); padding: 5rem 0; text-align: center; }
.cta-leiste__titel { font-family: var(--schrift-titel); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 0.8rem; }
.cta-leiste__text { font-size: 1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; }
.schaltflaeche-dunkel {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--farbe-blau-tief); color: var(--farbe-weiss);
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 32px; border-radius: var(--radius);
  transition: var(--uebergang);
  box-shadow: 0 4px 14px rgba(15, 43, 72, 0.2);
}
.schaltflaeche-dunkel:hover { background: var(--farbe-blau-hell); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.hauptfuss { background: var(--farbe-hell-1); border-top: 1px solid var(--farbe-slate-1); padding: 5rem 0 0; }
.fuss-raster { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; }
.fuss-logo p { font-size: 0.85rem; color: var(--farbe-text-hell); margin-top: 1rem; line-height: 1.7; }
.fuss-spalte h3 {
  font-family: var(--schrift-titel); font-size: 0.85rem; font-weight: 700;
  color: var(--farbe-blau-tief); text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.fuss-links { display: flex; flex-direction: column; gap: 0.6rem; }
.fuss-links a { font-size: 0.88rem; color: var(--farbe-text-hell); transition: var(--uebergang); }
.fuss-links a:hover { color: var(--farbe-koralle); }
.fuss-besitzer { font-size: 0.88rem; color: var(--farbe-text); margin-bottom: 0.4rem; }
.fuss-email { color: var(--farbe-koralle); font-size: 0.88rem; font-weight: 600; }
.fuss-email:hover { color: var(--farbe-koralle-hell); }
.fuss-unterer-boden {
  border-top: 1px solid var(--farbe-slate-1);
  padding: 2rem 0; margin-top: 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--farbe-text-hell);
  flex-wrap: wrap; gap: 0.8rem;
}

/* ---- COOKIE BANNER ---- */
.cookie-kasten {
  display: none; position: fixed; bottom: 24px; right: 24px;
  max-width: 380px; z-index: 8888;
  background: var(--farbe-weiss);
  border: 1px solid var(--farbe-slate-1);
  padding: 1.5rem; border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px var(--farbe-schatten-stark);
}
.cookie-kasten h3 { font-family: var(--schrift-titel); font-size: 1.1rem; color: var(--farbe-blau-tief); margin-bottom: 0.5rem; }
.cookie-kasten p { font-size: 0.82rem; color: var(--farbe-text-hell); line-height: 1.5; }
.cookie-kasten p a { color: var(--farbe-koralle); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.6rem; margin-top: 1rem; }
.cookie-knopf { padding: 8px 16px; border-radius: var(--radius); border: none; cursor: pointer; font-size: 0.82rem; font-weight: 700; font-family: var(--schrift-text); transition: var(--uebergang); }
.cookie-knopf--ja { background: var(--farbe-koralle); color: var(--farbe-weiss); }
.cookie-knopf--ja:hover { background: var(--farbe-koralle-hell); }
.cookie-knopf--nein { background: var(--farbe-hell-2); color: var(--farbe-text-hell); }
.cookie-knopf--nein:hover { background: var(--farbe-slate-1); }

/* ---- SCREEN RESPONSIVE ---- */
@media (max-width: 1024px) {
  .helden-raster { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .helden-links { max-width: 100%; }
  .helden-aktion { justify-content: center; }
  .helden-werte { justify-content: center; }
  .preis-karte { left: 50%; transform: translateX(-50%); bottom: -10px; }
  .bericht-raster, .bericht-raster--umgekehrt { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
  .merkmale-raster { grid-template-columns: 1fr 1fr; }
  .schritte-raster { grid-template-columns: 1fr 1fr; }
  .fuss-raster { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .behaelter { padding: 0 16px; }
  
  /* Mobil-Navigationsleiste / Drawer */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }
  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--farbe-blau-tief);
    position: relative;
    transition: background-color 0.3s ease;
  }
  .hamburger::before,
  .hamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--farbe-blau-tief);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .hamburger::before { top: -8px; }
  .hamburger::after { top: 8px; }
  
  .nav-toggle.offen .hamburger {
    background-color: transparent;
  }
  .nav-toggle.offen .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle.offen .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .nav__list {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 30px rgba(15, 43, 72, 0.15);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .nav__list.offen {
    right: 0;
  }
  .nav__eintrag {
    width: 100%;
    text-align: center;
  }
  .nav__link {
    display: block;
    font-size: 1.1rem;
    padding: 12px;
  }
  .nav__knopf {
    display: inline-block;
    width: 80%;
    text-align: center;
  }

  /* Responsive Typografie & Spacing */
  .helden-bereich {
    padding: 3rem 0;
  }
  .helden-titel {
    font-size: clamp(1.6rem, 7.5vw, 2.3rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .helden-beschreibung {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }
  .helden-links {
    padding: 0 8px;
  }
  .helden-werte {
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .helden-wert-block {
    min-width: 90px;
    text-align: center;
  }
  .helden-wert-block__zahl {
    font-size: 1.8rem;
  }
  .helden-wert-block__label {
    font-size: 0.68rem;
  }

  .merkmale-raster, .bewertungen-raster, .schritte-raster { grid-template-columns: 1fr; }
  .fuss-raster { grid-template-columns: 1fr; }
  .fuss-unterer-boden { flex-direction: column; text-align: center; }
}
