/**
 * Öffentliche Lions-Racing-Website (Kirby / PHP) – kompakt, ohne Tailwind-Build.
 */
:root {
  --lr-text: #0c1118;
  --lr-muted: #5c6570;
  --lr-red: #c8102e;
  --lr-red-hover: #a50d26;
  --lr-bg: #ffffff;
  --lr-bg-soft: #f9fafb;
  --lr-border: #e5e7eb;
  --lr-header: rgba(255, 255, 255, 0.98);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--lr-text);
  background: var(--lr-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--lr-red);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.lr-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.lr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--lr-border);
  background: var(--lr-header);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.lr-logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.lr-logo:hover {
  text-decoration: none;
}
.lr-logo img {
  display: block;
  width: auto;
  height: 2.3rem;
}

.lr-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .lr-nav {
    display: flex;
  }
}

.lr-nav a {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
}
.lr-nav a:hover {
  color: var(--lr-red);
  background: #f9fafb;
  text-decoration: none;
}

.lr-nav-dropdown {
  position: relative;
}
.lr-nav-dropdown__summary {
  list-style: none;
  cursor: pointer;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lr-nav-dropdown__summary::-webkit-details-marker {
  display: none;
}
.lr-nav-dropdown__summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  margin-top: 0.1rem;
}
.lr-nav-dropdown[open] .lr-nav-dropdown__summary {
  color: var(--lr-red);
  background: #f9fafb;
}
.lr-nav-dropdown__summary:hover {
  color: var(--lr-red);
  background: #f9fafb;
}
.lr-nav-dropdown__panel {
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 0;
  z-index: 60;
  min-width: 12rem;
  padding: 0.35rem;
  margin: 0;
  background: #fff;
  border: 1px solid var(--lr-border);
  border-radius: 0.375rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.lr-nav-dropdown__panel a {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.lr-nav-dropdown__panel a:hover {
  color: var(--lr-red);
  background: #f9fafb;
  text-decoration: none;
}

.lr-cta {
  display: none;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: var(--lr-red);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
}
.lr-cta:hover {
  background: var(--lr-red-hover);
  text-decoration: none;
}
@media (min-width: 768px) {
  .lr-cta {
    display: inline-flex;
  }
}

.lr-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.lr-lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border: 1px solid var(--lr-border);
  border-radius: 0.4rem;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: #fff;
}

.lr-lang-switch__link:hover {
  color: var(--lr-red);
  border-color: #d1d5db;
  background: #f9fafb;
  text-decoration: none;
}

.lr-lang-switch__link.is-active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.lr-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--lr-border);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
}

.lr-burger span {
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: #111827;
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .lr-burger {
    display: none;
  }
}

.lr-mobile-menu[hidden] {
  display: none;
}

.lr-mobile-menu {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
}

.lr-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.lr-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100dvh - 4rem);
  width: min(88vw, 23rem);
  background: #fff;
  border-left: 1px solid var(--lr-border);
  box-shadow: -10px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.lr-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--lr-border);
}

.lr-mobile-menu__close {
  border: 1px solid var(--lr-border);
  background: #fff;
  border-radius: 0.4rem;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.lr-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem;
  overflow-y: auto;
}

.lr-mobile-menu__nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  padding: 0.7rem 0.8rem;
  border-radius: 0.45rem;
}

