﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

body {
    font-family: "Open Sans", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    background: #e6e6e6;
    border-bottom: 1px solid #d3d3d3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  }

  .site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111111;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.1;
  }

  .site-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
    flex: 0 0 auto;
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
  }

  .site-nav a {
    color: #e1000a;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  @media screen and (min-width: 901px) {
    .site-header {
      padding: 14px 18px;
      gap: 12px;
    }

    .site-brand {
      font-size: clamp(1.08rem, 1.6vw, 1.45rem);
      gap: 10px;
    }

    .site-nav {
      flex-wrap: nowrap;
      gap: 6px 10px;
    }

    .site-nav a {
      font-size: clamp(0.82rem, 1.05vw, 1rem);
      padding: 7px 8px;
      white-space: nowrap;
    }
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: rgba(225, 0, 10, 0.08);
    color: #b10008;
  }

  .site-nav a.active {
    background: rgba(225, 0, 10, 0.12);
  }

  @media screen and (max-width: 900px) {
    .site-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 18px;
    }

    .site-brand {
      font-size: clamp(1rem, 4.4vw, 1.12rem);
      white-space: normal;
    }

    .site-logo {
      width: 34px;
      height: 34px;
    }

    .site-nav {
      justify-content: flex-start;
      gap: 6px 10px;
    }

    .site-nav a {
      font-size: clamp(0.84rem, 3.6vw, 0.96rem);
      padding: 6px 8px;
    }
  }

  @media screen and (max-width: 640px) {
    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    .site-header {
      position: static;
      gap: 5px;
      padding: 6px 8px;
      width: 100%;
      max-width: 100vw;
    }

    .site-brand {
      gap: 6px;
      font-size: 0.82rem;
      line-height: 1.05;
    }

    .site-logo {
      width: 24px;
      height: 24px;
      border-radius: 6px;
    }

    .site-nav {
      width: 100%;
      max-width: 100%;
      flex-wrap: nowrap;
      gap: 6px;
      overflow-x: auto;
      padding-bottom: 2px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
      display: none;
    }

    .site-nav a {
      flex: 0 0 auto;
      font-size: 0.64rem;
      line-height: 1.2;
      padding: 3px 5px;
      border-radius: 5px;
      white-space: nowrap;
    }

  }

  /* Main Content Wrapper */
  .container-all {
    flex: 1;
    padding: 20px;
  }

  /* Header */
  .header {
    display: flex;
    justify-content: center;
    color: #000000;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 50px;
    margin: 30px 0; /* Margin */
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: fit-content;
    text-align: center; /* Mittige Ausrichtung */
    margin-left: auto;  /* Zentriert auf der Seite */
    margin-right: auto; /* Zentriert auf der Seite */
}

  /* Background Blur */
  .background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    background-image: none;
    filter: none;
    z-index: -1;
  }

  /* Overlay Menu Styles */
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }

  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .overlay a {
    padding: 8px;
    font-size: 36px;
    color: #818181;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
  }

  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }

  .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }

  /* Responsive adjustments for small screens */
  @media screen and (max-height: 450px) {
    .overlay a {
      font-size: 20px;
    }
    .closebtn {
      font-size: 40px;
      top: 15px;
      right: 35px;
    }
  }

  /* Content Section */
  .container-all {
    position: relative;
    margin: 3% 4%;
    z-index: 1; /* Ensure content appears above background */
  }

  /* Slideshow */
  .slideshow-container {
    position: relative;
    width: min(85%, 760px);
    height: clamp(220px, 45vw, 420px);
    margin: 20px auto 10px;
    overflow: hidden;
    border-radius: 14px;
    background: #f7f7f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .mySlides {
    position: absolute;
    inset: 0;
    display: block;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.9s ease-in-out, opacity 0.9s ease-in-out;
    will-change: transform, opacity;
  }

  .mySlides.active {
    transform: translateX(0);
    opacity: 1;
    z-index: 2;
  }

  .mySlides.enter-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
  }

  .mySlides.enter-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
  }

  .mySlides.exit-left {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
  }

  .mySlides.exit-right {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
  }

  .mySlides img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-caption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.28);
    padding: 4px 8px;
    border-radius: 6px;
    pointer-events: none;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #cfcfcf;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }

  .dot.active {
    background-color: #e1000a;
    transform: scale(1.15);
  }

/* Menü Icon */
  .menu {
    position: absolute;
    top: 20px; /* gleich hoch */
    left: 20px; /* gleich weit */
  }

  .menu span {
    cursor: pointer;
    color: white; /* Weißes Menü-Icon */
    font-size: 30px;
  }

  .menu span:hover {
    color: lightgray; /* Optional: Farbe beim Hover ändern */
  }

  /* Text Section */
  .section-title {
    display: flex;
    justify-content: center;
    color: #000000;
    font-size: 1.5em;
    margin: 10px 0; /* Margin */
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    width: fit-content; /* Höhe bleibt, Breite anpassen */
    text-align: center; /* Mittige Ausrichtung */
    margin-left: auto;  /* Zentriert auf der Seite */
    margin-right: auto; /* Zentriert auf der Seite */
}




  .text-startseite {
    display: flex;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 20px; /* Schriftgröße für den Text erhöhen */
    background-color: transparent;
    padding: 2px 50px; /* Höhe weiter reduziert, Breite erhöht */
    border-radius: 0;
    text-align: center;
    margin: 10px auto; /* Abstand um das Textfeld */
    max-width: 1200px; /* Maximalbreite der Textfelder erhöht */
  }

  @media screen and (max-width: 640px) {
    .container-all {
      padding: 12px;
      margin: 0;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .slideshow-container {
      width: 100%;
      height: clamp(180px, 58vw, 240px);
      margin: 14px auto 8px;
    }

    .slide-caption {
      right: 8px;
      bottom: 8px;
      max-width: calc(100% - 16px);
      font-size: 0.62rem;
      line-height: 1.15;
      text-align: right;
    }

    .dot {
      width: 9px;
      height: 9px;
      margin: 0 4px;
    }

    .section-title {
      font-size: 1rem;
      margin: 12px auto 6px;
      width: auto;
    }

    .section-title h2,
    .section-title h3 {
      font-size: 1.35rem;
      line-height: 1.15;
    }

    .text-startseite {
      display: block;
      width: 100%;
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.45;
      padding: 0 10px;
      margin: 6px auto 16px;
      max-width: 100%;
      overflow-wrap: break-word;
    }
  }

  /* Legal Pages */
  .legal-card {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 28px 32px;
    text-align: left;
    color: #111111;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    line-height: 1.7;
  }

  .legal-section + .legal-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
  }

  .legal-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #111111;
  }

  .legal-card p {
    margin: 0;
  }

  .legal-card ul {
    margin: 8px 0 0 20px;
    padding: 0;
  }

  .legal-card li {
    margin-bottom: 8px;
  }

  .legal-note {
    margin-top: 18px !important;
    color: #444444;
    font-size: 0.95rem;
  }

  .legal-card a {
    color: #e1000a;
    text-decoration: none;
  }

  .legal-card a:hover {
    color: #b10008;
    text-decoration: underline;
  }

  /* Footer Styles */
  footer {
    display: flex;
    justify-content: space-evenly;
    color: #222222;
    padding: 20px 0;
    background-color: #e6e6e6;
    position: relative;
    bottom: 0;
    width: 100%;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3 {
    margin-bottom: 10px;
  }

  .links-footer {
    color: #444444;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
  }

  .links-footer:hover {
    color: #000000;
  }

  @media screen and (max-width: 700px) {
    footer {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 6px;
      padding: 10px 8px;
    }

    .footer-section {
      min-width: 0;
      text-align: center;
    }

    .footer-section h3 {
      font-size: 0.68rem;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .links-footer {
      font-size: 0.58rem;
      line-height: 1.2;
      margin-bottom: 4px;
      overflow-wrap: anywhere;
    }
  }

  @media screen and (max-width: 420px) {
    footer {
      gap: 5px;
      padding: 8px 6px;
    }

    .footer-section h3 {
      font-size: 0.62rem;
    }

    .links-footer {
      font-size: 0.52rem;
    }

    .section-title h2,
    .section-title h3 {
      font-size: 1.2rem;
    }

    .text-startseite {
      font-size: 0.82rem;
    }
  }

  .Plakat-Aktuell {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
  }

  .Plakat-Aktuell img {
    display: block;
    width: min(92vw, 760px);
    height: auto;
    max-height: min(82vh, 920px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .email {
    color: #444444;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
  }

  .email:hover {
    color: #000000;
  }

  .wrapper {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;

    /* Centering the form */
    margin: auto; /* Centers horizontally */
    position: relative;
    top: 78%; /* Further increased to push the wrapper down */
    transform: translateY(-5%); /* Slight adjustment */
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.wrapper .inputbox {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 15px 0;
}

.inputbox input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-style: 16px;
    color: #fff;
    padding: 20px 45px 20px;
}

.inputbox input::placeholder {
    color: #fff;
}

.inputbox i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

}

.wrapper .remember {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: .15px 0 15px;
}

.remember label input {
    accent-color: #fff;
    margin-right: 3px;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.home a i {
    color: white; /* Setzt die Icon-Farbe auf weiß */
    font-size: 2.0rem; /* Vergrößert das Icon */
}

.home {
    position: fixed;
    top: 90px;
    left: 90px;
}


/* Allgemeines Styling */
body {
  font-family: "Open Sans", sans-serif;
  background-color: whitesmoke;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  color: #000000;
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 20px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

/* Search Bar */
.inputbox {
  position: relative;
  margin: 20px auto;
  width: 80%;
}

.inputbox input {
  width: 100%;
  padding: 10px;
  font-size: 1.2em;
  border-radius: 30px;
  border: none;
  outline: none;
}

.inputbox i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: rgba(0, 0, 0, 0.623);
}

/* Song List */
#songList {
  margin: 20px auto;
  width: 80%;
}

#songs {
  list-style: none;
  padding: 0;
}

#songs li {
  background: rgba(0, 0, 0, 0.404);
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  color: #ffffff;
}

#songs li:hover {
  background: rgba(0, 0, 0, 0.568);
}

