/* ============================================================
   AMC Schmitt GmbH – Redesign-Muster 2026
   Marke: Schmitt-Rot #E2001B (aus logo_client.svg), Orange #F39200
   Typo: Barlow Condensed (Display) + Inter (Text), lokal gehostet
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --rot: #e2001b;
  --rot-dunkel: #b30015;      /* für Kleintext-Links, besserer Kontrast */
  --orange: #f39200;
  --anthrazit: #22262b;
  --anthrazit-tief: #191c20;
  --text: #2b2f34;
  --text-soft: #5a6068;
  --grund: #f7f6f4;
  --weiss: #ffffff;
  --linie: #e5e2dd;
  --linie-dunkel: #383d44;
  --radius: 10px;
  --schatten: 0 12px 32px rgba(25, 28, 32, 0.09);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-text: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 158px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--grund);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rot-dunkel);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rot);
}

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

a,
button,
input,
select,
textarea,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

p {
  text-wrap: pretty;
}

#scroll-wache {
  position: absolute;
  top: 0;
  height: 1px;
  width: 1px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--anthrazit);
  color: var(--weiss);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--anthrazit);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 0.9rem;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--rot);
  flex: none;
}

.section {
  padding-block: clamp(4rem, 9vw, 6.5rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.06rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.85em 1.7em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-rot {
  background: var(--rot);
  color: var(--weiss);
}

.btn-rot:hover {
  background: #c50018;
  color: var(--weiss);
}

.btn-kontur {
  background: transparent;
  color: var(--anthrazit);
  border-color: currentColor;
}

.btn-kontur:hover {
  color: var(--rot);
}

.btn-kontur-hell {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-kontur-hell:hover {
  color: var(--weiss);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--weiss);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.ist-gescrollt {
  border-bottom-color: var(--linie);
  box-shadow: 0 6px 24px rgba(25, 28, 32, 0.07);
}

.header-zeilen {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  position: relative;
}

.header-oben {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.7rem;
}

.kopf-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-soft);
}

.kopf-link:hover {
  color: var(--rot);
}

.kopf-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--rot);
  color: var(--weiss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.kopf-icon svg {
  width: 18px;
  height: 18px;
}

.tel-icon {
  width: 19px;
  height: 19px;
  flex: none;
}

.header-unten {
  flex: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.logo-link img {
  width: 400px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 700px) {
  .kopf-link {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-link img {
    width: 240px;
    height: 60px;
  }
}

.hauptnav {
  margin-left: auto;
}

.hauptnav ul {
  list-style: none;
  display: flex;
  gap: 1.9rem;
  margin: 0;
  padding: 0;
}

.hauptnav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--anthrazit);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hauptnav a:hover {
  color: var(--rot);
  border-bottom-color: var(--rot);
}


.menue-knopf {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.menue-knopf .balken {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--anthrazit);
  margin: 5.5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menue-knopf[aria-expanded="true"] .balken:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menue-knopf[aria-expanded="true"] .balken:nth-child(2) {
  opacity: 0;
}

.menue-knopf[aria-expanded="true"] .balken:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .hauptnav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--linie);
    box-shadow: 0 20px 40px rgba(25, 28, 32, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }

  .hauptnav.offen {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hauptnav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0;
  }

  .hauptnav a {
    display: block;
    padding: 0.85rem 1.4rem;
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .menue-knopf {
    display: block;
  }
}

/* ---------- Hero-Voll (Originalbild ohne Overlay, Block darunter) ---------- */
.hero-voll {
  padding-top: var(--header-h);
}

.hero-voll > img {
  width: 100%;
  height: auto;
  display: block;
}

.willkommen-karte {
  background: var(--weiss);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  max-width: 860px;
  margin: clamp(-70px, -6vw, -34px) auto 0;
  position: relative;
  z-index: 2;
  padding: clamp(1.8rem, 4.5vw, 3rem);
  text-align: center;
}

.willkommen-karte h1 {
  color: var(--rot);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 0.3rem;
}

.willkommen-unter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--anthrazit);
  margin-bottom: 0.9rem;
}

.willkommen-karte p:not(.willkommen-unter) {
  color: var(--text-soft);
  max-width: 56ch;
  margin-inline: auto;
}

.willkommen-karte .hero-ctas {
  justify-content: center;
  margin-top: 1.4rem;
}

/* ---------- Sprachumschalter ---------- */
.sprachen {
  display: flex;
  gap: 0.15rem;
  flex: none;
  margin-left: 0.4rem;
}

