  :root{
    --wrap:1100px;
    --px:40px;
    --px-m:30px;
    --radius:12px;
    --font-big:clamp(2rem, 1.4vw + 1.5rem, 3rem);
    --font-medium:20px;

    --header-h: 0px;
    --topbar-h: 0px;
    --nav-offset: 0px; /* = header + topbar */


    /* SLBahnen Farben */
    --blue-dark:#2c3e50;
    --blue:#3498db;
    --violett: #8e44ad;
    --red: #d10a0a;

    --blue-hover: #2c3e50;
    --violett-hover: #692a85;
    --red-hover: #990505;

    --blue-sbb:#2d327d;
    --text:#333;

}




  *{box-sizing:border-box}
  html,body{height:100%}

  /* Oberer Puffer für alle Anker-Scrolls (auch bei scrollIntoView) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset, 0px);
}

  body{
    margin:0; background:#f0efef; color:var(--text);
    font-family:'Lexend';
    display:flex; flex-direction:column;
  }
  .wrap{
	  max-width:var(--wrap); 
	  margin-inline:auto; 
	  padding-inline:var(--px);
	}
	
  @media (max-width:768px){
	  .wrap{
		  padding-inline:var(--px-m) !important;
	  } 
	}

  /* Header (bleibt oben) */
  header{  background:var(--blue-dark); color:#fff;
  position:sticky; top:0; z-index:10;}
  .header-inner{display:flex; align-items:center; gap:14px; padding:12px 0}
  .logo{width:auto; height:clamp(4rem, 3vw + 2rem, 7rem)}
  .brand{font-weight:600; font-size:var(--font-big);}

  /* Hellblauer Balken */
  .topbar{  background:var(--blue); color:#fff;
  position:sticky; top:var(--header-h); z-index:9;}
  .topbar-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
  .menu-btn{
    display:flex; align-items:center; gap:10px; background:transparent; color:#fff;
    border:0; padding:0; cursor:pointer; font-weight:700; font-family:'Lexend';
  }
  .hamb{width:24px; height:24px}
  .lang-right{display:flex; gap:10px; align-items:center}
  .lang{padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.35); color:#fff; text-decoration:none}
  .lang--off{text-decoration:line-through; opacity:.7; cursor:not-allowed}

  /* Aufklapp-Panel (gleiche Farbe wie Balken) */

/* Offsets bleiben wie von dir gemessen (per JS mit --nav-offset) */
.nav-panel{
  position: fixed;
  left: 0; right: 0;
  top: var(--nav-offset);                /* startet GENAU unter Header+Topbar */
  background: var(--blue);
  color: #fff;
  z-index: 999;

  /* Scrollt intern, Höhe begrenzt auf freien Viewport */
  max-height: calc(100vh - var(--nav-offset));
  overflow: auto;

  /* Neu: "Aufklappen" ab Panelkante via clip-path */
  clip-path: inset(0 0 100% 0);          /* vollständig eingeklappt */
  opacity: 0;
  transition: clip-path .35s cubic-bezier(.22,.61,.36,1),
              opacity .2s ease;
  will-change: clip-path;

  margin: 0; padding: 0;
}

/* Offen-Zustand: Panel ist vollständig sichtbar */
.nav-panel.is-open{
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

  .panel-inner{padding:12px  16px}

  /* Links linksbündig im Wrap, mit Pfeilen */
  .nav-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px}
  .nav-link{
    display:flex; align-items:center; gap:10px; text-decoration:none; color:#fff; font-weight:800; letter-spacing:.2px;
    padding:12px 0;
  }
  .nav-link .arr{opacity:.9}
  .nav-link:focus-visible{outline:2px solid #fff; outline-offset:2px; border-radius:6px}

  .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 12px 0;
  transition: transform 0.3s ease, color 0.3s ease; /* smooth animation */
}

.nav-link:hover {
  transform: translateX(15px); /* leicht nach rechts schieben */
  color: #f8f8f8; /* optional leicht aufhellen */
}