/* Music Player Popup */
.music-player-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.644);
  color: white;
  padding: 20px;
  display: none;
  z-index: 1000;
  border-radius: 20px 20px 0 0;
}

.player-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-art-container {
  margin-bottom: 20px;
}

.album-art {
  width: 200px;
  height: 200px;
  border-radius: 10%;
  object-fit: cover;
}

/* Song Details */
.song-details {
  text-align: center;
  margin-bottom: 20px;
}

.song-details h2 {
  font-size: 1.5em;
  margin: 5px 0;
}

.song-details h3 {
  font-size: 1em;
  color: lightgray;
}

/* Controls */
.controls {
  display: flex;
  gap: 30px;
}

.controls button {
  background: none;
  border: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
}

.controls button:hover {
  color: lightgray;
}

/* Progress Bar */
.progress-bar {
  width: 80%;
}

.progress-bar input[type="range"] {
  appearance: none;
  width: 100%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  height: 5px;
}

.progress-bar input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
}

/* Album-Container */
.album {
  display: inline-block;
  margin: 20px;
  cursor: pointer;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Hintergrund hinter dem Bild und dem Text */
  border-radius: 10px; /* Abgerundete Ecken um das gesamte Album */
  padding: 15px; /* Abstand innerhalb des Containers */
  width: 215px; /* Breite des gesamten Containers */
}

/* Album-Bild */
.album img {
  width: 150px;
  height: 150px;
  border-radius: 8px; /* Abgerundete Ecken für das Bild */
  display: block; /* Bild blockweise anzeigen */
  margin: 0 auto 10px; /* Bild mittig setzen und Abstand nach unten */
}

/* Weißer Text unter dem Bild */
.album h3 {
  color: whitesmoke;  /* Schriftfarbe weiß */
  font-size: 1.2em;
  margin: 0; /* Entferne den Standardabstand */
  padding: 5px 0; /* Füge oben und unten ein wenig Abstand hinzu */
}

/* Hover-Effekt für das gesamte Album */
.album:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Hintergrund dunkler bei Hover */
}


/* Sound Vision Orchestra */
.svo-page {
  color: #1f2023;
  background:
    radial-gradient(circle at 18% 8%, rgba(225, 0, 10, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(207, 155, 70, 0.12), transparent 26%),
    #ffffff;
}

.svo-hero {
  max-width: 1120px;
  margin: 10px auto 28px;
  padding: 52px 28px 42px;
  text-align: center;
  border-bottom: 1px solid #ececec;
}

.svo-mark {
  position: relative;
  width: min(720px, 96vw);
  aspect-ratio: 1.7;
  margin: 0 auto 18px;
  padding: 0;
  overflow: hidden;
}

.svo-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.svo-logo-image[hidden] {
  display: none;
}

.svo-hidden-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.svo-letters {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 42px);
  color: #202124;
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0.02em;
}

.svo-o {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 0.94em;
  height: 0.72em;
  border: 0.095em solid #202124;
  border-radius: 50%;
  background: #ffffff;
  box-sizing: border-box;
  transform: translateY(0.015em);
}

.svo-o i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.018em;
  border-radius: 999px;
  background: #cf9b46;
}

.svo-o i:nth-of-type(1) { height: 0.12em; transform: translate(-50%, -50%) translateX(-0.27em); }
.svo-o i:nth-of-type(2) { height: 0.2em; transform: translate(-50%, -50%) translateX(-0.18em); }
.svo-o i:nth-of-type(3) { height: 0.3em; transform: translate(-50%, -50%) translateX(-0.09em); }
.svo-o i:nth-of-type(4) { height: 0.42em; transform: translate(-50%, -50%) translateX(0); }
.svo-o i:nth-of-type(5) { height: 0.3em; transform: translate(-50%, -50%) translateX(0.09em); }
.svo-o i:nth-of-type(6) { height: 0.2em; transform: translate(-50%, -50%) translateX(0.18em); }
.svo-o i:nth-of-type(7) { height: 0.12em; transform: translate(-50%, -50%) translateX(0.27em); }

.svo-swoosh {
  position: absolute;
  left: 18%;
  right: 12%;
  height: 7px;
  border-radius: 999px;
  transform-origin: left center;
  pointer-events: none;
}

.svo-swoosh-red {
  top: 8px;
  background: linear-gradient(90deg, #e1000a, #e1000a 72%, transparent);
  transform: rotate(-7deg);
}

.svo-swoosh-gold {
  top: 38px;
  left: 28%;
  right: 24%;
  height: 4px;
  background: linear-gradient(90deg, #cf9b46, rgba(207, 155, 70, 0));
  transform: rotate(-11deg);
}

.svo-dot {
  position: absolute;
  top: 0;
  right: 10%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e1000a;
}

.svo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 10px;
  color: #4b4b4d;
  font-size: clamp(0.95rem, 2.2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.18em;
}

.svo-kicker::before,
.svo-kicker::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: #e1000a;
}

.svo-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svo-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.svo-intro,
.svo-details,
.svo-contact {
  max-width: 1120px;
  margin: 0 auto 26px;
}

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

.svo-intro div,
.svo-details article,
.svo-contact {
  background: #ffffff;
  border: 1px solid #e9e3dc;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.svo-intro div {
  padding: 26px;
}

.svo-intro h2,
.svo-contact h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.svo-intro p,
.svo-details p,
.svo-contact p {
  margin: 0;
  color: #3d3d40;
  font-size: 1rem;
  line-height: 1.65;
}

.svo-intro p + p {
  margin-top: 12px;
}

.svo-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svo-details article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  overflow: hidden;
}

.svo-details article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e1000a, #cf9b46);
}

.svo-details h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.svo-contact {
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.12)),
    #ffffff;
}

.svo-contact p {
  max-width: 760px;
  margin: 0 auto 18px;
}

.svo-registration-page {
  padding-top: 30px;
}

.svo-registration-page .svo-contact {
  max-width: 980px;
}

.svo-registration-page h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

.svo-fee-notice {
  display: grid;
  gap: 5px;
  max-width: 680px;
  margin: 20px auto 24px;
  padding: 16px 18px;
  color: #202124;
  background: #fff8ec;
  border: 2px solid #cf9b46;
  border-radius: 8px;
  text-align: center;
}

.svo-fee-notice strong {
  font-size: 1.25rem;
  color: #b10008;
}

.svo-fee-notice span {
  line-height: 1.45;
  font-weight: 700;
}

.svo-deadline-notice {
  display: grid;
  gap: 5px;
  max-width: 680px;
  margin: 20px auto 0;
  padding: 15px 18px;
  color: #202124;
  background: #f6f6f6;
  border: 1px solid #d8d1c7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  text-align: left;
}

.svo-deadline-notice strong {
  color: #b10008;
  font-size: 1.15rem;
}

.svo-form-status {
  margin: 0 0 16px;
  color: #b10008;
  font-weight: 800;
  text-align: center;
}

.svo-form-status-success {
  color: #16723a;
}

.svo-form-status-info {
  color: #5f4a1a;
}

.svo-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.svo-contact a {
  display: inline-block;
  color: #ffffff;
  background: #e1000a;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.svo-contact a:hover,
.svo-contact a:focus {
  background: #b10008;
}

.svo-form-toggle {
  display: inline-block;
  color: #ffffff;
  background: #e1000a;
  border: 0;
  border-radius: 7px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.svo-form-toggle:hover,
.svo-form-toggle:focus {
  background: #b10008;
}

.svo-form-toggle:active {
  transform: translateY(1px);
}

.svo-form {
  margin-top: 22px;
  text-align: left;
}

.svo-form[hidden] {
  display: none;
}

.svo-confirmation-panel {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 24px auto 0;
  padding: 18px;
  color: #202124;
  background: #f0fbf4;
  border: 1px solid #b9dfc8;
  border-left: 5px solid #16723a;
  border-radius: 8px;
  text-align: left;
}

.svo-confirmation-panel[hidden] {
  display: none !important;
}

.svo-confirmation-panel strong {
  color: #16723a;
  font-size: 1.18rem;
}

.svo-confirmation-panel span {
  color: #2c4535;
  font-weight: 700;
  line-height: 1.5;
}

.svo-confirmation-panel a {
  justify-self: start;
  margin-top: 4px;
}

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

.svo-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #202124;
  font-weight: 800;
}

.svo-form-wide {
  grid-column: 1 / -1;
}

.svo-checkbox-label {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px !important;
  padding: 14px;
  background: #fff8ec;
  border: 1px solid #e2c893;
  border-radius: 8px;
}

.svo-checkbox-label input {
  width: 18px !important;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0 !important;
  accent-color: #e1000a;
}

.svo-choice-fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  background: #fafafa;
}