.sprachen a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-soft);
  padding: 5px 10px;
  border-radius: 4px;
}

.sprachen a:hover {
  color: var(--rot);
}

.sprachen a.aktiv {
  background: var(--rot);
  color: var(--weiss);
}

/* ---------- Hero (Alt-Layout, ungenutzt seit Hero-Voll) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 86svh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--weiss);
  isolation: isolate;
  padding-top: var(--header-h);
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(20, 22, 25, 0.78) 0%,
    rgba(20, 22, 25, 0.34) 40%,
    rgba(20, 22, 25, 0) 68%
  );
}

.hero .kicker,
.hero h1,
.hero-text {
  text-shadow: 0 1px 12px rgba(20, 22, 25, 0.45);
}

.hero-inhalt {
  padding-block: clamp(3rem, 7vw, 5rem);
  max-width: 780px;
}

.hero .kicker {
  color: var(--weiss);
}

.hero .kicker::before {
  background: var(--rot);
}

.hero h1 {
  color: var(--weiss);
  margin-bottom: 0.35em;
}

.hero-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------- Zahlen-Streifen ---------- */
.zahlen {
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
}

.zahlen-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}

.zahl {
  text-align: center;
}

.zahl-wert {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--rot);
  font-variant-numeric: tabular-nums;
}

.zahl-label {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .zahlen-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}

/* ---------- Über ---------- */
.ueber-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
  aspect-ratio: 1200 / 787;
}

.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slideshow .slide.aktiv {
  opacity: 1;
}

.slide-punkte {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.slide-punkte button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 4px rgba(20, 22, 25, 0.35);
  transition: background-color 0.2s ease;
}

.slide-punkte button.aktiv {
  background: var(--rot);
}

.ueber-text p {
  color: var(--text);
}

.marken-liste {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
}

.marken-liste li {
  border: 1.5px solid var(--linie);
  border-left: 3px solid var(--rot);
  background: var(--weiss);
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marken-liste li:hover {
  transform: translateY(-2px);
  box-shadow: var(--schatten);
}

.marken-liste a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  color: var(--anthrazit);
  text-decoration: none;
}

.marken-liste a:hover {
  color: var(--rot);
}

.ueber-bild {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten);
}

.bild-quelle {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.6rem;
}

@media (max-width: 880px) {
  .ueber-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Modelle ---------- */
.modelle {
  background: var(--weiss);
}

.modelle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.modell-karte {
  background: var(--grund);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.modell-karte:hover {
  color: inherit;
}

.modell-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten);
}

.modell-karte img {
  aspect-ratio: 900 / 544;
  object-fit: cover;
  width: 100%;
}

.modell-info {
  padding: 1.2rem 1.4rem 1.5rem;
}

.modell-info h3 {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.modell-info h3 span {
  color: var(--rot);
}

.modell-info p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.modelle-fussnote {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.modelle-fussnote p {
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .modelle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .modelle-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Fahrzeuge (Bestand) ---------- */
.fahrzeuge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.fahrzeug-karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 4px solid var(--rot);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fahrzeug-jahr {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.fahrzeug-karte h3 {
  margin-bottom: 0.2rem;
}

.fahrzeug-preis {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--rot);
  font-variant-numeric: tabular-nums;
  margin-top: auto;
}

.fahrzeug-preis small {
  display: block;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0;
}

.fahrzeug-ausstattung {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.fahrzeug-ausstattung li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.fahrzeug-ausstattung li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--rot);
  border-radius: 1px;
}

.fahrzeug-hinweis {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.fahrzeug-hinweis p {
  margin: 0;
  color: var(--text-soft);
  max-width: 52ch;
}

@media (max-width: 960px) {
  .fahrzeuge-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Umbauten (dunkle Sektion) ---------- */
.umbauten {
  background: var(--anthrazit);
  color: rgba(255, 255, 255, 0.88);
}

.umbauten .kicker {
  color: var(--orange);
}

.umbauten .kicker::before {
  background: var(--orange);
}

.umbauten h2 {
  color: var(--weiss);
}

.umbauten-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.umbauten-text p {
  color: rgba(255, 255, 255, 0.85);
}

.umbauten-fakt {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 1.6rem 0 1.8rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--orange);
}

.umbauten-fakt strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--weiss);
  font-variant-numeric: tabular-nums;
}

.umbauten-fakt span {
  color: rgba(255, 255, 255, 0.75);
}

.umbauten-galerie {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.umbauten-galerie figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.umbauten-galerie figure:first-child {
  grid-column: 1 / -1;
}

.umbauten-galerie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 640;
}

.umbauten-galerie figure:not(:first-child) img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 880px) {
  .umbauten-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Service / Öffnungszeiten ---------- */
.service {
  background: var(--weiss);
}

.service-hinweis {
  display: inline-block;
  background: #fdeef0;
  border: 1px solid #f5c2c9;
  border-left: 4px solid var(--rot);
  color: #8c0212;
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.zeiten-uebersicht {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.zeiten-bereich {
  border-top: 3px solid var(--rot);
  padding-top: 1.1rem;
}

.zeiten-bereich h3 {
  margin-bottom: 0.7rem;
}

.zeiten-bereich dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
}

.zeiten-bereich dt {
  color: var(--text-soft);
}

.zeiten-bereich dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.leistungen {
  margin-top: 2.6rem;
}

.leistungen ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem 2rem;
}

.leistungen li {
  padding-left: 1.5rem;
  position: relative;
}

.leistungen li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--rot);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