.nav-link .arr {
  transition: transform 0.5s ease;
}

.nav-link:hover .arr {
  transform: translateX(6px);
}


  main{flex:1 0 auto;}
  .main-inner{
	  padding-inline:10px !important;
	}

  footer{background:var(--blue-dark); color:#fff}
  .footer-inner{padding:14px 0; display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center}
  .footer-links{display:flex; gap:12px; flex-wrap:wrap}
  .footer-links a{color:#fff; text-decoration:underline; text-underline-offset:3px}



/* ===== Beitrag/Hero-Karte (volle Breite, flexible Höhe) ===== */
.post-hero {
  position: relative;
  width: 100%;                       /* nutzt volle Containerbreite */
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: #dfe7f1;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);

  display: flex;                     /* erlaubt, dass Inhalt sich dehnt */
  flex-direction: column;
  justify-content: flex-end;         /* Text bleibt unten */
  min-height: clamp(280px, 45vw, 600px); /* automatische Höhe nach Bildschirm */

	margin-top: 20px;
	margin-bottom: 20px;
}

/* Hintergrundbild füllt Fläche */
.post-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .6s;
}

/* dunkler Verlauf für Lesbarkeit */
.post-hero::after {
display:none;
}


/* Textinhalt unten links */
.post-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,   /* unten dunkler */
    rgba(0,0,0,0.55) 40%,  /* mittlerer Bereich */
    rgba(0,0,0,0.2) 90%,  /* oben fast transparent */
    rgba(0,0,0,0) 100%     /* sanft auslaufend */
	  
  );
	
	}
/* dynamische Schriftgrössen */
.post-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw + 1rem, 3rem);
  line-height: 1.1;
}
.post-hero__subtitle {
  margin: .4rem 0 0;
  font-size: clamp(1rem, 1vw + 0.7rem, 1.3rem);
  opacity: .9;
}

/* Mobile: Element ausblenden */
@media (max-width: 767px) {
  .post-hero__subtitle {
    display: none;
  }
}


/* Button */
.post-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .7rem 1.1rem;
  border-radius: 50px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
    transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

/* Hover/Interaktion */
.post-hero:hover .post-hero__bg{ transform:scale(1.06); filter:saturate(1.05) contrast(1.03); }
.post-hero__cta:hover { background: var(--blue-dark); }