.svo-choice-fieldset legend {
  padding: 0 8px;
  color: #202124;
  font-weight: 900;
}

.svo-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.svo-choice-option {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  min-width: 110px;
  padding: 11px 13px;
  background: #ffffff;
  border: 1px solid #d8d1c7;
  border-radius: 7px;
  cursor: pointer;
}

.svo-choice-option input {
  width: 18px !important;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 !important;
  accent-color: #e1000a;
}

.svo-club-name-field {
  margin-top: 14px;
}

.svo-club-name-field[hidden] {
  display: none !important;
}

.svo-parent-consent-notice {
  display: grid;
  gap: 9px;
  padding: 15px 16px;
  color: #202124;
  background: #fff8ec;
  border: 1px solid #e2c893;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
}

.svo-parent-consent-notice[hidden] {
  display: none !important;
}

.svo-parent-consent-notice strong {
  color: #b10008;
  font-size: 1.05rem;
}

.svo-parent-consent-notice span {
  color: #3d3d40;
  font-weight: 700;
  line-height: 1.45;
}

.svo-parent-consent-notice a {
  justify-self: start;
  margin-top: 2px;
}

.svo-instruments {
  margin: 0;
  padding: 16px;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  background: #fafafa;
}

.svo-instruments legend {
  padding: 0 8px;
  color: #202124;
  font-weight: 900;
}

.svo-instrument-list {
  display: grid;
  gap: 14px;
}

