/* ==========================================================================
   TSV Fürstenwald – Marken-Design
   Gemeinsame Bausteine: dunkle Streifenfläche mit Wappen (wie auf /news und
   /events), Kopfzeile, Angebots-Karten und Startseiten-Bausteine.
   Vereinsfarben: Rot #c8102e und Weiß.
   ========================================================================== */

:root {
  --brand-red: #c8102e;
  --brand-red-dark: #9d0b23;
  --brand-ink: #14181f;
  --brand-ink-soft: #1e232b;
  --brand-line: #e3e7ee;
  --brand-muted: #5c6570;
  --brand-header-h: 64px;
}

/* Seiten, die ihre Abstaende selbst mitbringen (Full-Bleed-Hero + Sektionen) */
.page-flush {
  padding: 0 !important;
  min-height: 60vh;
}

/* --------------------------------------------------- Dunkle Markenfläche */

.brand-panel {
  position: relative;
  background-color: var(--brand-ink);
  background-image:
    radial-gradient(760px 300px at 88% -25%, rgba(200, 16, 46, .55), transparent 62%),
    radial-gradient(620px 280px at 0% 125%, rgba(200, 16, 46, .18), transparent 60%),
    linear-gradient(135deg, #1e232b 0%, #14181f 55%, #0c0f14 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg,
      rgba(255, 255, 255, .05) 0 2px,
      transparent 2px 22px);
  pointer-events: none;
  z-index: 0;
}

.brand-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 220px;
  height: 256px;
  transform: translateY(-45%) rotate(-6deg);
  background: url("/static/images/optimized/crest.webp") center / contain no-repeat;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

.brand-panel > * {
  position: relative;
  z-index: 1;
}

/* Folgt eine Markenfläche direkt auf den Hero, wäre das Wappen doppelt */
.page-hero + .brand-panel::after {
  display: none;
}

.brand-panel__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red-dark) 55%, #5c0714 100%);
}

@media (min-width: 768px) {
  .brand-panel::after {
    right: 3%;
    width: 300px;
    height: 350px;
    opacity: .14;
  }
}

/* Helle Textfarben innerhalb der dunklen Fläche */
.brand-panel h1,
.brand-panel h2,
.brand-panel h3 {
  color: #fff;
}

.brand-panel p,
.brand-panel span,
.brand-panel li {
  color: rgba(255, 255, 255, .85);
}

/* Helle Karten auf der dunklen Fläche behalten dunkle Schrift */
.brand-panel .card,
.brand-panel .card h1,
.brand-panel .card h2,
.brand-panel .card h3,
.brand-panel .card p,
.brand-panel .card span,
.brand-panel .card small,
.brand-panel .card li {
  color: var(--brand-ink);
}

.brand-panel .card small {
  color: var(--brand-muted);
}

.brand-eyebrow {
  display: inline-block;
  font-family: "Oswald", "Lato", sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ff6b81;
  margin-bottom: 8px;
}

.brand-title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.brand-title em {
  color: var(--brand-red);
  font-style: normal;
}

/* ============================================================ Kopfzeile */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: var(--brand-ink);
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #1e232b 0%, #14181f 60%, #0f1319 100%);
  border-bottom: 3px solid var(--brand-red);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--brand-header-h);
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  min-width: 0;
  text-decoration: none;
}

.site-header__brand:hover,
.site-header__brand:focus-visible {
  text-decoration: none;
}

.site-header__brand img {
  height: 40px;
  width: auto;
  flex: 0 0 auto;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.site-header__brand-name {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.site-header__brand-sub {
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}

/* Hauptnavigation (ab Desktop sichtbar) */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 11px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .88);
  font-family: "Oswald", "Lato", sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  text-decoration: none;
}

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

.site-nav__link[aria-current="page"] {
  color: #fff;
}

/* Aktionen rechts */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--brand-red);
  color: #fff;
  font-family: "Oswald", "Lato", sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .15s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--brand-red-dark);
  color: #fff;
  text-decoration: none;
}

.site-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .875rem;
  text-decoration: none;
}

.site-header__icon-link:hover,
.site-header__icon-link:focus-visible {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  text-decoration: none;
}

.site-header__user-name {
  display: none;
  max-width: 16ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color .15s ease;
}

.site-header__burger:hover {
  background: rgba(255, 255, 255, .18);
}