@media (max-width: 880px) {
  .zeiten-uebersicht {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1.4rem;
}

.team-karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem 1.4rem;
  text-align: center;
}

.team-karte img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.9rem;
  border: 3px solid var(--grund);
  box-shadow: 0 0 0 2px var(--rot);
}

.team-initialen {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  border: 3px solid var(--grund);
  box-shadow: 0 0 0 2px var(--rot);
  background: var(--anthrazit);
  color: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}

.team-karte h3 {
  font-size: 1.18rem;
  margin-bottom: 0.1rem;
}

.team-rolle {
  color: var(--rot-dunkel);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

.team-kontakt {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.team-kontakt a {
  color: inherit;
  text-decoration: none;
}

.team-kontakt a[href^="tel:"] {
  white-space: nowrap;
}

.team-kontakt a:hover {
  color: var(--rot);
}

.team-kontakt .mail {
  display: block;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* ---------- Anfrage / Kontakt ---------- */
.anfrage {
  background: var(--weiss);
  border-top: 1px solid var(--linie);
}

.anfrage-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.formular {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}

.feld {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feld-voll {
  grid-column: 1 / -1;
}

.feld label {
  font-weight: 600;
  font-size: 0.92rem;
}

.feld input,
.feld select,
.feld textarea {
  font: inherit;
  color: var(--text);
  background: var(--grund);
  border: 1.5px solid var(--linie);
  border-radius: 6px;
  padding: 0.7em 0.9em;
  width: 100%;
}

.feld input:focus-visible,
.feld select:focus-visible,
.feld textarea:focus-visible {
  outline: 2px solid var(--rot);
  outline-offset: 0;
  border-color: var(--rot);
}

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

.checkbox-feld {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}

.checkbox-feld input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--rot);
  flex: none;
}

.checkbox-feld label {
  font-weight: 400;
  font-size: 0.92rem;
}

.formular-fuss {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.formular-hinweis {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

.kontakt-karte {
  background: var(--anthrazit);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.kontakt-karte h3 {
  color: var(--weiss);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.kontakt-karte address {
  font-style: normal;
  margin-bottom: 1.2rem;
}

.kontakt-zeile {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}

.kontakt-zeile .k-label {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  width: 4.4rem;
  flex: none;
}

.kontakt-karte a {
  color: var(--weiss);
  text-decoration: none;
  white-space: nowrap;
}

.kontakt-karte a:hover {
  color: var(--orange);
}

.kontakt-karte hr {
  border: 0;
  border-top: 1px solid var(--linie-dunkel);
  margin: 1.3rem 0;
}

.kontakt-karte .zeiten-kompakt {
  font-size: 0.93rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1rem;
  margin: 0;
}

.kontakt-karte .zeiten-kompakt dt {
  color: rgba(255, 255, 255, 0.6);
}

.kontakt-karte .zeiten-kompakt dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 880px) {
  .anfrage-layout {
    grid-template-columns: 1fr;
  }

  .kontakt-karte {
    position: static;
  }

  .formular {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--anthrazit-tief);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 3.5rem 6rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-marke .wortmarke {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--weiss);
  text-transform: uppercase;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 0.2rem;
}

.site-footer h3 {
  color: var(--weiss);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.45rem;
}

.footer-unten {
  border-top: 1px solid var(--linie-dunkel);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
}

.footer-rechtliches {
  display: flex;
  gap: 1.6rem;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Mobile Kontakt-Leiste ---------- */
.mobil-leiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--weiss);
  border-top: 1px solid var(--linie);
  box-shadow: 0 -8px 24px rgba(25, 28, 32, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobil-leiste a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.mobil-leiste .leiste-anruf {
  color: var(--anthrazit);
}

.mobil-leiste .leiste-anfrage {
  background: var(--rot);
  color: var(--weiss);
}

@media (max-width: 768px) {
  .mobil-leiste {
    display: grid;
  }

  body {
    padding-bottom: 64px;
  }
}

/* ---------- Unterseiten (Impressum/Datenschutz) ---------- */
.unterseite-main {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.unterseite-main .container {
  max-width: 820px;
}

.unterseite-main h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.unterseite-main h2 {
  font-size: 1.7rem;
  margin-top: 2.2rem;
}

.unterseite-main h3 {
  margin-top: 1.6rem;
}

/* ---------- Modell-Blöcke (tabbert.html) ---------- */
.modell-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-top: 1px solid var(--linie);
}

.modell-block:first-of-type {
  border-top: 0;
}

.modell-block h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
}

.modell-block .modell-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

@media (max-width: 880px) {
  .modell-block {
    grid-template-columns: 1fr;
  }
}

/* ---------- Video-Fassade (Klick-to-Load, DSGVO) ---------- */
.video-fassade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--anthrazit);
  display: block;
}

.video-fassade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-fassade:hover img {
  transform: scale(1.03);
}

.video-fassade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 25, 0.18);
  transition: background-color 0.2s ease;
}

.video-fassade:hover::after {
  background: rgba(20, 22, 25, 0.05);
}

.video-fassade .play-knopf {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 50px;
  background: var(--rot);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-fassade .play-knopf::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent var(--weiss);
}

.video-eingebettet {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-eingebettet iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-hinweis {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

/* ---------- Fahrzeug-Detailseite ---------- */
.fahrzeug-detail-main {
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.2rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.fahrzeug-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  margin-bottom: 1.6rem;
}

.fahrzeug-kopf h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0;
}

.fahrzeug-kopf .fahrzeug-preis {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.foto-hinweis {
  background: var(--weiss);
  border: 1.5px dashed var(--linie);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
}

.foto-hinweis p {
  margin: 0 0 0.35rem;
}

.foto-hinweis p:last-child {
  margin: 0;
  color: var(--text-soft);
}

/* ---------- Galerie (Original-Layout: Bühne links, Thumbnails rechts) ---------- */
.galerie {
  display: grid;
  grid-template-columns: 1fr 264px;
  gap: 1rem;
  align-items: start;
}

.galerie-buehne {
  position: relative;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--weiss);
}

.galerie-buehne img.haupt {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--weiss);
  display: block;
}

.galerie-pfeil {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--rot);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.galerie-pfeil:hover {
  background: #c50018;
}

.galerie-pfeil.prev {
  left: 12px;
}

.galerie-pfeil.next {
  right: 12px;
}

.galerie-pfeil::before {
  content: "";
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: var(--weiss);
  border-width: 3px 3px 0 0;
}

.galerie-pfeil.prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.galerie-pfeil.next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.galerie-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 2px;
}