.svo-instrument-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.svo-secondary-button,
.svo-remove-instrument {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  margin: 14px 0 0 !important;
  color: #b10008 !important;
  background: #ffffff !important;
  border: 1px solid #e2c893 !important;
  border-radius: 7px;
  padding: 10px 14px !important;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.svo-remove-instrument {
  margin: 0 !important;
  color: #555555 !important;
}

.svo-secondary-button:hover,
.svo-secondary-button:focus,
.svo-remove-instrument:hover,
.svo-remove-instrument:focus {
  color: #ffffff !important;
  background: #b10008 !important;
}

.svo-form input,
.svo-form textarea {
  width: 100%;
  border: 1px solid #d8d1c7;
  border-radius: 7px;
  background: #ffffff;
  color: #202124;
  font: inherit;
  font-weight: 500;
  line-height: 1.35;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.svo-form textarea {
  resize: vertical;
  min-height: 98px;
}

.svo-form input:focus,
.svo-form textarea:focus {
  border-color: #e1000a;
  box-shadow: 0 0 0 3px rgba(225, 0, 10, 0.12);
}

.svo-form button {
  display: block;
  margin: 22px auto 0;
  color: #ffffff;
  background: #e1000a;
  border: 0;
  border-radius: 7px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.svo-form button:hover,
.svo-form button:focus {
  background: #b10008;
}

.svo-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.svo-form button:active {
  transform: translateY(1px);
}

.svo-admin-page {
  padding-top: 30px;
}

.svo-admin-page .svo-contact {
  max-width: 1180px;
}

.svo-admin-source-label {
  display: block;
  margin: 22px 0 8px;
  color: #202124;
  font-weight: 900;
  text-align: left;
}

.svo-admin-source {
  width: 100%;
  min-height: 260px;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  padding: 14px;
  color: #202124;
  background: #ffffff;
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.svo-admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.svo-admin-toolbar button {
  color: #ffffff;
  background: #e1000a;
  border: 0;
  border-radius: 7px;
  padding: 11px 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.svo-admin-toolbar button:hover,
.svo-admin-toolbar button:focus {
  background: #b10008;
}

.svo-admin-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.svo-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  background: #ffffff;
}

.svo-registration-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  color: #202124;
  font-size: 0.9rem;
  text-align: left;
}

.svo-registration-table th,
.svo-registration-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ece6dd;
  vertical-align: top;
}

.svo-registration-table th {
  position: sticky;
  top: 0;
  background: #f6f6f6;
  font-weight: 900;
}

.svo-registration-table tr:nth-child(even) td {
  background: #fafafa;
}

@media screen and (max-width: 760px) {
  .svo-hero {
    padding: 30px 10px 24px;
    margin-top: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .container-all.svo-page {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .svo-mark {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
  }

  .svo-logo-image {
    object-fit: contain;
  }

  .svo-letters {
    font-size: clamp(4rem, 22vw, 7rem);
    gap: 12px;
  }

  .svo-dot {
    width: 14px;
    height: 14px;
  }

  .svo-kicker {
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .svo-kicker::before,
  .svo-kicker::after {
    width: 32px;
  }

  .svo-hero h1 {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }

  .svo-lead {
    font-size: 0.95rem;
  }

  .svo-intro,
  .svo-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svo-intro div,
  .svo-details article,
  .svo-contact {
    padding: 18px;
    min-width: 0;
    box-sizing: border-box;
  }

  .svo-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .svo-form button {
    width: 100%;
  }

  .svo-instrument-row {
    grid-template-columns: 1fr;
  }

  .svo-secondary-button,
  .svo-remove-instrument {
    width: 100%;
  }

  .svo-admin-toolbar button {
    width: 100%;
  }

  .svo-form-toggle {
    width: 100%;
  }
}

/* Final mobile overrides: keep header/footer compact on phone browsers with wide layout viewports. */
@media screen and (max-width: 900px) {
  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    position: static !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 8px 8px !important;
  }

  .site-brand {
    width: 100% !important;
    justify-content: center !important;
    gap: 7px !important;
    font-size: 0.86rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .site-logo {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
  }

  .site-nav {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: stretch !important;
    align-items: center !important;
    gap: 6px 5px !important;
    overflow-x: hidden !important;
    padding: 0 !important;
  }

  .site-nav a {
    justify-self: center !important;
    max-width: 100% !important;
    font-size: 0.58rem !important;
    line-height: 1.15 !important;
    padding: 3px 5px !important;
    border-radius: 5px !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-nav a[href="sound-vision-orchestra.html"] {
    grid-column: span 2 !important;
    font-size: 0.56rem !important;
  }

  .container-all {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 10px !important;
    overflow-x: hidden !important;
  }

  .svo-page,
  .svo-contact,
  .svo-registration-page .svo-contact,
  .svo-deadline-notice,
  .svo-fee-notice,
  .svo-confirmation-panel,
  .svo-parent-consent-notice,
  .svo-choice-fieldset,
  .svo-instruments {
    width: 100% !important;
    max-width: 100% !important;
  }

  .svo-registration-page {
    padding: 8px 0 !important;
  }

  .svo-registration-page .svo-contact {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 auto !important;
    padding: 16px 12px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
  }

  .svo-registration-page h1 span {
    display: block !important;
  }

  .svo-registration-page h1 {
    font-size: clamp(1.42rem, 7vw, 1.75rem) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere !important;
  }

  .svo-form,
  .svo-form-grid,
  .svo-form label {
    min-width: 0 !important;
  }

  .svo-form input,
  .svo-form textarea {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .svo-deadline-notice,
  .svo-fee-notice {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 13px 12px !important;
  }

  .svo-contact p,
  .svo-deadline-notice span,
  .svo-fee-notice span {
    overflow-wrap: anywhere !important;
  }

  .slideshow-container {
    width: 100% !important;
    height: clamp(180px, 56vw, 250px) !important;
    margin: 14px auto 8px !important;
  }

  .section-title {
    width: auto !important;
    max-width: 100% !important;
    margin: 12px auto 6px !important;
  }

  .section-title h2,
  .section-title h3 {
    font-size: 1.25rem !important;
    line-height: 1.15 !important;
  }

  .text-startseite {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    margin: 6px auto 16px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    overflow-wrap: break-word !important;
  }

  footer {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 8px 6px !important;
    overflow: hidden !important;
  }

  .footer-section {
    min-width: 0 !important;
    text-align: center !important;
  }

  .footer-section h3 {
    margin: 0 0 4px !important;
    font-size: 0.64rem !important;
    line-height: 1.05 !important;
  }

  .links-footer {
    margin-bottom: 3px !important;
    font-size: 0.54rem !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere !important;
  }

  .links-footer i {
    font-size: 1em !important;
  }
}

/* Readability update for the standard website pages. SVO pages keep their own layout. */
.standard-site .container-all {
  width: min(100% - 32px, 1120px);
  margin: 32px auto;
  padding: 0;
}

.standard-site .section-title {
  display: flex;
  justify-content: flex-start;
  width: min(100%, 780px);
  margin: 26px auto 10px;
  text-align: left;
}

.standard-site .board-page-title {
  justify-content: center;
  text-align: center;
}

.standard-site .section-title h2,
.standard-site .section-title h3,
.standard-site .header {
  margin: 0;
  color: #111111;
  font-weight: 800;
  line-height: 1.15;
}

.standard-site .header {
  display: block;
  width: min(100%, 780px);
  margin: 24px auto 8px;
  text-align: left;
}

.standard-site .text-startseite {
  display: block;
  width: min(100%, 780px);
  max-width: 780px;
  margin: 0 auto 24px;
  padding: 0;
  color: #111111;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.72;
  text-align: left;
}

.standard-site .text-startseite p {
  margin: 0;
}

.standard-site .text-startseite p + p {
  margin-top: 12px;
}

.standard-site .content-list {
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.standard-site .content-list li {
  margin: 7px 0;
  padding-left: 4px;
}

.standard-site .content-grid,
.standard-site .board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
  margin: 8px auto 24px;
}

.standard-site .info-card,
.standard-site .board-card {
  min-width: 0;
  padding: 20px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.standard-site .board-contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 520px);
  margin: 10px auto 20px;
  padding: 18px 22px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: left;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.standard-site .board-contact-note:hover,
.standard-site .board-contact-note:focus {
  border-color: rgba(225, 0, 10, 0.35);
  box-shadow: 0 12px 28px rgba(225, 0, 10, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.standard-site .board-contact-note h3 {
  margin: 0 0 3px;
  color: #111111;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.standard-site .board-contact-note p {
  margin: 0;
  color: #303030;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.standard-site .board-contact-note p + p {
  margin-top: 8px;
}

.standard-site .board-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: #e1000a;
  border-radius: 10px;
  flex: 0 0 auto;
  font-size: 1rem;
}

.standard-site .board-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.standard-site .board-contact-line strong {
  color: #111111;
  font-weight: 800;
}

.standard-site .board-contact-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.standard-site .info-card i {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: #e1000a;
  background: rgba(225, 0, 10, 0.08);
  border-radius: 8px;
  font-size: 1rem;
}

.standard-site .info-card h3,
.standard-site .board-card h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
}

.standard-site .info-card p,
.standard-site .board-card p {
  margin: 0;
  color: #303030;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.standard-site .board-card p + p {
  margin-top: 8px;
}

.standard-site .content-callout {
  padding: 18px 20px;
  background: #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
}

.contact-form-toggle,
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 11px 16px;
  color: #ffffff;
  background: #e1000a;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form-toggle:hover,
.contact-form-toggle:focus,
.contact-submit:hover,
.contact-submit:focus {
  background: #b10008;
  outline: none;
}

.contact-form-toggle:active,
.contact-submit:active {
  transform: translateY(1px);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.contact-form[hidden] {
  display: none;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 11px 12px;
  color: #111111;
  background: #ffffff;
  font: inherit;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e1000a;
  box-shadow: 0 0 0 3px rgba(225, 0, 10, 0.12);
  outline: none;
}

.contact-submit {
  justify-self: start;
  margin-top: 0;
}

.standard-site .email {
  display: inline;
  overflow-wrap: anywhere;
}

.standard-site .appointments-card {
  width: min(100%, 980px);
  margin: 0 auto 34px;
}

.standard-site .appointments-card .section-title,
.standard-site .appointments-card .text-startseite {
  width: min(100%, 780px);
}

.km-status {
  width: min(100%, 780px);
  margin: 10px auto 16px;
  color: #555555;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.km-status-success {
  color: #16723a;
}

.km-status-error {
  color: #b10008;
}

.km-event-list {
  display: grid;
  gap: 14px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.km-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 18px 20px;
  color: #555555;
  background: #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.4;
}

.km-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(225, 0, 10, 0.18);
  border-top-color: #e1000a;
  border-radius: 50%;
  animation: km-spin 0.85s linear infinite;
  flex: 0 0 auto;
}

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

.km-event {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.km-event-date {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px;
  background: #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
}

.km-event-date strong {
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.km-event-date span,
.km-event-meta {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.km-event-body {
  min-width: 0;
}

.km-event-body h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.25;
}

.km-event-body h3 a {
  color: inherit;
  text-decoration: none;
}

.km-event-body h3 a:hover,
.km-event-body h3 a:focus {
  color: #b10008;
  text-decoration: underline;
}

.km-event-body p {
  margin: 10px 0 0;
  color: #303030;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

.km-empty {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 16px 18px;
  color: #555555;
  background: #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .standard-site .site-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 7px 8px !important;
  }

  .standard-site .site-brand {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 150px !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    font-size: 0.68rem !important;
    line-height: 1.05 !important;
    text-align: left !important;
  }

  .standard-site .site-logo {
    width: 24px !important;
    height: 24px !important;
  }

  .standard-site .site-nav {
    display: flex !important;
    flex: 1 1 auto !important;
    grid-template-columns: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 0 2px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .standard-site .site-nav::-webkit-scrollbar {
    display: none !important;
  }

  .standard-site .site-nav a,
  .standard-site .site-nav a[href="sound-vision-orchestra.html"] {
    flex: 0 0 auto !important;
    grid-column: auto !important;
    justify-self: auto !important;
    max-width: none !important;
    font-size: 0.62rem !important;
    line-height: 1.1 !important;
    padding: 4px 6px !important;
    white-space: nowrap !important;
  }

  .standard-site .container-all {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 16px 14px !important;
  }

  .standard-site .section-title,
  .standard-site .header,
  .standard-site .text-startseite {
    width: 100% !important;
    max-width: 100% !important;
  }

  .standard-site .section-title h2,
  .standard-site .section-title h3,
  .standard-site .header {
    font-size: 1.35rem !important;
  }

  .standard-site .text-startseite {
    padding: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .standard-site .content-grid,
  .standard-site .board-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .standard-site .board-contact-note {
    width: 100%;
    margin: 8px auto 14px;
    padding: 16px;
  }

  .standard-site .info-card,
  .standard-site .board-card {
    padding: 16px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-submit,
  .contact-form-toggle {
    width: 100%;
  }

  .standard-site .appointments-card {
    width: 100%;
    margin-bottom: 24px;
  }

  .km-status,
  .km-event-list,
  .km-empty {
    width: 100%;
  }

  .km-event {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .km-event-date {
    padding: 10px 12px;
  }
}

/* Mobile hamburger navigation */
.site-menu-toggle {
  position: fixed;
  top: 8px;
  right: 12px;
  z-index: 120;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 901px) {
  .site-menu-toggle {
    display: none !important;
  }
}

.site-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.site-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.menu-open .site-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .site-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
  .site-header,
  .standard-site .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    min-height: 56px !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 9px 64px 9px 12px !important;
    box-sizing: border-box !important;
  }

  .site-brand,
  .standard-site .site-brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    color: #111111 !important;
    font-size: clamp(0.86rem, 3.9vw, 1rem) !important;
    line-height: 1.08 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .site-logo,
  .standard-site .site-logo {
    width: 30px !important;
    height: 30px !important;
    border-radius: 7px !important;
  }

  .site-brand span,
  .standard-site .site-brand span {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .site-menu-toggle {
    position: fixed !important;
    top: 8px !important;
    right: 12px !important;
    transform: none !important;
    z-index: 120 !important;
    display: inline-flex !important;
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.18) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .site-menu-toggle:hover,
  .site-menu-toggle:focus {
    color: #e1000a;
    outline: none;
  }

  .site-nav,
  .standard-site .site-nav {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 101 !important;
    display: none !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: calc(100vh - 78px) !important;
    padding: 8px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border: 1px solid #dedede !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
  }

  .site-header.menu-open .site-nav,
  .standard-site .site-header.menu-open .site-nav {
    display: flex !important;
  }

  .site-nav a,
  .standard-site .site-nav a,
  .standard-site .site-nav a[href="sound-vision-orchestra.html"] {
    flex: 0 0 auto !important;
    grid-column: auto !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #e1000a !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    text-align: left !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* Navigation refinement */
.site-header {
  align-items: center;
}

.site-brand {
  flex: 0 1 360px;
  min-width: 0;
}

.site-brand span {
  min-width: 0;
}

.site-nav {
  flex: 1 1 auto;
  align-items: center;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  line-height: 1.2;
}

.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: #b10008;
  background: rgba(225, 0, 10, 0.12);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #b10008;
  background: rgba(225, 0, 10, 0.08);
}

.site-nav a:focus-visible,
.site-menu-toggle:focus-visible {
  outline: 3px solid rgba(225, 0, 10, 0.28);
  outline-offset: 2px;
}

.site-menu-toggle:focus-visible {
  color: #e1000a;
}

@media screen and (min-width: 901px) {
  .site-header {
    flex-wrap: nowrap;
    padding: 12px clamp(16px, 2vw, 24px);
    gap: clamp(10px, 1.4vw, 18px);
  }

  .site-brand {
    flex: 1 1 280px;
    max-width: 370px;
    font-size: clamp(1rem, 1.35vw, 1.4rem);
  }

  .site-logo {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .site-nav {
    display: flex;
    flex: 5 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    overflow: visible;
  }

  .site-nav a {
    max-width: 240px;
    padding: 7px 9px;
    font-size: clamp(0.78rem, 0.92vw, 0.98rem);
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1260px) {
  .site-nav {
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 900px) {
  html,
  body,
  body.standard-site {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header,
  .standard-site .site-header {
    min-height: 58px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 64px !important;
  }

  .site-menu-toggle {
    position: fixed !important;
    top: 8px !important;
    right: 12px !important;
    z-index: 10000 !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 42px !important;
    height: 42px !important;
  }

  .standard-site .container-all,
  .standard-site .content-grid,
  .standard-site .board-grid,
  .standard-site .appointments-card,
  .standard-site .km-event-list,
  .standard-site .text-startseite,
  .standard-site .section-title,
  .standard-site .header {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .standard-site .container-all {
    margin-right: 0 !important;
    margin-left: 0 !important;
    overflow-x: hidden !important;
  }

  .standard-site .info-card,
  .standard-site .board-card,
  .standard-site .km-event {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .site-nav a.active,
  .site-nav a[aria-current="page"],
  .standard-site .site-nav a.active,
  .standard-site .site-nav a[aria-current="page"] {
    color: #b10008 !important;
    background: rgba(225, 0, 10, 0.12) !important;
  }

  .site-nav a:focus-visible,
  .standard-site .site-nav a:focus-visible {
    outline: 3px solid rgba(225, 0, 10, 0.28) !important;
    outline-offset: 2px !important;
  }
}

/* Homepage */
.home-page .home-main {
  width: min(100% - 32px, 1120px);
  margin: 28px auto 42px;
  padding: 0;
}

.home-page .home-slider-section {
  margin: 0 auto 46px;
}

.home-page .slideshow-container {
  width: min(100%, 980px);
  height: clamp(300px, 44vw, 520px);
  margin: 0 auto 14px;
  border: 1px solid #e9e3dc;
  border-radius: 8px;
  background: #f7f7f7;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.home-page .mySlides {
  transform: none;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.home-page .mySlides.active {
  transform: none;
  opacity: 1;
  z-index: 2;
}

.home-page .mySlides.enter-right,
.home-page .mySlides.enter-left,
.home-page .mySlides.exit-left,
.home-page .mySlides.exit-right {
  transform: none;
}

.home-page .mySlides.exit-left,
.home-page .mySlides.exit-right {
  opacity: 0;
}

.home-page .slide-caption {
  right: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.42);
  border-radius: 7px;
}

.home-page .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.home-page .dot {
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #d2d2d2;
  border-radius: 50%;
  cursor: pointer;
}

.home-page .dot:hover,
.home-page .dot:focus-visible {
  background: #b10008;
  outline: 3px solid rgba(225, 0, 10, 0.22);
  outline-offset: 3px;
}

.home-page .dot.active {
  background: #e1000a;
  transform: scale(1.15);
}

.home-page .home-intro {
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-page .home-eyebrow,
.home-page .home-section-heading p {
  margin: 0 0 10px;
  color: #e1000a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-page .home-intro h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
}

.home-page .home-subline {
  max-width: 760px;
  margin: 18px auto 0;
  color: #111111;
  font-size: clamp(1.18rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
}

.home-page .home-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: #303030;
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}

.home-page .home-copy p {
  margin: 0;
}

.home-page .home-copy p + p {
  margin-top: 12px;
}

.home-page .home-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 44px;
}

.home-page .home-feature-card,
.home-page .home-small-card,
.home-page .home-teaser,
.home-page .home-cta {
  color: #111111;
  background: #ffffff;
  border: 1px solid #e9e3dc;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.home-page .home-feature-card {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
}

.home-page .home-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e1000a, #cf9b46);
}

.home-page .home-feature-card h2,
.home-page .home-section-heading h2,
.home-page .home-cta h2 {
  margin: 0;
  color: #111111;
  font-weight: 900;
  line-height: 1.1;
}

.home-page .home-feature-card h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.home-page .home-feature-card p,
.home-page .home-small-card p,
.home-page .home-teaser p,
.home-page .home-cta p {
  margin: 12px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.home-page .home-section {
  margin: 0 auto 46px;
}

.home-page .home-section-heading {
  max-width: 760px;
  margin: 0 auto 18px;
}

.home-page .home-section-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

.home-page .home-instrument-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-page .home-small-card {
  padding: 22px;
}

.home-page .home-small-card i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #e1000a;
  background: rgba(225, 0, 10, 0.09);
  border-radius: 8px;
  font-size: 1rem;
}

.home-page .home-small-card h3 {
  margin: 0;
  color: #111111;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.2;
}

.home-page .home-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-page .home-teaser {
  display: block;
  min-width: 0;
  padding: 18px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-page .home-teaser span {
  display: block;
  color: #111111;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.home-page .home-teaser p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-page .home-teaser:hover,
.home-page .home-teaser:focus-visible {
  border-color: rgba(225, 0, 10, 0.38);
  box-shadow: 0 14px 30px rgba(225, 0, 10, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.home-page .home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.12)),
    #ffffff;
}

.home-page .home-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.home-page .home-cta p {
  max-width: 700px;
}

.home-page .home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.home-page .home-primary-button,
.home-page .home-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.home-page .home-primary-button {
  color: #ffffff;
  background: #e1000a;
}

.home-page .home-primary-button:hover,
.home-page .home-primary-button:focus-visible {
  background: #b10008;
  outline: none;
}

.home-page .home-secondary-link {
  color: #b10008;
  background: rgba(225, 0, 10, 0.08);
}

.home-page .home-secondary-link:hover,
.home-page .home-secondary-link:focus-visible {
  color: #ffffff;
  background: #b10008;
  outline: none;
}

@media screen and (max-width: 1100px) {
  .home-page .home-teaser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  .home-page .home-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 16px 14px !important;
  }

  .home-page .home-slider-section {
    margin-bottom: 30px;
  }

  .home-page .slideshow-container {
    width: 100% !important;
    height: clamp(220px, 58vw, 330px) !important;
    margin: 0 auto 12px !important;
  }

  .home-page .home-intro {
    margin-bottom: 24px;
    text-align: left;
  }

  .home-page .home-intro h1 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .home-page .home-subline {
    margin-top: 14px;
    font-size: 1.13rem;
  }

  .home-page .home-copy {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .home-page .home-feature-grid,
  .home-page .home-instrument-grid,
  .home-page .home-teaser-grid,
  .home-page .home-cta {
    grid-template-columns: 1fr;
  }

  .home-page .home-feature-grid,
  .home-page .home-section {
    margin-bottom: 30px;
  }

  .home-page .home-feature-card,
  .home-page .home-small-card,
  .home-page .home-teaser,
  .home-page .home-cta {
    padding: 18px;
  }

  .home-page .home-feature-card {
    min-height: 0;
  }

  .home-page .home-section-heading {
    margin-bottom: 14px;
  }

  .home-page .home-cta-actions {
    justify-content: flex-start;
  }

  .home-page .home-primary-button,
  .home-page .home-secondary-link {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .home-page .slideshow-container {
    height: 215px !important;
  }

  .home-page .slide-caption {
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .home-page .slider-dots {
    gap: 8px;
  }
}

/* Ausbildung */
.education-page .education-main {
  width: min(100% - 32px, 1120px);
  margin: 44px auto 42px;
  padding: 0;
}

.education-page .education-hero {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.education-page .education-eyebrow,
.education-page .education-section-heading p {
  margin: 0 0 10px;
  color: #e1000a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-page .education-hero h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
}

.education-page .education-hero p:not(.education-eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: #303030;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
}

.education-page .education-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto 46px;
}

.education-page .education-card,
.education-page .education-step,
.education-page .education-early-card,
.education-page .education-details article,
.education-page .education-cta {
  color: #111111;
  background: #ffffff;
  border: 1px solid #e9e3dc;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.education-page .education-card {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
}

.education-page .education-card::before,
.education-page .education-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e1000a, #cf9b46);
}

.education-page .education-card i {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #e1000a;
  background: rgba(225, 0, 10, 0.09);
  border-radius: 8px;
  font-size: 1rem;
}

.education-page .education-card h2,
.education-page .education-section-heading h2,
.education-page .education-early-card h2,
.education-page .education-cta h2 {
  margin: 0;
  color: #111111;
  font-weight: 900;
  line-height: 1.1;
}

.education-page .education-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.education-page .education-card p,
.education-page .education-step p,
.education-page .education-early-card p,
.education-page .education-details p,
.education-page .education-cta p {
  margin: 12px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.education-page .education-path-section {
  margin: 0 auto 46px;
}

.education-page .education-section-heading {
  max-width: 760px;
  margin: 0 auto 12px;
}

.education-page .education-section-heading h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
}

.education-page .education-path-note {
  max-width: 760px;
  margin: 0 auto 18px;
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.6;
}

.education-page .education-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.education-page .education-step {
  position: relative;
  min-width: 0;
  padding: 20px;
}

.education-page .education-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -13px;
  z-index: 2;
  width: 20px;
  height: 2px;
  background: #e1000a;
}

.education-page .education-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: #ffffff;
  background: #e1000a;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.education-page .education-step h3 {
  margin: 0;
  color: #111111;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.2;
}

.education-page .education-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin: 0 auto 46px;
}

.education-page .education-early-card {
  padding: 24px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.07), rgba(207, 155, 70, 0.1)),
    #ffffff;
}

.education-page .education-early-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.education-page .education-early-card a,
.education-page .education-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 11px 16px;
  color: #ffffff;
  background: #e1000a;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.education-page .education-early-card a:hover,
.education-page .education-early-card a:focus-visible,
.education-page .education-primary-button:hover,
.education-page .education-primary-button:focus-visible {
  background: #b10008;
  outline: none;
}

.education-page .education-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.education-page .education-details article {
  padding: 18px;
}

.education-page .education-details strong {
  display: block;
  color: #111111;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.education-page .education-details p {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.education-page .education-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.12)),
    #ffffff;
}

.education-page .education-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.education-page .education-cta p {
  max-width: 760px;
}

.education-page .education-primary-button {
  margin-top: 0;
  white-space: nowrap;
}

@media screen and (max-width: 980px) {
  .education-page .education-card-grid,
  .education-page .education-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-page .education-step:not(:last-child)::after {
    display: none;
  }

  .education-page .education-split,
  .education-page .education-cta {
    grid-template-columns: 1fr;
  }

  .education-page .education-primary-button {
    justify-self: start;
  }
}

@media screen and (max-width: 900px) {
  .education-page .education-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
  }

  .education-page .education-hero {
    text-align: left;
    margin-bottom: 24px;
  }

  .education-page .education-hero h1 {
    font-size: clamp(2rem, 9.5vw, 3.1rem);
  }

  .education-page .education-hero p:not(.education-eyebrow) {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .education-page .education-card-grid,
  .education-page .education-path,
  .education-page .education-details {
    grid-template-columns: 1fr;
  }

  .education-page .education-card-grid,
  .education-page .education-path-section,
  .education-page .education-split {
    margin-bottom: 30px;
  }

  .education-page .education-card,
  .education-page .education-step,
  .education-page .education-early-card,
  .education-page .education-details article,
  .education-page .education-cta {
    min-height: 0;
    padding: 18px;
  }

  .education-page .education-section-heading {
    margin-bottom: 10px;
  }

  .education-page .education-primary-button,
  .education-page .education-early-card a {
    width: 100%;
  }
}

/* Musikalische Frueherziehung */
.early-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 0, 10, 0.05), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(207, 155, 70, 0.1), transparent 28%),
    #ffffff;
}

.early-page .early-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 0 auto 72px;
  padding: 62px 0 0;
  font-family: "Open Sans", sans-serif;
}

.early-page .early-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.07), rgba(207, 155, 70, 0.14)),
    #ffffff;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.06);
}

.early-page .early-hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 6vw, 70px);
  bottom: clamp(18px, 5vw, 48px);
  width: clamp(74px, 12vw, 150px);
  height: clamp(74px, 12vw, 150px);
  border: 2px solid rgba(225, 0, 10, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.early-page .early-eyebrow,
.early-page .early-section-kicker {
  margin: 0 0 10px;
  color: #e1000a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.early-page .early-hero h1,
.early-page .early-next-step h2,
.early-page .early-section-heading h2,
.early-page .early-cta h2 {
  margin: 0;
  color: #111111;
  font-weight: 900;
  line-height: 1.08;
}

.early-page .early-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(2.35rem, 5.3vw, 5rem);
}

.early-page .early-subline {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 18px 0 0;
  color: #1f1f22;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
}

.early-page .early-intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 20px 0 0;
  color: #3d3d40;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
}

.early-page .early-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 42px;
}

.early-page .early-card,
.early-page .early-panel,
.early-page .early-info-card {
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
}

.early-page .early-card {
  min-height: 245px;
  padding: 22px;
}

.early-page .early-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #e1000a;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.11), rgba(207, 155, 70, 0.18)),
    #ffffff;
  border-radius: 8px;
  font-size: 1.2rem;
}

.early-page .early-card h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.18;
}

.early-page .early-card p,
.early-page .early-next-step p,
.early-page .early-info-card p,
.early-page .early-cta p {
  margin: 12px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.early-page .early-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
  padding: 28px;
}

.early-page .early-next-step {
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.05), rgba(207, 155, 70, 0.12)),
    #ffffff;
}

.early-page .early-next-step h2,
.early-page .early-cta h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
}

.early-page .early-next-step p,
.early-page .early-cta p {
  max-width: 780px;
}

.early-page .early-secondary-button,
.early-page .early-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.early-page .early-secondary-button {
  color: #e1000a;
  background: #ffffff;
  border: 1px solid rgba(225, 0, 10, 0.22);
}

.early-page .early-primary-button {
  color: #ffffff;
  background: #e1000a;
  border: 1px solid #e1000a;
}

.early-page .early-secondary-button:hover,
.early-page .early-secondary-button:focus-visible {
  color: #ffffff;
  background: #e1000a;
  outline: none;
}

.early-page .early-primary-button:hover,
.early-page .early-primary-button:focus-visible {
  background: #b10008;
  border-color: #b10008;
  outline: none;
}

.early-page .early-info-section {
  margin-bottom: 42px;
}

.early-page .early-section-heading {
  max-width: 760px;
  margin-bottom: 16px;
}

.early-page .early-section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.early-page .early-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.early-page .early-info-card {
  padding: 22px;
}

.early-page .early-info-card strong {
  display: block;
  color: #111111;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2;
}

.early-page .early-info-card a {
  color: #e1000a;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.early-page .early-info-card a:hover,
.early-page .early-info-card a:focus-visible {
  color: #b10008;
  text-decoration: underline;
  outline: none;
}

.early-page .early-cta {
  margin-bottom: 0;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.15)),
    #ffffff;
}