/* -------------------------------------------------------- Mobile-Menü */

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(88vw, 340px);
  padding: 0 0 env(safe-area-inset-bottom);
  background-color: var(--brand-ink);
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .045) 0 2px, transparent 2px 22px),
    linear-gradient(160deg, #1e232b 0%, #14181f 60%, #0d1015 100%);
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

.site-drawer.is-open {
  transform: translateX(0);
  box-shadow: -12px 0 40px rgba(0, 0, 0, .45);
}

.site-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--brand-header-h);
  padding: 0 12px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-drawer__title {
  margin: 0;
  font-family: "Oswald", "Lato", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.site-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
}

.site-drawer__close:hover {
  background: rgba(255, 255, 255, .12);
}

.site-drawer__list {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  gap: 2px;
}

.site-drawer__link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .9);
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-drawer__link i {
  width: 22px;
  text-align: center;
  color: var(--brand-red);
  font-size: 1rem;
}

.site-drawer__link:hover,
.site-drawer__link:focus-visible {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  text-decoration: none;
}

.site-drawer__link[aria-current="page"] {
  background: rgba(200, 16, 46, .22);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--brand-red);
}

.site-drawer__divider {
  height: 1px;
  margin: 10px 14px;
  background: rgba(255, 255, 255, .12);
}

.site-drawer__footer {
  margin-top: auto;
  padding: 16px;
}

.site-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 10px;
  background: var(--brand-red);
  color: #fff;
  font-family: "Oswald", "Lato", sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-drawer__cta:hover,
.site-drawer__cta:focus-visible {
  background: var(--brand-red-dark);
  color: #fff;
  text-decoration: none;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(8, 10, 14, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.site-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 400px) {
  .site-header__user-name {
    display: inline;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    height: 72px;
    padding: 0 24px;
  }

  .site-header__brand img {
    height: 46px;
  }

  .site-header__brand-name {
    font-size: 1.125rem;
  }

  .site-nav {
    display: block;
    margin-right: 8px;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .site-header__burger {
    display: none;
  }

  .site-drawer,
  .site-backdrop {
    display: none;
  }
}

/* ==================================================== Angebote (/sparten) */

.offer-category {
  margin-bottom: 44px;
}

.offer-category__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.offer-category__title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-ink);
  margin: 0;
  white-space: nowrap;
}

.offer-category__rule {
  flex: 1 1 auto;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-red) 0%, rgba(200, 16, 46, .12) 100%);
}

.offer-category__count {
  flex: 0 0 auto;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--brand-muted);
  white-space: nowrap;
}

.offer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 14px 18px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 8px 20px rgba(16, 24, 40, .06);
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Roter Balken oben, faehrt beim Hover aus */
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, .35);
  box-shadow: 0 12px 34px rgba(16, 24, 40, .14);
  text-decoration: none;
}

.offer-card:hover::before,
.offer-card:focus-visible::before {
  transform: scaleX(1);
}

.offer-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f6f7fa;
  transition: background-color .18s ease;
}

.offer-card:hover .offer-card__media {
  background: #fdecef;
}

.offer-card__media img {
  max-width: 54px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer-card__title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--brand-ink);
  margin: 0;
  overflow-wrap: anywhere;
}

.offer-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-red-dark);
}

@media (min-width: 576px) {
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .offer-card {
    padding: 24px 16px 20px;
  }

  .offer-card__media {
    width: 96px;
    height: 96px;
  }

  .offer-card__media img {
    max-width: 62px;
    max-height: 62px;
  }
}

@media (min-width: 992px) {
  .offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ====================================== Organigramm Vorstand (/verein) */

.org {
  --org-gap: 18px;
  --org-drop: 26px;
  --org-card: clamp(280px, 30vw, 360px);
  --org-line: rgba(255, 255, 255, .3);
  display: flex;
  flex-direction: column;
}

.org-level {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--org-gap);
}

/* Auf dem Handy nur gestapelte Karten – ohne Verbindungslinien */
.org-level + .org-level {
  margin-top: var(--org-gap);
}

.org-node {
  position: relative;
  display: flex;
  width: 100%;
}

.org-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .82) !important;
  font-size: .875rem;
  line-height: 1.45;
}

/* Verbindungslinien erst ab Tablet-Breite */
.org-stub {
  display: none;
}

.org-hint i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--brand-red);
}

/* ---------------------------------------------------------- Karte */

.board-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
  width: 100%;
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Roter Akzent an der Kante */
.board-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
}

.board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .44);
}

.board-card__avatar {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: #eef1f6;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(200, 16, 46, .3);
}

.board-card__body {
  min-width: 0;
  text-align: left;
}

.board-card__role {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-red-dark) !important;
  margin: 0 0 3px;
}

.board-card__name {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--brand-ink) !important;
  margin: 0;
  overflow-wrap: anywhere;
}

.board-card__contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--brand-line);
}