.lr-mobile-menu__group {
  border: 1px solid var(--lr-border);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.lr-mobile-menu__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lr-mobile-menu__group-head > a {
  flex: 1;
  border-radius: 0;
}

.lr-mobile-menu__toggle {
  border: 0;
  border-left: 1px solid var(--lr-border);
  background: #fff;
  color: #374151;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.lr-mobile-menu__toggle:hover {
  background: #f9fafb;
  color: var(--lr-red);
}

.lr-mobile-menu__sub {
  border-top: 1px solid var(--lr-border);
  background: #f9fafb;
  padding: 0.35rem;
  display: grid;
  gap: 0.2rem;
}

.lr-mobile-menu__sub[hidden] {
  display: none;
}

.lr-mobile-menu__sub a {
  padding-left: 1rem;
}

.lr-mobile-menu__nav a:hover {
  background: #f9fafb;
  color: var(--lr-red);
  text-decoration: none;
}

.lr-mobile-menu__footer {
  border-top: 1px solid var(--lr-border);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.lr-lang-switch--mobile {
  margin-left: 0;
}

.lr-cta--mobile {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .lr-mobile-menu {
    display: none;
  }
}

/* Hero (home + sitepage) */
.lr-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 0 4rem;
  overflow: hidden;
  background: #0b0f14;
  color: #fff;
}

.lr-hero.lr-hero--light {
  background: #f3f4f6;
  color: var(--lr-text);
}
.lr-hero.lr-hero--light .lr-hero__subtitle {
  color: var(--lr-muted);
}

.lr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.lr-hero.lr-hero--light .lr-hero__bg img {
  opacity: 0.2;
}
.lr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0b0f14 0%, rgba(11, 15, 20, 0.75) 45%, transparent 100%);
  z-index: 1;
}
.lr-hero.lr-hero--light .lr-hero__overlay {
  background: linear-gradient(to top, rgba(249, 250, 251, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
}

.lr-hero__inner {
  position: relative;
  z-index: 2;
}

/* Unterstützer-Seite: leichter Parallax-Scroll-Effekt */
.lr-parallax-scene {
  overflow: hidden;
}
.lr-parallax-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  .lr-parallax-layer {
    transform: none !important;
    will-change: auto;
  }
}

/* Parallax-Bänder (z. B. Sponsor Portfolio: ein Abschnitt pro h2-Blockgruppe) */
.lr-parallax-band {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 3.75rem;
  border-top: 1px solid var(--lr-border);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lr-parallax-band:first-of-type {
  border-top: 0;
}
.lr-parallax-band--odd {
  background: #fff;
  color: var(--lr-text);
}
.lr-parallax-band--even {
  background: var(--lr-bg-soft);
  color: var(--lr-text);
}
.lr-parallax-band__bg {
  position: absolute;
  inset: -35% -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(200, 16, 46, 0.07), transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 72%, rgba(11, 15, 20, 0.05), transparent 52%);
}
.lr-parallax-band__bg--image {
  background-size: cover;
  background-position: center;
}
.lr-parallax-band__bg--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0.4), rgba(11, 15, 20, 0.35));
}

/* Abschnitt mit Fotohintergrund (z. B. Sponsor Portfolio): helle Schrift */
.lr-parallax-band:has(.lr-parallax-band__bg--image) {
  color: #fff;
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-parallax-band__title {
  color: #fff;
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-parallax-band__inner {
  color: #fff;
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-prose p {
  color: rgba(255, 255, 255, 0.9);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks .lr-block--html,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks ul,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks ol,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks li {
  color: rgba(255, 255, 255, 0.9);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks p {
  color: rgba(255, 255, 255, 0.9);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks blockquote {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.75);
  color: rgba(255, 255, 255, 0.92);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks hr {
  border-top-color: rgba(255, 255, 255, 0.35);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks a:not([class]) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-blocks a:not([class]):hover {
  color: rgba(255, 255, 255, 0.88);
}
/* Modul-Karten auf Fotohintergrund: helles Panel, dunkle Schrift */
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 28px rgba(12, 17, 24, 0.12);
  color: var(--lr-text);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell > h2,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell > h3,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell > h4,
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell > h5 {
  color: var(--lr-text);
}
.lr-parallax-band:has(.lr-parallax-band__bg--image) .lr-module-grid__cell > p {
  color: var(--lr-muted);
}

.lr-parallax-band--even .lr-parallax-band__bg {
  background:
    radial-gradient(ellipse 65% 50% at 80% 25%, rgba(200, 16, 46, 0.055), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(11, 15, 20, 0.04), transparent 50%);
}
.lr-parallax-band__inner {
  position: relative;
  z-index: 1;
}
.lr-parallax-band__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: inherit;
}
.lr-parallax-band__inner h1.lr-parallax-band__title {
  font-size: clamp(1.85rem, 4.2vw, 2.35rem);
}
.lr-parallax-band__inner--module-grid.lr-blocks {
  max-width: min(70rem, 100%);
}
.lr-parallax-band__inner--module-grid .lr-parallax-band__title {
  text-align: center;
  width: 100%;
}
/* Modul-Raster (Parallax „Unser Team“ u. a.): mobil 1 Spalte, Tablet 2, Desktop 3 */
.lr-module-grid.lr-module-grid--3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .lr-module-grid.lr-module-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .lr-module-grid.lr-module-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem 1.75rem;
  }
}
.lr-module-grid__cell {
  min-width: 0;
  background: var(--lr-bg-soft);
  border: 1px solid var(--lr-border);
  border-radius: 0.75rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 1px 3px rgba(12, 17, 24, 0.06);
}
.lr-module-grid__cell > h2,
.lr-module-grid__cell > h3,
.lr-module-grid__cell > h4,
.lr-module-grid__cell > h5 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 1.05rem + 0.2vw, 1.2rem);
  letter-spacing: -0.02em;
}
.lr-module-grid__cell p {
  margin: 0 0 0.65rem;
}
.lr-module-grid__cell p:last-child {
  margin-bottom: 0;
}
.lr-parallax-band .lr-block:last-child {
  margin-bottom: 0;
}

.lr-hero__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.lr-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.lr-hero__subtitle {
  font-size: 1.05rem;
  max-width: 40rem;
  opacity: 0.92;
  margin: 0 0 1.5rem;
}

.lr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
}
.lr-btn--primary {
  background: var(--lr-red);
  color: #fff !important;
}
.lr-btn--primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}
.lr-btn--secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}
.lr-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.lr-hero.lr-hero--light .lr-btn--secondary {
  border-color: #d1d5db;
  color: var(--lr-text) !important;
}
.lr-hero.lr-hero--light .lr-btn--secondary:hover {
  background: #f3f4f6;
}