.early-registration-page .early-form-panel {
  display: block;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.early-page .early-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  text-align: left;
}

.early-page .early-form-status {
  min-height: 1.35em;
  margin: 0;
  color: #16723a;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
}

.early-page .early-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.early-page .early-form label {
  display: grid;
  gap: 7px;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 800;
}

.early-page .early-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  padding: 11px 12px;
  color: #111111;
  background: #ffffff;
  font: inherit;
  font-weight: 400;
  line-height: 1.4;
}

.early-page .early-form input:focus {
  border-color: #e1000a;
  box-shadow: 0 0 0 3px rgba(225, 0, 10, 0.12);
  outline: none;
}

.early-page .early-children {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(225, 0, 10, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.04), rgba(207, 155, 70, 0.09)),
    #ffffff;
}

.early-page .early-children legend {
  padding: 0 8px;
  color: #111111;
  font-weight: 900;
}

.early-page .early-child-list {
  display: grid;
  gap: 14px;
}

.early-page .early-child-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(120px, 0.7fr) auto;
  gap: 12px;
  align-items: end;
}

.early-page .early-add-child {
  margin-top: 14px;
}

.early-page .early-remove-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #555555;
  background: #ffffff;
  border: 1px solid #d8d1c7;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.early-page .early-remove-child[hidden] {
  display: none;
}