/* ===== Rechtliches ===== */
.legal-hero {
  text-align: center;
  margin: 40px 0;
}
.legal-hero__card {
  background: var(--blue);
  color: #fff;
  padding: clamp(30px, 6vw, 60px);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.legal-hero__subtitle {
  opacity: .9;
  margin-top: .5em;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.legal-card {
  background: #fff;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.legal-card h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  color: var(--blue-dark);
}

details {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 10px 0;
  transition: background .3s ease;
}
details[open] {
  background: #eef6fc;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--blue-dark);
}
.details-body {
  margin-top: .5em;
  font-size: .95rem;
  color: var(--text);
}
.note {
  font-size: .9rem;
  color: #666;
}
.muted {
  font-size: .8rem;
  color: #888;
}





/* Zurück-Link */
.backbar { padding: 16px 0; }
.backlink {
  color: var(--blue-sbb); text-decoration: none; font-weight: 700;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.backlink:hover { border-color: currentColor; }

/* Grid */
.article-page { margin-block: 16px 40px; }
.product-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(16px, 2vw, 32px);
}
@media (max-width: 980px){
  .product-grid { grid-template-columns: 1fr; }
}

/* Galerie */
/* Container */
/* Galerie-Layout */
.gallery {
  display: block;
}

/* Rahmen mit fixer Größe */
.gallery-main {
  position: relative;
  width: 100%;
  max-width: 800px;      /* fixe Breite – du kannst das anpassen */
  height: 500px;         /* fixe Höhe – ebenfalls anpassbar */
  margin: 0 auto;
  border: 0;
  border-radius: var(--radius);
  background: #F0EFEF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Bild immer vollständig sichtbar + Weißrand, wenn nötig */
#prodMain {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  background: #f0efef; /* füllt freie Fläche mit Weiß */

  border-radius: 18px;
}

/* Navigationsleiste: "Glass"-Bar im Bild */
.gallery-bar{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;

  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 999px;

  background: rgba(20, 20, 20, .45);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mitte: Caption + Dots */
.g-mid{
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
}

.g-caption{
  max-width: 100%;
  padding: 0 8px;
  font-size: .85rem;
  line-height: 1.2;
  color: rgba(255,255,255,.92);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pfeile: weniger "klobig", klarer Fokus */
.g-nav{
  height: 36px;
  width: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  display: grid;
  place-items: center;
  transition: transform .12s ease, background-color .2s ease, border-color .2s ease;
}

.g-nav:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.30);
}

.g-nav:active{ transform: none; }

.g-nav:focus-visible{
  outline: 3px solid rgba(255,255,255,.55);
  outline-offset: 2px;
}

/* Punkte: dezenter, aber klar aktiv */
.g-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.g-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: transform .12s ease, background-color .2s ease, width .2s ease;
}

.g-dot:hover{ transform: scale(1.15); }

.g-dot[aria-selected="true"]{
  background: rgba(255,255,255,.95);
  width: 18px;           /* “pill” Effekt fürs aktive Bild */
}

/* Mobile: Caption darf umbrechen */
@media (max-width: 520px){
  .gallery-bar{
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 18px;
    grid-template-columns: 40px 1fr 40px;
  }

  .g-caption{
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}



/* Info-Spalte */
.product-info { display: grid; align-content: start; gap: 14px; }
.product-title { margin: 0; font-size: clamp(1.6rem, 2.1vw, 2.4rem); line-height: 1.1; }

.meta { margin: 8px 0 0; }
.meta > div { display: grid; grid-template-columns: 190px 1fr; gap: 6px 20px; align-items: baseline; }
.meta dt { font-weight: 700; color: var(--text); }
.meta dd { margin: 0; }
.meta .hint { opacity: .75; margin-left: 6px; }

/* Beschreibung */
.product-desc { margin-top: 28px; }
.product-desc h2 { margin: 0 0 8px; font-size: clamp(1.2rem, 1.2vw + 1rem, 1.6rem); }
.product-desc h3 { margin: 18px 0 6px; font-size: 1.05rem; }
.specs { padding-left: 20px; }
.downloads { display:flex; gap:12px; flex-wrap: wrap; margin-top: 10px; }
.dl { padding:6px 10px; background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:8px; text-decoration:none; }


/* Grundlayout */
.statusbar {
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
}

/* Button-Styling */
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  font-family: "Lexend";
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  outline-offset: 3px;
  border: 0;
}

/* Farbvarianten */
.status--preorder { background: var(--blue); }
.status--production { background: var(--blue); }
.status--soldout { background: var(--red); }

.status--preorder:hover { background: var(--blue-hover); }
.status--production:hover { background: var(--blue-hover); }   
.status--soldout:hover { background: var(--red-hover); } 


/* Sharebar */
.sharebar{
  display: grid;
  gap: 8px;
  margin: 16px 0 8px;
  position: relative;
}

/* Share Button */
.share-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Lexend";
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;

  background: #fff;
  color: #1f2937;
  border: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.25s ease;

}

.share-pill:hover{
  background: #f5f5f5;
}

.share-pill:active{
  transform: translateY(0);
}