/* Sections */
.lr-main {
  flex: 1;
}

.lr-section {
  padding: 3rem 0;
}

.lr-section--alt {
  background: var(--lr-bg-soft);
}

.lr-section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lr-muted);
  margin: 0 0 0.5rem;
}

.lr-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.lr-prose {
  max-width: 60rem;
}
.lr-social-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.lr-social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid var(--lr-border);
  border-radius: 0.75rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 7rem;
}

.lr-social-card:hover {
  border-color: var(--lr-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.lr-social-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 0.4rem;
  background: rgba(220, 38, 38, 0.08);
  color: var(--lr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lr-social-card__icon svg {
  display: block;
}

.lr-social-card__handle {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1rem;
  line-height: 1.2;
  word-break: break-word;
}

.lr-social-card__cta {
  color: var(--lr-red);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lr-border);
}

.lr-instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  align-items: start;
}

.lr-instagram-feed__item {
  min-width: 0;
}

.lr-instagram-feed .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.lr-instagram-embed {
  width: 100%;
  min-height: 220px;
}

.lr-instagram-embed iframe {
  width: 100%;
  max-width: 100%;
  min-height: 620px;
  border: 0;
}

.lr-prose p {
  margin: 0 0 1rem;
  color: var(--lr-muted);
}

/* Kirby-Inhaltsblöcke */
.lr-blocks {
  max-width: 60rem;
}
.lr-blocks > * {
  margin-bottom: 1.25rem;
}
/* Kirby Layout-Feld (Block „Layout-Bereich“): echte Spalten per CSS Grid */
.lr-layout-row {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
  max-width: 60rem;
}
.lr-layout-row--cols-1 {
  grid-template-columns: minmax(0, 1fr);
}
.lr-layout-row--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 72rem;
}
.lr-layout-row--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 72rem;
}
@media (max-width: 56rem) {
  .lr-layout-row--cols-2,
  .lr-layout-row--cols-3 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 60rem;
  }
}
.lr-layout-col > * {
  margin-bottom: 1.25rem;
}
.lr-layout-col > *:last-child {
  margin-bottom: 0;
}
.lr-blocks .lr-block--html {
  color: var(--lr-muted);
}
.lr-block--accordion {
  margin: 1.5rem 0;
}
.lr-accordion__heading {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lr-text);
}
.lr-accordion {
  display: grid;
  gap: 0.65rem;
}
.lr-accordion__item {
  border: 1px solid var(--lr-border);
  border-radius: 0.65rem;
  background: #fff;
  overflow: clip;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lr-accordion__item[open] {
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 8px 20px rgba(12, 17, 24, 0.06);
}
.lr-accordion__summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 2.75rem 0.9rem 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--lr-text);
  transition: background-color 0.18s ease, color 0.18s ease;
}
.lr-accordion__summary::-webkit-details-marker {
  display: none;
}
.lr-accordion__summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transform-origin: center;
  opacity: 0.8;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.lr-accordion__item[open] .lr-accordion__summary::after {
  transform: translateY(-40%) rotate(225deg);
  opacity: 1;
}
.lr-accordion__item:hover .lr-accordion__summary {
  background: var(--lr-bg-soft);
  color: var(--lr-red);
}
.lr-accordion__item[open] .lr-accordion__summary {
  color: var(--lr-red);
}
.lr-accordion__content {
  padding: 0 1rem 1rem;
  color: var(--lr-muted);
  line-height: 1.55;
  overflow-x: auto;
  animation: lr-accordion-open 220ms ease-out both;
}
.lr-accordion__content p:last-child {
  margin-bottom: 0;
}
.lr-accordion__content table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0.25rem 0 0.5rem;
  background: #fff;
}
.lr-accordion__content td,
.lr-accordion__content th {
  border: 1px solid var(--lr-border);
  padding: 0.55rem 0.65rem;
  vertical-align: top;
  text-align: left;
  font-size: 0.95rem;
  color: var(--lr-muted);
}
.lr-accordion__content th {
  color: var(--lr-text);
  font-weight: 600;
  background: var(--lr-bg-soft);
}
.lr-accordion__content img {
  max-width: 100%;
  height: auto;
}