.galerie-thumbs button {
  border: 2px solid var(--linie);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--weiss);
  display: block;
}

.galerie-thumbs button.aktiv {
  border-color: var(--rot);
}

.galerie-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Platzhalter-Flächen, solange der Procar-Bildexport defekt ist */
.platzhalter-bild {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: repeating-linear-gradient(45deg, #f3f1ee, #f3f1ee 14px, #efedea 14px, #efedea 28px);
}

.platzhalter-bild img.wasserzeichen {
  width: 108px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(1);
}

.platzhalter-bild .platzhalter-nr {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}

.galerie-thumbs .platzhalter-bild {
  gap: 0;
}

.galerie-thumbs .platzhalter-bild img.wasserzeichen {
  width: 44px;
}

.galerie-thumbs .platzhalter-bild .platzhalter-nr {
  font-size: 0.8rem;
}

@media (max-width: 880px) {
  .galerie {
    grid-template-columns: 1fr;
  }

  .galerie-thumbs {
    grid-template-columns: repeat(4, 1fr);
    max-height: none;
    overflow: visible;
  }
}

.fahrzeug-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: start;
  margin-top: 2.2rem;
}

.fahrzeug-daten {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-top: 4px solid var(--rot);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.fahrzeug-daten dl {
  margin: 0 0 1.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1.2rem;
}

.fahrzeug-daten dt {
  color: var(--text-soft);
}

.fahrzeug-daten dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.ausstattung-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ausstattung-liste > li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--linie);
}