.early-page .early-remove-child:hover,
.early-page .early-remove-child:focus-visible {
  color: #ffffff;
  background: #b10008;
  border-color: #b10008;
  outline: none;
}

.early-page .early-submit-button {
  justify-self: start;
  margin-top: 2px;
}

@media screen and (max-width: 1100px) {
  .early-page .early-card-grid,
  .early-page .early-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  body.early-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .early-page,
  .early-page *,
  .early-page *::before,
  .early-page *::after {
    box-sizing: border-box !important;
  }

  .early-page .early-main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .early-page .early-hero {
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    margin-bottom: 18px;
    padding: 22px 18px;
    overflow: hidden;
  }

  .early-page .early-hero::after {
    opacity: 0.5;
  }

  .early-page .early-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .early-page .early-subline {
    font-size: clamp(1.22rem, 6vw, 1.75rem);
  }

  .early-page .early-intro,
  .early-page .early-card p,
  .early-page .early-next-step p,
  .early-page .early-info-card p,
  .early-page .early-cta p,
  .early-page .early-card h2,
  .early-page .early-next-step h2,
  .early-page .early-section-heading h2,
  .early-page .early-cta h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .early-page .early-card-grid,
  .early-page .early-info-grid {
    grid-template-columns: 1fr;
  }

  .early-page .early-card-grid,
  .early-page .early-panel,
  .early-page .early-info-section {
    margin-bottom: 28px;
  }

  .early-page .early-card,
  .early-page .early-panel,
  .early-page .early-info-card {
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    min-height: 0;
    padding: 18px;
    overflow: hidden;
  }

  .early-page .early-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .early-page .early-form-grid,
  .early-page .early-child-row {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: minmax(0, 1fr);
  }

  .early-page .early-form,
  .early-page .early-form label,
  .early-page .early-children,
  .early-page .early-child-list {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .early-page .early-form input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .early-page .early-secondary-button,
  .early-page .early-primary-button,
  .early-page .early-remove-child {
    width: 100%;
    white-space: normal;
  }
}

/* Vororchester */
.orchestra-page .orchestra-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 44px auto 56px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.orchestra-page .orchestra-title {
  justify-content: center;
  width: min(100%, 860px);
  margin: 0 auto 26px;
  text-align: center;
}

.orchestra-page .orchestra-title h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
}

.orchestra-page .orchestra-grid {
  width: min(100%, 980px);
  gap: 18px;
  margin: 0 auto 30px;
}

.orchestra-page .orchestra-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
}

.orchestra-page .orchestra-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #e1000a;
}

.orchestra-page .orchestra-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #e1000a;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.1), rgba(207, 155, 70, 0.15)),
    #ffffff;
  border-radius: 8px;
  font-size: 1.12rem;
}