@keyframes lr-accordion-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lr-blocks figure {
  margin: 1.25rem 0;
}
.lr-blocks img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.lr-blocks ul,
.lr-blocks ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--lr-muted);
}
.lr-blocks blockquote {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--lr-red);
  background: var(--lr-bg-soft);
  color: var(--lr-muted);
}
.lr-blocks hr {
  border: 0;
  border-top: 1px solid var(--lr-border);
  margin: 2rem 0;
}

/* RichTextField: bewusst wie Editor-Content-Box dargestellt */
.lr-block--richtextfield,
.lr-block--wysiwyg {
  background: #fff;
  border: 1px solid var(--lr-border);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 1px 2px rgba(12, 17, 24, 0.04);
}
.lr-block--richtextfield p,
.lr-block--wysiwyg p {
  margin: 0 0 0.9rem;
  color: var(--lr-muted);
}
.lr-block--richtextfield p:last-child,
.lr-block--wysiwyg p:last-child {
  margin-bottom: 0;
}
.lr-block--richtextfield h1,
.lr-block--richtextfield h2,
.lr-block--richtextfield h3,
.lr-block--richtextfield h4,
.lr-block--wysiwyg h1,
.lr-block--wysiwyg h2,
.lr-block--wysiwyg h3,
.lr-block--wysiwyg h4 {
  margin: 0 0 0.7rem;
  color: var(--lr-text);
  line-height: 1.25;
}
.lr-block--richtextfield ul,
.lr-block--richtextfield ol,
.lr-block--wysiwyg ul,
.lr-block--wysiwyg ol {
  margin: 0 0 0.9rem;
  padding-left: 1.25rem;
}
.lr-block--richtextfield li,
.lr-block--wysiwyg li {
  margin: 0.2rem 0;
}
.lr-block--richtextfield a,
.lr-block--wysiwyg a {
  color: var(--lr-red);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.lr-media-teaser {
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
.lr-media-teaser__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.lr-media-teaser__link:hover .lr-media-teaser__scrim {
  opacity: 1;
}
.lr-media-teaser__media {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 200px;
  background: var(--lr-bg-soft);
}
.lr-media-teaser__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  max-width: none;
}
.lr-media-teaser__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 45%, transparent);
  pointer-events: none;
}
.lr-media-teaser--center .lr-media-teaser__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.lr-media-teaser--bottom .lr-media-teaser__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem 1.5rem;
}
.lr-media-teaser__headline {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.lr-media-teaser__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.lr-media-teaser__text a {
  color: #fff;
  text-decoration: underline;
}

/* /module Modul-Übersicht: gesamtes Bild + Modulname als Caption */
.lr-media-teaser--modules .lr-media-teaser__media {
  aspect-ratio: unset;
  min-height: 0;
}
.lr-media-teaser--modules .lr-media-teaser__media img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.lr-media-teaser--modules .lr-media-teaser__media--empty {
  min-height: 140px;
  background: var(--lr-bg-soft);
}
.lr-media-teaser--modules .lr-media-teaser__scrim {
  display: none;
}
.lr-media-teaser--modules .lr-media-teaser__content {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0.85rem 1rem 1.05rem;
  background: var(--lr-bg-soft);
}
.lr-media-teaser--modules .lr-media-teaser__headline {
  margin: 0;
  font-size: 1.15rem;
  color: var(--lr-text);
  text-shadow: none;
}

.lr-html {
  max-width: 60rem;
}
.lr-html h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--lr-text);
}
.lr-html h2:first-child {
  margin-top: 0;
}
.lr-html h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.35rem 0 0.5rem;
  color: var(--lr-text);
}
.lr-html h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--lr-muted);
  text-transform: none;
}
.lr-html blockquote {
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 3px solid var(--lr-red);
  color: var(--lr-muted);
}
.lr-html blockquote p {
  margin: 0;
  font-style: italic;
}
.lr-html > p {
  margin: 0 0 1rem;
  color: var(--lr-muted);
  line-height: 1.65;
}
.lr-html a {
  color: var(--lr-red);
  font-weight: 600;
  text-underline-offset: 0.12em;
}
.lr-html a:hover {
  text-decoration: underline;
}
.lr-html__figure-wrap {
  margin: 1.5rem 0 0.75rem;
}
.lr-html__figure-wrap img {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: auto;
  border-radius: 0.35rem;
  border: 1px solid var(--lr-border);
}
.lr-html__figure-wrap a {
  display: inline-block;
  font-weight: inherit;
}