/* Icon */
.share-icon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Toast */
.share-toast{
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;

  background: rgba(0,0,0,.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease;
}

.share-toast.is-visible{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



.timeline{
  --date-w: 120px;
  --rail-w: 26px;
  --line: var(--blue);
  --dot:  var(--blue);

  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.tl-item{
  display: grid;
  grid-template-columns: var(--date-w) var(--rail-w) 1fr;
  column-gap: 16px;
  align-items: start;
}

.tl-date{
  font-weight: 700;
  opacity: .9;
  text-align: right;
  line-height: 1.2;
}

.tl-rail{
  position: relative;
  min-height: 100%;
}

.tl-rail::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--line);
  border-radius: 999px;
}

/* Perle */
.tl-dot{
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px auto 0;
  background: var(--dot);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}

.tl-content h3{
  margin: 0 0 6px;
  font-size: 1rem;
}
.tl-content p{
  margin: 0;
  opacity: .9;
}

/* Mobile: Datum über den Text, Schiene bleibt links */
@media (max-width: 560px){
  .tl-item{
    grid-template-columns: var(--rail-w) 1fr;
  }
  .tl-date{
    grid-column: 2;
    text-align: left;
    margin-bottom: 6px;
  }
  .tl-rail{
    grid-row: 1 / span 2;
  }
  .tl-content{
    grid-column: 2;
  }
}




/* Kontaktformular – SLBahnen helles Design */
    .contact-card {
      background: #fff;
      border-radius: 18px;
      padding: 18px;
      box-shadow: 0 10px 30px rgba(0,0,0,.06);
      border: 1px solid rgba(0,0,0,.08);
    }

    .contact-form {
      display: grid;
      gap: 12px;
      margin-top: 10px;
    }

    .f-row {
      display: grid;
      gap: 6px;
    }

    .f-label {
      font-weight: 700;
      font-size: .95rem;
    }

    .f-input, .f-select, .f-textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.15);
      background: #F7F7F8;
      padding: 10px 12px;
      font-size: 1rem;
      outline: none;
      transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
      font-family: "Lexend";
    }

    .f-textarea {
      min-height: 140px;
      resize: vertical;
    }

    .f-input:focus, .f-select:focus, .f-textarea:focus {
      background: #fff;
      border-color: rgba(0,0,0,.35);
      box-shadow: 0 0 0 4px rgba(52,152,219,.25); /* orientiert an deinem Türkis */
    }

    .form-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
      margin-top: 6px;
    }

    .btn-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 800;
      border: 0;
      cursor: pointer;
      user-select: none;

      transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.25s ease;
      font-family: "Lexend";
      box-shadow: 0 4px 14px rgba(0,0,0,.12);
      border: 0;

    }

    .btn-primary {
      background: var(--blue);   /* SLBahnen Akzent */
      color: #FFFFFF;

    }

    .btn-primary:hover {
      background: var(--blue-hover);
    }

    .btn-primary:active { transform: none; }

    .btn-secondary {
      background: #fff;
      color: #1f2937;
      
    }

    .btn-secondary:hover {
      background-color: #f5f5f5;
    }

    .hint-small {
      font-size: .9rem;
      color: rgba(0,0,0,.65);
    }

    /* Warnbox / Erfolgbox */
    .notice {
      border-radius: 16px;
      padding: 12px 14px;
      border: 1px solid;
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      margin-top: 12px;
    }

    .notice svg { margin-top: 2px; }

    .notice--error {
      background: rgba(220, 38, 38, .08);
      border-color: rgba(220, 38, 38, .25);
      color: #7F1D1D;
    }

    .notice--success {
      background: rgba(22, 163, 74, .10);
      border-color: rgba(22, 163, 74, .25);
      color: #14532D;
    }

    .notice-title {
      font-weight: 900;
      margin: 0 0 4px;
    }

    .notice-text {
      margin: 0;
      line-height: 1.35;
    }

    /* Honeypot unsichtbar */
    .hp-field {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
    }


    /* Loader Overlay */
.form-loader{
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  z-index: 9999;
}

.form-loader.is-visible{
  display: grid;
}

.form-loader__card{
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 420px;
  width: calc(100% - 32px);
}

.form-loader__text{
  color: rgba(0,0,0,.78);
  line-height: 1.25;
}

.spinner{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,.12);
  border-top-color: rgba(60,190,203,.95); /* SLBahnen Akzent */
  animation: spin .9s linear infinite;
}