.orchestra-page .orchestra-card h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.orchestra-page .orchestra-card p,
.orchestra-page .orchestra-callout p {
  margin: 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.orchestra-page .orchestra-callout {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 28px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.06), rgba(207, 155, 70, 0.08)),
    #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
}

.orchestra-page .orchestra-info-sheet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.orchestra-page .orchestra-info-sheet-copy {
  min-width: 0;
}

.orchestra-page .orchestra-info-kicker {
  margin: 0 0 8px;
  color: #b10008;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orchestra-page .orchestra-info-sheet .orchestra-cta-button {
  flex: 0 0 auto;
  margin-top: 0;
}

.orchestra-page .orchestra-callout h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.12;
}

.orchestra-page .orchestra-callout p + p {
  margin-top: 12px;
}

.orchestra-page .orchestra-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 11px 17px;
  color: #ffffff;
  background: #e1000a;
  border: 1px solid #e1000a;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.orchestra-page .orchestra-cta-button:hover,
.orchestra-page .orchestra-cta-button:focus-visible {
  background: #b10008;
  border-color: #b10008;
  outline: none;
}

@media screen and (max-width: 900px) {
  .orchestra-page .orchestra-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
  }

  .orchestra-page .orchestra-title {
    margin-bottom: 20px;
    text-align: left;
  }

  .orchestra-page .orchestra-title h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .orchestra-page .orchestra-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-bottom: 24px;
  }

  .orchestra-page .orchestra-card,
  .orchestra-page .orchestra-callout {
    width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .orchestra-page .orchestra-info-sheet {
    display: block;
  }

  .orchestra-page .orchestra-info-sheet .orchestra-cta-button {
    margin-top: 16px;
  }

  .orchestra-page .orchestra-cta-button {
    width: 100%;
  }
}

/* News */
.news-page .news-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 44px auto 56px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.news-page .news-hero {
  width: min(100%, 860px);
  margin: 0 auto 28px;
  text-align: center;
}

.news-page .news-hero h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
}

.news-page .news-hero p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #3d3d40;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
}

.news-page .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.news-page .news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 15, 15, 0.05);
}

.news-page .news-card-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.news-page .news-card-media {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.05), rgba(207, 155, 70, 0.08)),
    #f7f7f7;
}

.news-page .news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-page .news-flyer-wrap {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 32px);
}

.news-page .news-flyer-image {
  width: min(100%, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 0, 10, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 15, 15, 0.07);
}

.news-page .news-flyer-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news-page .news-flyer-image figcaption {
  padding: 14px 16px 16px;
  color: #3d3d40;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.12)),
    #ffffff;
  border-top: 1px solid rgba(225, 0, 10, 0.14);
  font-size: 0.98rem;
  line-height: 1.4;
}

.news-page .news-flyer-image figcaption strong {
  color: #111111;
  font-weight: 900;
}

.news-page .news-flyer-image figcaption a {
  display: block;
  margin-top: 4px;
  color: #b10008;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.news-page .news-flyer-image figcaption a:hover,
.news-page .news-flyer-image figcaption a:focus-visible {
  color: #e1000a;
  text-decoration: underline;
}

.news-page .news-meta-pill {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: #b10008;
  background: rgba(225, 0, 10, 0.1);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-page .news-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.news-page .news-card time {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #b10008;
  background: rgba(225, 0, 10, 0.1);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.news-page .news-card h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.news-page .news-card p {
  margin: 16px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.news-page .news-card p a {
  color: #b10008;
  font-weight: 800;
  text-decoration: none;
}

.news-page .news-card p a:hover,
.news-page .news-card p a:focus-visible {
  color: #e1000a;
  text-decoration: underline;
  outline: none;
}

.news-page .news-feature-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.news-page .news-feature-list li {
  position: relative;
  padding-left: 20px;
  color: #3d3d40;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.news-page .news-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e1000a, #cf9b46);
}

.news-page .news-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 22px;
  padding: 12px 18px;
  color: #ffffff;
  background: #e1000a;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.news-page .news-primary-button:hover,
.news-page .news-primary-button:focus-visible {
  background: #b10008;
  outline: none;
  transform: translateY(-1px);
}

@media screen and (max-width: 900px) {
  body.news-page {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .news-page,
  .news-page *,
  .news-page *::before,
  .news-page *::after {
    box-sizing: border-box !important;
  }

  .news-page .news-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
    overflow-x: hidden !important;
  }

  .news-page .news-hero {
    margin-bottom: 20px;
    text-align: left;
  }

  .news-page .news-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .news-page .news-hero p {
    margin-left: 0;
  }

  .news-page .news-card-featured {
    grid-template-columns: 1fr;
  }

  .news-page .news-grid,
  .news-page .news-card,
  .news-page .news-card-content,
  .news-page .news-card-media,
  .news-page .news-flyer-wrap,
  .news-page .news-flyer-image,
  .news-page .news-flyer-image img,
  .news-page .news-flyer-image figcaption {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .news-page .news-card-media {
    min-height: 0;
  }

  .news-page .news-card-media img {
    height: auto;
  }

  .news-page .news-card-content {
    padding: 20px;
  }

  .news-page .news-flyer-wrap {
    padding: 12px;
  }

  .news-page .news-flyer-image figcaption {
    padding: 12px 14px 14px;
    font-size: clamp(0.86rem, 3.7vw, 0.96rem);
  }

  .news-page .news-flyer-image figcaption strong {
    display: block;
    margin-bottom: 4px;
  }

  .news-page .news-card h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .news-page .news-card h2,
  .news-page .news-card p,
  .news-page .news-feature-list li,
  .news-page .news-flyer-image figcaption a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .news-page .news-primary-button {
    width: 100%;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    white-space: normal;
  }
}

/* Vorstandschaft */
.board-page .board-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 44px auto 56px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.board-page .board-hero {
  width: min(100%, 860px);
  margin: 0 auto 22px;
  text-align: center;
}

.board-page .board-hero h1 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.45rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 1.06;
}

.board-page .board-hero p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #3d3d40;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
}

.board-page .board-contact-card {
  width: min(100%, 680px);
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.05), rgba(207, 155, 70, 0.07)),
    #ffffff;
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
  text-align: left;
  text-decoration: none;
}

.board-page .board-contact-card:hover,
.board-page .board-contact-card:focus-visible {
  border-color: rgba(225, 0, 10, 0.35);
  border-left-color: #e1000a;
  box-shadow: 0 16px 42px rgba(225, 0, 10, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.board-page .board-contact-icon {
  border-radius: 8px;
}

.board-page .board-contact-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.board-page .board-contact-content strong {
  color: #111111;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.board-page .board-contact-content span {
  color: #3d3d40;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.board-page .board-person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.board-page .board-person-card {
  position: relative;
  min-height: 190px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
}

.board-page .board-person-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #e1000a, rgba(207, 155, 70, 0.75));
}

.board-page .board-person-card-wide {
  grid-column: span 2;
}

.board-page .board-person-card-compact {
  min-height: 145px;
}

.board-page .board-person-card .board-role {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: #b10008;
  background: rgba(225, 0, 10, 0.1);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
}

.board-page .board-person-card h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.18;
}

.board-page .board-person-card p:not(.board-role) {
  margin: 16px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.board-page .board-person-card .email {
  color: #e1000a;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.board-page .board-person-card .email:hover,
.board-page .board-person-card .email:focus-visible {
  color: #b10008;
  text-decoration: underline;
  outline: none;
}

@media screen and (max-width: 1100px) {
  .board-page .board-person-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-page .board-person-card-wide {
    grid-column: span 2;
  }
}

@media screen and (max-width: 900px) {
  .board-page .board-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
  }

  .board-page .board-hero {
    margin-bottom: 18px;
    text-align: left;
  }

  .board-page .board-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .board-page .board-hero p {
    margin-left: 0;
  }

  .board-page .board-contact-card {
    width: 100%;
    margin-bottom: 22px;
    padding: 16px;
  }

  .board-page .board-person-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .board-page .board-person-card,
  .board-page .board-person-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 24px 20px;
  }
}

/* Kontakt */
.contact-page .contact-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 44px auto 56px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.contact-page .contact-hero {
  width: min(100%, 920px);
  margin: 0 auto 28px;
  padding: clamp(28px, 4.5vw, 52px);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.06), rgba(207, 155, 70, 0.11)),
    #ffffff;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.05);
}

.contact-page .contact-eyebrow {
  margin: 0 0 10px;
  color: #e1000a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-page .contact-hero h1,
.contact-page .contact-card h2,
.contact-page .contact-request-panel h2,
.contact-page .contact-general h2 {
  margin: 0;
  color: #111111;
  font-weight: 900;
  line-height: 1.08;
}

.contact-page .contact-hero h1 {
  max-width: 860px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.contact-page .contact-hero p:not(.contact-eyebrow) {
  max-width: 780px;
  margin: 20px 0 0;
  color: #3d3d40;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
}

.contact-page .contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 980px);
  margin: 0 auto 18px;
}

.contact-page .contact-card,
.contact-page .contact-funeral-note,
.contact-page .contact-request-panel,
.contact-page .contact-general {
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.04);
}

.contact-page .contact-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
}

.contact-page .contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #e1000a, rgba(207, 155, 70, 0.75));
}