.ausstattung-liste > li:last-child {
  border-bottom: 0;
}

.ausstattung-liste > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 10px;
  height: 10px;
  background: var(--rot);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ausstattung-liste ul {
  list-style: none;
  padding: 0.3rem 0 0 0.2rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.ausstattung-liste ul li {
  padding-left: 1rem;
  position: relative;
}

.ausstattung-liste ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 2px;
  background: var(--text-soft);
}

@media (max-width: 880px) {
  .fahrzeug-layout {
    grid-template-columns: 1fr;
  }

  .fahrzeug-daten {
    position: static;
  }
}

/* ---------- Angebotsliste (angebot.html) ---------- */
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.angebot-karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.angebot-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten);
  color: inherit;
}

.angebot-karte img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.angebot-karte .angebot-info {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.angebot-karte h2,
.angebot-karte h3 {
  font-size: 1.35rem;
  margin: 0;
}

.angebot-karte .angebot-preis {
  margin-top: auto;
  padding-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--rot);
  font-variant-numeric: tabular-nums;
}

.mehr-link {
  font-weight: 600;
  color: var(--rot-dunkel);
}

@media (max-width: 960px) {
  .angebot-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Karten-Link (Onepager Fahrzeugkarten klickbar) ---------- */
.fahrzeug-karte a.karten-link {
  color: inherit;
  text-decoration: none;
}

.fahrzeug-karte a.karten-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.fahrzeug-karte {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fahrzeug-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten);
}

/* ---------- Reveal-Basiszustand (GSAP) ---------- */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js-anim .reveal-sichtbar {
  opacity: 1;
  transform: none;
}

/* ---------- Modelle-Karussell (Startseite) ---------- */
.modelle-karussell {
  position: relative;
}

.modelle-track {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.modelle-track::-webkit-scrollbar {
  display: none;
}

.modelle-track:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.modell-zelle {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 3.2rem) / 3);
  display: flex;
}

.modelle-track .modell-karte {
  width: 100%;
  height: 100%;
}

.modell-info {
  display: flex;
  flex-direction: column;
}

/* Ehrliche Status-Kennzeichnung */
.modell-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.24em 0.7em;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.modell-tag--fr {
  background: #eef1f4;
  color: var(--anthrazit);
  border: 1px solid var(--linie);
}

.modell-tag--aus {
  background: #fbeaec;
  color: var(--rot-dunkel);
  border: 1px solid #f1c7cd;
}

/* Pfeile */
.karussell-pfeil {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--linie);
  background: var(--weiss);
  color: var(--rot);
  box-shadow: var(--schatten);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, color 0.2s ease, background-color 0.2s ease;
}

.karussell-pfeil:hover {
  background: var(--rot);
  color: var(--weiss);
}

.karussell-pfeil:active {
  transform: translateY(calc(-50% + 1px));
}

.karussell-pfeil[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.karussell-pfeil.prev {
  left: 8px;
}

.karussell-pfeil.next {
  right: 8px;
}

.karussell-pfeil svg {
  width: 22px;
  height: 22px;
}

/* Punkte */
.karussell-punkte {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.karussell-punkte button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--linie);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.karussell-punkte button.aktiv {
  background: var(--rot);
  transform: scale(1.15);
}

@media (max-width: 960px) {
  .modell-zelle {
    flex-basis: calc((100% - 1.6rem) / 2);
  }
}

@media (max-width: 620px) {
  .modell-zelle {
    flex-basis: 84%;
  }
  .karussell-pfeil {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modelle-track {
    scroll-behavior: auto;
  }
}

/* ---------- Weitere & internationale Modelle (tabbert.html) ---------- */
.weitere-modelle {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 2px solid var(--linie);
}

.weitere-modelle > p {
  color: var(--text-soft);
  max-width: 760px;
}

.weitere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1.8rem;
}

.weitere-karte {
  background: var(--grund);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.weitere-karte img {
  aspect-ratio: 900 / 544;
  object-fit: cover;
  width: 100%;
}

.weitere-info {
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.weitere-info h3 {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.weitere-info h3 span {
  color: var(--rot);
}

.weitere-text {
  margin: 0 0 1.1rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.weitere-info .mehr-link {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
}

.weitere-info .mehr-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .weitere-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .weitere-grid {
    grid-template-columns: 1fr;
  }
}