/* Footer */
.lr-footer {
  border-top: 1px solid var(--lr-border);
  padding: 2rem 0;
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--lr-muted);
}

.lr-footer a {
  color: var(--lr-muted);
}
.lr-footer a:hover {
  color: var(--lr-red);
}

.lr-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.lr-panel-link {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Team-Jahresseite (/teams/team-2026 …) */
.lr-team-year {
  background: var(--lr-bg-soft);
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.lr-team-year__head {
  margin-bottom: 2rem;
  max-width: 40rem;
}
.lr-team-year__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0;
  color: var(--lr-text);
}
.lr-team-year__empty {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px dashed var(--lr-border);
  border-radius: 0.5rem;
  color: var(--lr-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Teamliste nach Bereichen */
.lr-team-section {
  padding-bottom: 2rem;
}
.lr-team-section--year {
  padding-bottom: 0;
}
.lr-team-section--year .lr-team-list {
  gap: 1.5rem;
}
.lr-team-bereich {
  margin-top: 2.5rem;
}
.lr-team-bereich:first-child {
  margin-top: 0;
}
.lr-team-section--year .lr-team-bereich__title {
  font-size: 1rem;
}
.lr-team-bereich__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--lr-text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lr-border);
}

/* Teamliste (Panel-Struktur) — mobil zuerst: immer eine Spalte */
.lr-team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}
/* Panel „3 Spalten“: klein 1 → Tablet 2 → Desktop 3 */
.lr-team-list--cols-3 {
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
}
@media (min-width: 768px) {
  .lr-team-list:not(.lr-team-list--cols-3) {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .lr-team-section--year .lr-team-list:not(.lr-team-list--cols-3) {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
  .lr-team-list--cols-3,
  .lr-team-section--year .lr-team-list--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lr-team-list--cols-3,
  .lr-team-section--year .lr-team-list--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.lr-team-section__heading {
  margin-top: 0;
}
.lr-team-member {
  list-style: none;
}
.lr-team-member__inner {
  display: block;
}
.lr-team-member__media {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.lr-team-member__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}
.lr-team-member__initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.22));
  color: var(--lr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
}
.lr-team-member__text {
  padding-top: 0.5rem;
}
.lr-team-member__name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}
.lr-team-member__role {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--lr-red);
  font-weight: 500;
}
.lr-team-member__dept {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--lr-muted);
}