.board-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--brand-line);
  background: #f7f8fb;
  color: var(--brand-ink) !important;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.board-card__action i {
  color: var(--brand-red);
  transition: color .15s ease;
}

.board-card__action:hover,
.board-card__action:focus-visible {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff !important;
  text-decoration: none;
}

.board-card__action:hover i,
.board-card__action:focus-visible i {
  color: #fff;
}

@media (min-width: 700px) {
  .org {
    --org-gap: 24px;
    --org-drop: 30px;
  }

  .org-hint {
    display: none;
  }

  .org-node {
    width: var(--org-card);
  }

  /* Nur Ebenen mit verbundenen Karten bekommen Platz fuer die Linien */
  .org-level--linked {
    padding-top: calc(var(--org-drop) * 2);
  }

  .org-level + .org-level {
    margin-top: 0;
  }

  /* Nur Ebenen ohne ankommende Linien brauchen einen normalen Abstand;
     verbundene Ebenen bringen ihn ueber padding-top bereits mit. */
  .org-level + .org-level:not(.org-level--linked) {
    margin-top: var(--org-gap);
  }

  /* Abgehende Linie nach unten – nur unter verbundenen Karten */
  .org-level:not(:last-child) .org-node--linked::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: var(--org-drop);
    margin-left: -1px;
    background: var(--org-line);
  }

  /* Querschiene der Folgeebene */
  .org-level--linked .org-node--linked::before {
    content: "";
    position: absolute;
    top: calc(var(--org-drop) * -1);
    left: calc((var(--org-card) + var(--org-gap)) / -2);
    right: calc((var(--org-card) + var(--org-gap)) / -2);
    height: 2px;
    background: var(--org-line);
  }

  /* Stichleitung von der Querschiene in die Karte */
  .org-level--linked .org-stub {
    display: block;
    position: absolute;
    top: calc(var(--org-drop) * -1);
    left: 50%;
    width: 2px;
    height: var(--org-drop);
    margin-left: -1px;
    background: var(--org-line);
  }

  .org-level--linked .org-node--first::before {
    left: 50%;
  }

  .org-level--linked .org-node--last::before {
    right: 50%;
  }

  .org-level--linked .org-node--first::before {
    left: 50%;
  }

  .org-level--linked .org-node--last::before {
    right: 50%;
  }

  .board-card {
    padding: 18px 20px;
  }

  .board-card__avatar {
    width: 80px;
    height: 80px;
  }

  .board-card__name {
    font-size: 1.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .board-card {
    transition-duration: .01ms !important;
  }
}

/* ================================================== Startseite (Hero etc.) */

.home-hero {
  padding: 44px 0 52px;
}

/* Die Startseite zeigt das Wappen bereits gross – Wasserzeichen waere doppelt */
.home-hero::after {
  display: none;
}

.home-hero__inner {
  display: grid;
  gap: 26px;
  align-items: center;
  grid-template-columns: 1fr;
}

.home-hero__crest {
  order: -1;
  justify-self: center;
  /* Nicht ueber die native Aufloesung hinaus skalieren, sonst wird es unscharf */
  width: min(230px, 52vw);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .45));
}

.home-hero__title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: clamp(1.9rem, 1.3rem + 3.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}

.home-hero__title span {
  display: block;
  color: var(--brand-red);
}

.home-hero__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 22px;
  max-width: 52ch;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 26px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.home-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero__fact b {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.home-hero__fact span {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

@media (min-width: 768px) {
  .home-hero {
    padding: 64px 0 72px;
  }

  .home-hero__inner {
    grid-template-columns: 1.35fr .65fr;
    gap: 40px;
  }

  .home-hero__crest {
    order: 0;
    width: min(266px, 24vw);
  }
}

/* Schnelleinstieg-Kacheln */

.quick-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 8px 20px rgba(16, 24, 40, .06);
  color: var(--brand-muted);
  text-decoration: none;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-tile:hover,
.quick-tile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200, 16, 46, .35);
  box-shadow: 0 12px 34px rgba(16, 24, 40, .14);
  color: var(--brand-muted);
  text-decoration: none;
}

.quick-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fdecef;
  color: var(--brand-red-dark);
  font-size: 1.125rem;
}

.quick-tile__title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brand-ink);
  margin: 0;
}

.quick-tile__text {
  font-size: .875rem;
  line-height: 1.5;
  margin: 0;
}

.quick-tile__more {
  margin-top: auto;
  padding-top: 6px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--brand-red-dark);
}

@media (min-width: 992px) {
  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-drawer,
  .site-backdrop,
  .offer-card,
  .offer-card::before,
  .quick-tile,
  .site-nav__link::after {
    transition-duration: .01ms !important;
  }
}