.contact-page .contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #e1000a;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.1), rgba(207, 155, 70, 0.15)),
    #ffffff;
  border-radius: 8px;
  font-size: 1.15rem;
}

.contact-page .contact-card h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.contact-page .contact-card p,
.contact-page .contact-funeral-note p,
.contact-page .contact-request-panel p,
.contact-page .contact-general p {
  margin: 12px 0 0;
  color: #3d3d40;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.contact-page .contact-funeral-note {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 auto 32px;
  padding: 18px 20px;
  background: #f7f7f7;
}

.contact-page .contact-funeral-note span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #e1000a;
  background: #ffffff;
  border-radius: 8px;
}

.contact-page .contact-funeral-note p {
  margin: 0;
}

.contact-page .contact-request-panel {
  width: min(100%, 980px);
  margin: 0 auto 28px;
  padding: clamp(22px, 3.5vw, 34px);
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.06), rgba(207, 155, 70, 0.1)),
    #ffffff;
}

.contact-page .contact-request-copy {
  max-width: 820px;
}

.contact-page .contact-request-panel h2,
.contact-page .contact-general h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
}

.contact-page .contact-primary-button,
.contact-page .contact-submit {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.contact-page .contact-primary-button {
  margin-top: 20px;
}

.contact-page .contact-request-form {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(20, 20, 20, 0.1);
  box-shadow: 0 14px 38px rgba(15, 15, 15, 0.05);
}

.contact-page .contact-general {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 24px;
}

.contact-page .contact-general-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: #e1000a;
  border-radius: 8px;
}

.contact-page .contact-mail-link {
  display: inline-flex;
  margin-top: 14px;
  color: #e1000a;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-page .contact-mail-link:hover,
.contact-page .contact-mail-link:focus-visible {
  color: #b10008;
  text-decoration: underline;
  outline: none;
}

.contact-page .contact-primary-button:focus-visible,
.contact-page .contact-submit:focus-visible {
  outline: 3px solid rgba(225, 0, 10, 0.28);
  outline-offset: 2px;
}

@media screen and (max-width: 980px) {
  .contact-page .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-card:last-child {
    grid-column: span 2;
  }
}

@media screen and (max-width: 900px) {
  .contact-page .contact-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
  }

  .contact-page .contact-hero {
    padding: 22px 18px;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .contact-page .contact-card-grid,
  .contact-page .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-card:last-child {
    grid-column: auto;
  }

  .contact-page .contact-card,
  .contact-page .contact-funeral-note,
  .contact-page .contact-request-panel,
  .contact-page .contact-general {
    width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .contact-page .contact-card-grid {
    margin-bottom: 14px;
  }

  .contact-page .contact-funeral-note,
  .contact-page .contact-request-panel {
    margin-bottom: 24px;
  }

  .contact-page .contact-general {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-primary-button,
  .contact-page .contact-submit {
    width: 100%;
  }
}

/* Termine */
.appointments-page .appointments-main {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
  margin: 44px auto 56px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.appointments-page .appointments-hero {
  width: min(100%, 860px);
  margin: 0 auto 30px;
  text-align: center;
}

.appointments-page .appointments-eyebrow {
  margin: 0 0 10px;
  color: #e1000a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.appointments-page .appointments-hero h1,
.appointments-page .appointments-list-heading h2 {
  margin: 0;
  color: #111111;
  font-weight: 900;
  line-height: 1.06;
}

.appointments-page .appointments-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 5rem);
}

.appointments-page .appointments-hero p:not(.appointments-eyebrow) {
  max-width: 620px;
  margin: 14px auto 0;
  color: #3d3d40;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
}

.appointments-page .appointments-list-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 15, 15, 0.05);
}

.appointments-page .appointments-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.appointments-page .appointments-list-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.appointments-print-actions {
  display: flex;
  justify-content: center;
  width: min(100%, 980px);
  margin: -6px auto 22px;
}

.appointments-print-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  color: #ffffff;
  background: #e1000a;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.appointments-print-button:hover,
.appointments-print-button:focus-visible {
  background: #b10008;
  outline: none;
  transform: translateY(-1px);
}

.appointments-print-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(225, 0, 10, 0.18);
}

.appointments-page .km-status {
  width: 100%;
  margin: 0 0 16px;
}

.appointments-page .km-event-list {
  width: 100%;
  gap: 14px;
  margin: 0;
}

.appointments-page .km-loading {
  justify-content: center;
  width: 100%;
  min-height: 120px;
  margin: 0;
  border: 1px dashed rgba(225, 0, 10, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(225, 0, 10, 0.04), rgba(207, 155, 70, 0.08)),
    #ffffff;
}

.appointments-page .km-event {
  position: relative;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 15, 15, 0.04);
}

.appointments-page .km-event::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #e1000a;
}

.appointments-page .km-event-date {
  align-content: center;
  min-height: 88px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.1)),
    #f7f7f7;
  border-left: 0;
  border-radius: 8px;
}

.appointments-page .km-event-date strong {
  color: #111111;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.appointments-page .km-event-date span {
  color: #3d3d40;
  font-size: 0.98rem;
  font-weight: 600;
}

.appointments-page .km-event-body {
  display: grid;
  align-content: center;
  min-width: 0;
}

.appointments-page .km-event-body h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.22rem, 2.1vw, 1.55rem);
  font-weight: 900;
  line-height: 1.15;
}

.appointments-page .km-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
  color: #3d3d40;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.appointments-page .km-event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.appointments-page .km-event-meta span::before {
  content: "\f3c5";
  color: #e1000a;
  font-family: "Font Awesome 6 Free";
  font-size: 0.86rem;
  font-weight: 900;
}

.appointments-page .km-empty {
  width: 100%;
  margin: 0;
  padding: 18px 20px;
  color: #3d3d40;
  background: #f7f7f7;
  border-left: 5px solid #e1000a;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .appointments-page .appointments-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 28px !important;
    padding: 18px 14px !important;
  }

  .appointments-page .appointments-hero {
    margin-bottom: 20px;
    text-align: left;
  }

  .appointments-page .appointments-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .appointments-page .appointments-hero p:not(.appointments-eyebrow) {
    margin-left: 0;
  }

  .appointments-page .appointments-list-card {
    width: 100%;
    padding: 18px;
  }

  .appointments-print-actions {
    justify-content: flex-start;
    width: 100%;
    margin: -2px 0 18px;
  }

  .appointments-print-button {
    width: 100%;
  }

  .appointments-page .appointments-list-heading {
    display: block;
    margin-bottom: 14px;
  }

  .appointments-page .km-event {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .appointments-page .km-event-date {
    min-height: 0;
    align-content: start;
  }
}

@media print {
  @page {
    margin: 0;
  }

  .appointments-print-page,
  .appointments-print-page * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .appointments-print-page .background-blur,
  .appointments-print-page .site-header,
  .appointments-print-page .appointments-print-actions,
  .appointments-print-page footer {
    display: none !important;
  }

  body.appointments-print-page {
    color: #111111 !important;
    background: #ffffff !important;
    margin: 0 !important;
    padding: 14mm !important;
    box-sizing: border-box !important;
  }

  .appointments-print-page .appointments-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .appointments-print-page .appointments-hero {
    width: 100% !important;
    margin: 0 0 18px !important;
    text-align: left !important;
  }

  .appointments-print-page .appointments-eyebrow {
    color: #111111 !important;
  }

  .appointments-print-page .appointments-hero h1 {
    font-size: 28pt !important;
  }

  .appointments-print-page .appointments-hero p:not(.appointments-eyebrow) {
    max-width: none !important;
    margin: 8px 0 0 !important;
    color: #333333 !important;
    font-size: 11pt !important;
  }

  .appointments-print-page .appointments-list-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .appointments-print-page .appointments-list-heading h2 {
    font-size: 18pt !important;
  }

  .appointments-print-page .km-event {
    grid-template-columns: 42mm minmax(0, 1fr) !important;
    gap: 10mm !important;
    break-inside: avoid !important;
    margin-bottom: 6mm !important;
    padding: 5mm !important;
    border: 1px solid #d8d8d8 !important;
    box-shadow: none !important;
  }

  .appointments-print-page .km-event::before {
    background: #e1000a !important;
  }

  .appointments-print-page .km-event-date {
    min-height: 0 !important;
    background:
      linear-gradient(135deg, rgba(225, 0, 10, 0.08), rgba(207, 155, 70, 0.1)),
      #f7f7f7 !important;
    border-left: 5px solid #e1000a !important;
    box-shadow: inset 0 0 0 1000px rgba(225, 0, 10, 0.035) !important;
  }

  .appointments-print-page .km-event-date strong,
  .appointments-print-page .km-event-body h3 {
    color: #111111 !important;
  }
}

@media screen and (max-width: 900px) {
  .container-all.svo-page {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 18px 10px 34px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .svo-page .svo-hero,
  .svo-page .svo-intro,
  .svo-page .svo-details,
  .svo-page .svo-contact {
    width: 100% !important;
    max-width: calc(100vw - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .svo-page .svo-intro div,
  .svo-page .svo-details article,
  .svo-page .svo-contact {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .svo-page .svo-lead,
  .svo-page .svo-intro p,
  .svo-page .svo-details p,
  .svo-page .svo-contact p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