@keyframes spin{
  to { transform: rotate(360deg); }
}

/* Button gesperrt */
.btn-pill.is-loading{
  opacity: .75;
  cursor: wait;
  transform: none !important;
  box-shadow: none !important;
}

.btn-pill:disabled{
  opacity: .65;
  cursor: not-allowed;
}


/* =========================================================
   ABOUT – CSS Ergänzungen (Produktseiten-Look, keine "Inseln")
   Datei: /data/css/about.css
   Styles nur für die neuen about-* Klassen aus ueber-uns.php
========================================================= */

/* ---------- Grundtypografie in About ---------- */
.about-lead{
  margin: 10px 0 0;
  line-height: 1.55;
  color: rgba(0,0,0,.75);
  max-width: 68ch;
}

.about-note{
  margin: 10px 0 0;
  font-size: .9rem;
  color: rgba(0,0,0,.55);
}

/* Überschriften (wir lassen product-title unangetastet) */
.about-h2{
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.6rem);
  color: var(--blue-dark);
}
.about-h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--blue-dark);
}

/* ---------- Top-Visual links (wie Galerie: Rahmen + Caption-Bar) ---------- */
.about-visual__frame{
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 300px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;

  /* gleicher "clean" Look wie Galerie */
  background: #F0EFEF;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

@media (max-width: 520px){
  .about-visual__frame{ height: 360px; }
}

.about-visual__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- Actions rechts (Pills wie bei dir) ---------- */
.about-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* eigene About-Buttons: optisch zwischen status-pill und share-pill */
.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-family: "Lexend";
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
  text-decoration: none;

  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.25s ease, border-color .25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.about-btn:active{ transform: none; }

.about-btn--primary{
  background: var(--blue);
  color: #fff;
  border: 0;
}
.about-btn--primary:hover{ background: var(--blue-hover); }

.about-btn--ghost{
  background: rgba(255,255,255,.55); /* nicht "weiss als Insel", eher glasig */
  color: #1f2937;
  border: 1px solid rgba(0,0,0,.10);
}
.about-btn--ghost:hover{
  background: rgba(255,255,255,.70);
  border-color: rgba(0,0,0,.16);
}

/* ---------- Section-Spacings wie Produktseite ---------- */
.about-section{
  margin-top: 28px;
}

/* ---------- Werte-Kacheln (modern, aber ohne weisse Inseln) ---------- */
.about-cards{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.about-card{
  grid-column: span 4;

  /* kein reines Weiss, eher "surface" auf #f0efef */
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px 16px;

  box-shadow: 0 6px 18px rgba(0,0,0,.07);
}

.about-card p{
  margin: 0;
  color: rgba(0,0,0,.72);
  line-height: 1.5;
}

@media (max-width: 980px){
  .about-card{ grid-column: span 6; }
}
@media (max-width: 640px){
  .about-card{ grid-column: span 12; }
}

/* ---------- Einblicke: Bildraster passend zur Produktästhetik ---------- */
.about-mosaic{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.about-shot{
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;

  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
}

.about-shot img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-shot figcaption{
  padding: 10px 12px 12px;
  font-weight: 800;
  color: var(--blue-dark);
  font-size: .95rem;
  opacity: .95;
}

@media (max-width: 980px){
  .about-shot{ grid-column: span 6; }
}
@media (max-width: 640px){
  .about-shot{ grid-column: span 12; }
  .about-shot img{ height: 200px; }
}

/* ---------- CTA unten: nicht als Insel, sondern als "Band" ---------- */
.about-cta{
  margin-top: 28px;
  margin-bottom: 50px;
}

.about-cta__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: center;

  /* Band-Optik: leicht getönt, aber nicht "weiss" */
  background: rgba(52,152,219,.10);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: clamp(14px, 2.2vw, 20px);
}

@media (max-width: 860px){
  .about-cta__inner{ grid-template-columns: 1fr; }
}

.share-pill,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-pill i,
.status-pill i {
  font-size: 18px;
  line-height: 1;

}