/* Sponsorenliste (Template „unterstuetzer“) */
.lr-supporters {
  padding-bottom: 3rem;
}
.lr-supporters__tier-title {
  margin: 2rem 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lr-muted);
}
.lr-supporters__tier-title:first-child {
  margin-top: 0;
}
.lr-supporters__grid {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1rem;
}
.lr-supporters__item {
  height: 7rem;
}
.lr-supporters__card {
  border: 1px solid var(--lr-border);
  border-radius: 0.5rem;
  padding: 1rem;
  background: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lr-supporters__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.lr-supporters__link:hover .lr-supporters__logo {
  opacity: 0.88;
}
.lr-supporters__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lr-supporters__fallback {
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* Saison-Archiv (Unterseiten mit Template „season“) */
.lr-season-archive {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.lr-season-archive a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--lr-border);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lr-text);
  text-decoration: none;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}
.lr-season-archive a:hover {
  border-color: rgba(200, 16, 46, 0.4);
  background: rgba(200, 16, 46, 0.05);
  color: var(--lr-red);
  text-decoration: none;
}

/* Formular „Interesse – Mitglied werden“ */
.lr-main form,
.lr-main #mc_embed_signup {
  margin-left: auto;
  margin-right: auto;
}

.lr-form-wrap {
  max-width: 36rem;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.lr-form-intro {
  margin-bottom: 1.75rem;
}
.lr-form__notice {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.lr-form__notice--success {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #166534;
}
.lr-form__notice--error {
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.35);
  color: #991b1b;
}
.lr-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lr-form__row {
  margin-bottom: 1.25rem;
}
.lr-form__row--half {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) {
  .lr-form__row--half {
    grid-template-columns: 1fr 1fr;
  }
}
.lr-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--lr-text);
}
.lr-form__req {
  color: var(--lr-red);
  font-weight: 700;
}
.lr-form__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--lr-border);
  border-radius: 0.375rem;
  background: #fff;
  color: var(--lr-text);
  transition: border-color 0.15s;
}
.lr-form__input:focus {
  outline: none;
  border-color: rgba(200, 16, 46, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.lr-form__textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.5;
}
.lr-form__hint {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--lr-muted);
}
.lr-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--lr-muted);
  cursor: pointer;
}
.lr-form__check-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--lr-red);
}
.lr-form__check-label a {
  color: var(--lr-red);
  text-decoration: underline;
}
.lr-form__check-label a:hover {
  text-decoration: none;
}
.lr-form__actions {
  margin-top: 1.5rem;
}
.lr-form__submit {
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 1.35rem;
}

/* Galerie als Slideshow (Modul-Unterseiten, Kirby-Block „gallery“) */
.lr-gallery-slideshow {
  margin: 1.25rem 0;
  max-width: 100%;
}
.lr-gallery-slideshow__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--lr-bg-soft);
  outline: none;
}
.lr-gallery-slideshow__viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.28);
}
.lr-gallery-slideshow__viewport[style*="--lr-gallery-aspect"] {
  aspect-ratio: var(--lr-gallery-aspect);
}
.lr-gallery-slideshow__track {
  display: flex;
  width: calc(100% * var(--lr-n, 1));
  transition: transform 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.lr-gallery-slideshow__slide {
  flex: 0 0 calc(100% / var(--lr-n, 1));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1f4;
}
.lr-gallery-slideshow__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  user-select: none;
}
.lr-gallery-slideshow__slide--crop img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.lr-gallery-slideshow__viewport[style*="--lr-gallery-aspect"] .lr-gallery-slideshow__slide--crop {
  align-self: stretch;
  min-height: 100%;
}
.lr-gallery-slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--lr-text);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(12, 17, 24, 0.14);
  font-size: 1.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.lr-gallery-slideshow__nav:hover {
  background: #fff;
  color: var(--lr-red);
  box-shadow: 0 4px 18px rgba(12, 17, 24, 0.18);
}
.lr-gallery-slideshow__nav:focus-visible {
  outline: 2px solid var(--lr-red);
  outline-offset: 2px;
}
.lr-gallery-slideshow__nav--prev {
  left: 0.5rem;
}
.lr-gallery-slideshow__nav--next {
  right: 0.5rem;
}
.lr-gallery-slideshow__nav[hidden] {
  display: none;
}
.lr-gallery-slideshow__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.lr-gallery-slideshow__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lr-border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.lr-gallery-slideshow__dot:hover {
  background: #cdd2d8;
}
.lr-gallery-slideshow__dot.is-active {
  background: var(--lr-red);
  transform: scale(1.2);
}
.lr-gallery-slideshow__caption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: var(--lr-muted);
}
