:root {
  --ink: #092b35;
  --deep: #043541;
  --deep-2: #062530;
  --teal: #0d6670;
  --mint: #c8e3d3;
  --gold: #f2b441;
  --paper: #f6efe3;
  --cream: #fff9ed;
  --surface: #ffffff;
  --clay: #c95d42;
  --muted: #60727a;
  --line: rgba(9, 43, 53, 0.14);
  --shadow: 0 28px 70px rgba(6, 37, 48, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* WebUntis parent access */
.parent-access-page {
  background: #f4f6f8;
}

.parent-access-intro,
.parent-access-form-section,
.parent-access-privacy,
.parent-access-help {
  width: min(1180px, calc(100% - 40px));
  margin: 44px auto;
}

.parent-access-intro {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.parent-access-intro h2,
.parent-access-form-heading h2,
.parent-access-help h2 {
  margin: 6px 0 14px;
}

.parent-access-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.parent-access-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 41, 75, .12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 41, 75, .06);
}

.parent-access-steps li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy, #11294b);
  font-weight: 800;
}

.parent-access-steps strong,
.parent-access-steps p {
  display: block;
}

.parent-access-steps p {
  margin: 4px 0 0;
}

.parent-access-form-section {
  padding: clamp(24px, 4vw, 54px);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 41, 75, .09);
}

.parent-access-form-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.parent-access-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.parent-access-form legend {
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 41, 75, .15);
  color: var(--navy, #11294b);
  font-size: 1.15rem;
  font-weight: 800;
}

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

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

.parent-access-form label > span,
.parent-access-form label > small {
  display: block;
}

.parent-access-form label > span {
  margin-bottom: 7px;
  color: #1e2d41;
  font-weight: 700;
}

.parent-access-form label > small {
  margin-top: 7px;
  color: #586577;
}

.parent-access-form input[type="text"],
.parent-access-form input[type="email"],
.parent-access-form input:not([type]) {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #aeb8c5;
  border-radius: 8px;
  color: #172235;
  background: #fff;
  font: inherit;
}

.parent-access-form input:focus {
  border-color: #193f70;
  outline: 3px solid rgba(25, 63, 112, .18);
  outline-offset: 1px;
}

.form-consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 28px;
  padding: 18px;
  border-radius: 10px;
  background: #f3f6f9;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-consent span {
  margin: 0 !important;
  font-weight: 500 !important;
}

.form-submit-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.form-submit-row p {
  margin: 0;
  color: #586577;
}

.form-notice {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid;
  border-radius: 10px;
}

.form-notice p,
.form-notice ul {
  margin: 7px 0 0;
}

.form-notice-success {
  border-color: #72a87a;
  color: #163f23;
  background: #edf8ef;
}

.form-notice-error {
  border-color: #d28b8b;
  color: #702323;
  background: #fff1f1;
}

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

.parent-access-help {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 18px;
  color: #fff;
  background: var(--navy, #11294b);
}

.parent-access-privacy {
  padding: clamp(24px, 4vw, 42px);
  border-left: 5px solid var(--gold, #f2b441);
  background: #fff;
}

.parent-access-privacy h2 {
  margin: 6px 0 14px;
}

.parent-access-help .section-kicker,
.parent-access-help h2,
.parent-access-help a:not(.button) {
  color: inherit;
}

.parent-access-help p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .parent-access-intro,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-wide {
    grid-column: auto;
  }

  .parent-access-help {
    align-items: flex-start;
    flex-direction: column;
  }
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.page-scroll {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  touch-action: pan-y;
  background: var(--paper);
}

body.menu-open .page-scroll {
  overflow-y: hidden;
}

/* Elemente der alternativen Startseitenstudie bleiben ohne Varianten-CSS verborgen. */
.zukunft-only {
  display: none !important;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(4, 37, 48, 0.98) 0%, rgba(4, 37, 48, 0.92) 42%, rgba(13, 102, 112, 0.88) 100%),
    url("https://bbsovg.de/Medien/Werbung/2026-04-24-Hintergrund_Startseite.png") center/cover;
  overflow: hidden;
  animation: introFade 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand-intro::before,
.brand-intro::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(242, 180, 65, 0.92) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(115deg, transparent 0 46px, rgba(255, 255, 255, 0.08) 47px 48px);
  transform: translateX(-18%);
  animation: introSweep 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand-intro::after {
  background: linear-gradient(115deg, transparent 0 54%, rgba(200, 227, 211, 0.48) 54% 55%, transparent 55% 100%);
  transform: translateX(16%);
  animation-delay: 0.08s;
}

.brand-intro-card {
  position: relative;
  z-index: 2;
  width: min(880px, 88vw);
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 30px);
  color: #fff;
  text-align: center;
  animation: introLogo 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(650px, 86vw);
  padding: clamp(22px, 4.5vw, 48px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}

.intro-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(13, 102, 112, 0.16);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}

.brand-intro-card img {
  position: relative;
  width: min(450px, 72vw);
  height: auto;
  object-fit: contain;
}

.intro-kicker,
.intro-claim {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-kicker {
  color: var(--teal);
  font-size: 0.82rem;
}

.intro-line {
  position: relative;
  width: min(260px, 42vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform-origin: center;
  animation: introLine 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-claim {
  color: rgba(9, 43, 53, 0.72);
  font-size: 0.76rem;
}

.intro-words {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px;
}

.intro-words span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: introWord 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes introFade {
  0%,
  62% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  15%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }
}

@keyframes introLine {
  0% {
    opacity: 0;
    transform: scaleX(0.2);
  }

  22%,
  70% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0.7);
  }
}

@keyframes introSweep {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(26%);
  }
}

@keyframes introWord {
  0%,
  18% {
    opacity: 0;
    transform: translateY(10px);
  }

  36%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none;
  }

  .nav-links,
  .directlinks-panel,
  .directlinks-panel a,
  .menu-shell section,
  .nav-toggle span:not(.sr-only) {
    transition: none;
  }

  .nav-links,
  .directlinks-panel,
  .directlinks-panel a,
  .menu-shell section {
    transform: none;
  }

  .article-hero::after,
  .article-hero > img,
  .article-hero-copy {
    animation: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--gold);
  color: #161004;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  z-index: 400;
  color: #fff;
  background: linear-gradient(100deg, #073541 0%, #0b4650 52%, #173b43 100%);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

body.menu-open .site-header {
  background: rgba(4, 37, 48, 0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.identity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 7px max(24px, calc((100% - 1240px) / 2 + 24px));
  color: #123f4a;
  background: #fff;
  box-shadow:
    inset 0 -2px 0 var(--gold),
    0 1px 0 rgba(6, 43, 53, 0.1);
}

.identity-strip-home {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
}

.identity-strip img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(52vw, 320px);
  object-fit: contain;
}

.identity-strip-copy {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.identity-strip p {
  margin: 0;
  color: #123f4a;
  text-align: right;
}

.identity-claim {
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  font-weight: 650;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.identity-claim strong {
  color: #086b79;
  font-weight: 850;
}

.identity-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
  font-size: 0.78rem;
  font-weight: 750;
}

.identity-contact a {
  color: #365b63;
}

.identity-contact a:hover,
.identity-contact a:focus-visible {
  color: #086b79;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topline {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 650;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.text-brand {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-actions {
  position: relative;
  z-index: 420;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.direct-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.direct-toggle[aria-expanded="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #1b1304;
}

.nav-links {
  position: fixed;
  top: var(--site-header-height, 150px);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 410;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  max-height: none;
  padding: 18px 24px 30px;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.98), rgba(7, 64, 75, 0.96)),
    var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 56px rgba(4, 37, 48, 0.3);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  transform: translateY(-14px);
  transform-origin: top center;
  pointer-events: none;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  transition:
    opacity 0.34s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.38s;
}

.nav-links.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.menu-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.menu-shell section {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  overflow-wrap: break-word;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.34s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links.open .menu-shell section {
  opacity: 1;
  transform: translateY(0);
}

.nav-links.open .menu-shell section:nth-child(1) {
  transition-delay: 0.04s;
}

.nav-links.open .menu-shell section:nth-child(2) {
  transition-delay: 0.08s;
}

.nav-links.open .menu-shell section:nth-child(3) {
  transition-delay: 0.12s;
}

.nav-links.open .menu-shell section:nth-child(4) {
  transition-delay: 0.16s;
}

.nav-links.open .menu-shell section:nth-child(5) {
  transition-delay: 0.2s;
}

.nav-links.open .menu-shell section:nth-child(6) {
  transition-delay: 0.24s;
}

.menu-shell span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.menu-shell h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: break-word;
  hyphens: auto;
}

.menu-shell h3 {
  margin: 22px 0 8px;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-shell a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.25;
}

.menu-shell a:hover,
.menu-shell a:focus-visible {
  color: #fff;
}

.nav-toggle {
  position: relative;
  z-index: 421;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.directlinks-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 405;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 37, 48, 0.86), rgba(4, 53, 65, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.directlinks-panel.open {
  max-height: calc(100dvh - var(--site-header-height, 150px));
  opacity: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  transform: translateY(0);
  pointer-events: auto;
}

.directlinks-panel > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px 18px;
}

.directlinks-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 58px;
  padding: 12px 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 160ms ease,
    border-color 160ms ease;
}

.directlinks-panel.open a {
  opacity: 1;
  transform: translateY(0);
}

.directlinks-panel.open a:nth-child(1) {
  transition-delay: 0.02s;
}

.directlinks-panel.open a:nth-child(2) {
  transition-delay: 0.04s;
}

.directlinks-panel.open a:nth-child(3) {
  transition-delay: 0.06s;
}

.directlinks-panel.open a:nth-child(4) {
  transition-delay: 0.08s;
}

.directlinks-panel.open a:nth-child(5) {
  transition-delay: 0.1s;
}

.directlinks-panel.open a:nth-child(6) {
  transition-delay: 0.12s;
}

.directlinks-panel.open a:nth-child(7) {
  transition-delay: 0.14s;
}

.directlinks-panel.open a:nth-child(8) {
  transition-delay: 0.16s;
}

.directlinks-panel.open a:nth-child(9) {
  transition-delay: 0.18s;
}

.directlinks-panel.open a:nth-child(10) {
  transition-delay: 0.2s;
}

.directlinks-panel.open a:nth-child(11) {
  transition-delay: 0.22s;
}

.directlinks-panel a:hover,
.directlinks-panel a:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(242, 180, 65, 0.72);
}

.directlinks-panel span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.directlinks-panel strong {
  min-width: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
  text-align: right;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero {
  position: relative;
  min-height: clamp(570px, calc(100dvh - var(--site-header-height, 150px)), 770px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: var(--paper);
  clip-path: polygon(0 58%, 100% 14%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero picture,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  right: 0;
  left: 0;
  filter: saturate(1.05) contrast(1.02);
}

.hero picture img {
  object-position: center 68%;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 28%, rgba(242, 180, 65, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(4, 37, 48, 0.98) 0%, rgba(4, 37, 48, 0.9) 34%, rgba(4, 37, 48, 0.42) 70%),
    linear-gradient(0deg, rgba(4, 37, 48, 0.4), rgba(4, 37, 48, 0));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: calc(180px - var(--site-header-height, 150px)) 24px 190px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.7rem, 11vw, 9.4rem);
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--mint);
}

.hero h1 span:nth-child(3) {
  color: var(--gold);
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
  color: #1b1304;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.text-link {
  padding-inline: 2px;
  color: #fff;
  min-height: auto;
}

.button.light {
  background: #fff;
  color: var(--deep);
}

.quick-access {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  margin: -86px auto 0;
  padding: 0 24px;
  gap: 0;
}

.quick-access a {
  min-height: 168px;
  padding: 24px;
  color: #fff;
  background: var(--teal);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-access a:nth-child(2) {
  background: var(--deep);
}

.quick-access a:nth-child(3) {
  background: var(--clay);
}

.quick-access a:nth-child(4) {
  background: #374f33;
}

.quick-access a:nth-child(5) {
  background: #6d4831;
}

.quick-access a:nth-child(6) {
  background: #233c5f;
  border-right: 0;
}

.quick-access span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-access strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 24px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro p:not(.section-kicker),
.application-band p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.image-story {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
  max-width: 1240px;
  margin: 86px auto 0;
  padding: 0 24px;
}

.image-story figure {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.image-story .image-story-large {
  min-height: 520px;
}

.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.image-story figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  color: #fff;
  background: rgba(4, 37, 48, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  font-weight: 850;
  line-height: 1.25;
}

.mission-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 82px auto 0;
  padding: 0 24px;
  gap: 16px;
}

.mission-strip article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.mission-strip article:nth-child(2) {
  background: var(--mint);
}

.mission-strip article:nth-child(3) {
  background: var(--deep);
  color: #fff;
}

.mission-strip article:nth-child(4) {
  background: var(--gold);
  color: #1b1304;
}

.mission-strip strong {
  display: block;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.8;
  letter-spacing: 0;
}

.mission-strip span {
  max-width: 340px;
  color: currentColor;
  font-weight: 850;
  line-height: 1.25;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading.compact {
  align-items: center;
}

.intent-grid,
.program-grid,
.news-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.intent-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intent-grid article,
.program-grid article,
.post-card {
  background: var(--cream);
  border: 1px solid var(--line);
}

.intent-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.intent-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 950;
}

.intent-grid h3,
.program-grid h3,
.post-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
}

.intent-grid p,
.program-grid p,
.post-card p {
  color: var(--muted);
  line-height: 1.65;
}

.post-credit {
  margin-top: 6px !important;
  color: var(--teal) !important;
  font-size: 0.82rem;
  font-weight: 800;
}

.post-details {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.post-details summary {
  color: var(--teal);
  font-weight: 900;
  cursor: pointer;
}

.post-details p {
  margin: 12px 0 0;
  white-space: pre-line;
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  padding-top: 16px;
  color: var(--teal);
  font-weight: 900;
}

.article-page {
  padding: 32px 24px 0;
}

.article-detail {
  max-width: 1120px;
  margin: 0 auto;
}

.article-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
}

.article-hero {
  position: relative;
  min-height: clamp(540px, 68vw, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.94) 0%, rgba(4, 37, 48, 0.68) 54%, rgba(4, 37, 48, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 37, 48, 0.86) 0%, rgba(4, 37, 48, 0.08) 66%);
  animation: article-overlay-in 800ms ease-out both;
}

.article-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: article-image-in 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(32px, 6vw, 72px);
  animation: article-copy-in 680ms 180ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes article-image-in {
  from { opacity: 0.72; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes article-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes article-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.article-hero .section-kicker {
  color: var(--gold);
}

.article-detail h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.75rem);
  line-height: 0.98;
  -webkit-hyphens: auto !important;
  hyphens: auto !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.article-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-body {
  width: 100%;
  max-width: none;
  margin: 48px auto 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-author {
  width: 100%;
  max-width: none;
  margin: 34px auto 0;
  color: var(--teal);
  font-weight: 850;
}

.article-gallery {
  width: min(820px, 100%);
  margin: 56px auto 0;
}

.article-gallery-viewport {
  overflow: hidden;
}

.article-gallery-track {
  display: flex;
  transition: transform 320ms ease;
}

.article-gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--line);
}

.article-gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--deep);
  cursor: zoom-in;
}

.article-gallery-open img {
  display: block;
  width: 100%;
  max-height: 580px;
  object-fit: contain;
}

.article-gallery figcaption {
  padding: 13px 15px;
  color: var(--muted);
  line-height: 1.4;
}

.article-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.article-gallery-controls button,
.article-lightbox button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  font-size: 1.2rem;
  cursor: pointer;
}

.article-gallery-controls span {
  min-width: 64px;
  text-align: center;
  font-weight: 850;
}

.article-lightbox {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 58px 18px 18px;
  border: 0;
  background: var(--deep);
  color: #fff;
}

.article-lightbox::backdrop {
  background: rgba(1, 18, 24, 0.88);
  backdrop-filter: blur(5px);
}

.article-lightbox img {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
}

.article-lightbox p {
  margin: 14px 60px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.article-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
}

.article-lightbox-prev,
.article-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.article-lightbox-prev { left: 12px; }
.article-lightbox-next { right: 12px; }

.intent-grid a,
.program-grid a,
.post-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.post-empty {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: #fff;
  background: var(--deep);
  overflow: hidden;
  position: relative;
}

.program-grid article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.96) contrast(1.08);
  transform: scale(1.03);
}

.program-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 37, 48, 0.2), rgba(4, 37, 48, 0.86)),
    linear-gradient(35deg, rgba(4, 37, 48, 0.78), transparent 64%);
  z-index: 1;
}

.program-grid article:nth-child(1) {
  background: var(--teal);
}

.program-grid article:nth-child(2) {
  background: #374f33;
}

.program-grid article:nth-child(3) {
  background: var(--clay);
}

.program-grid article:nth-child(4) {
  background: var(--deep);
}

.program-grid h3,
.program-grid p,
.program-grid a {
  position: relative;
  z-index: 2;
}

.program-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.program-grid a {
  color: #fff;
}

.comparison-link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--teal);
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.bildungsspender-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1192px;
  margin: 72px auto 0;
  padding: 26px 30px;
  color: var(--ink);
  background: var(--mint);
  border-left: 5px solid var(--teal);
}

.bildungsspender-note .section-kicker {
  margin-bottom: 7px;
  color: var(--teal);
}

.bildungsspender-note h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.bildungsspender-note p:not(.section-kicker) {
  max-width: 690px;
  margin: 9px 0 0;
  color: #36525a;
  line-height: 1.5;
}

.bildungsspender-note > a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--teal);
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.bildungsspender-note > a span {
  margin-left: 4px;
}

.application-band {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  max-width: 1240px;
  margin: 104px auto 0;
  padding: 70px 52px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(4, 37, 48, 0.78)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Magdeburg%20Staatliche%20Baugewerkschule%20Flur%20im%201%20Obergescho%C3%9F.jpg") center/cover;
  overflow: hidden;
}

.application-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 34px solid rgba(242, 180, 65, 0.56);
  border-radius: 50%;
}

.application-band > * {
  position: relative;
  z-index: 1;
}

.application-band h2 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5.5vw, 5.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.application-band .section-kicker {
  color: var(--gold);
}

.application-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filters button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--deep);
  font-weight: 850;
  cursor: pointer;
}

.filters button.active {
  background: var(--deep);
  color: #fff;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  overflow: hidden;
}

.post-card img {
  height: 250px;
  filter: saturate(1.05);
}

.post-content {
  padding: 24px;
}

.post-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid a {
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 24px;
  color: #fff;
  background: var(--deep);
  font-size: 1.18rem;
  font-weight: 900;
}

.service-grid a:nth-child(2),
.service-grid a:nth-child(5) {
  background: var(--teal);
}

.service-grid a:nth-child(3),
.service-grid a:nth-child(6) {
  background: var(--clay);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 104px auto 0;
  padding: 44px 24px 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-mandatory-banner {
  order: -1;
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 36px;
}

.footer-mandatory-banner img {
  display: block;
  width: min(1024px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.site-footer::before {
  content: "";
  order: 3;
  flex: 0 0 260px;
  width: 260px;
  height: 80px;
  margin-left: auto;
  background: url("../Images/school/schullogo.png") left center / contain no-repeat;
}

.privacy-gate-page {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding: clamp(110px, 16vw, 170px) 5vw clamp(70px, 10vw, 120px);
  background:
    linear-gradient(135deg, rgba(4, 53, 65, 0.94), rgba(13, 102, 112, 0.82)),
    url("../Images/school/fassade-detail.jpg") center/cover;
}

.privacy-gate {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 249, 237, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.privacy-gate h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.privacy-gate p {
  max-width: 66ch;
  margin: 0 0 16px;
  color: rgba(9, 43, 53, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

.privacy-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.privacy-gate-actions .button.secondary {
  border-color: rgba(9, 43, 53, 0.28);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.42);
}

.privacy-gate-actions .button.secondary:hover,
.privacy-gate-actions .button.secondary:focus-visible {
  border-color: var(--teal);
  background: rgba(200, 227, 211, 0.72);
}

.subhero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.subhero picture {
  position: absolute;
  inset: 0;
}

.subhero picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.92), rgba(4, 37, 48, 0.58), rgba(4, 37, 48, 0.2)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.05));
}

.subhero > div {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 24px 86px;
}

.subhero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 5.25rem);
  line-height: 0.98;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: normal;
}

.subhero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.65;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.contact-card-grid,
.people-grid,
.org-grid {
  display: grid;
  gap: 16px;
}

.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.coordinator-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card-grid article,
.people-grid article,
.org-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.people-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.people-grid img {
  width: 200px;
  height: 300px;
  max-width: 100%;
  margin: 0 auto 22px;
  object-fit: contain;
  object-position: center top;
  background: rgba(4, 37, 48, 0.08);
}

.contact-card-grid span,
.people-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card-grid a,
.contact-card-grid strong,
.people-grid h3 {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.05;
  overflow-wrap: break-word;
}

.contact-card-grid p,
.people-grid p,
.people-grid a,
.org-grid p,
.organization-section > div > p {
  color: var(--muted);
  line-height: 1.65;
}

.people-grid p {
  margin: 14px 0 0;
}

.people-grid a {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--teal);
  font-weight: 850;
  overflow-wrap: break-word;
}

.organization-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.organization-section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.organization-section .button {
  margin-top: 22px;
}

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

.org-grid h3 {
  margin: 0;
  font-size: 1.4rem;
}

.directory-section .section-heading p {
  max-width: 720px;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.directory-toolbar input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.directory-toolbar input:focus {
  outline: 3px solid rgba(241, 180, 62, 0.32);
  border-color: var(--gold);
}

.directory-status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.directory-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.directory-columns > section {
  min-width: 0;
}

.directory-columns h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.directory-list {
  display: grid;
  gap: 8px;
}

.directory-person {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.directory-person strong,
.directory-person a {
  overflow-wrap: break-word;
}

.directory-person strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  hyphens: auto;
}

.directory-person span {
  display: inline-block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.directory-mail {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: right;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.directory-mail:hover,
.directory-mail:focus-visible {
  text-decoration: underline;
}

.directory-person-staff {
  grid-template-columns: 1fr;
}

.directory-person-staff .directory-mail {
  text-align: left;
}

.directory-person-group {
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.9));
  border-color: rgba(4, 37, 48, 0.12);
  color: #fff;
}

.directory-person-group:first-child {
  margin-top: 0;
}

.directory-person-group strong {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.directory-person-group .directory-mail {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.directory-empty {
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.business-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.business-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.business-intro h2,
.process-section h2,
.blockplan-section h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.business-action-grid,
.process-grid,
.block-card-grid {
  display: grid;
  gap: 16px;
}

.business-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-action-grid a,
.process-grid article,
.block-card-grid a {
  min-width: 0;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.business-action-grid span,
.process-grid span,
.block-card-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-action-grid strong,
.process-grid h3,
.block-card-grid strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.business-action-grid p,
.process-grid p,
.block-card-grid p,
.contact-cta p {
  color: var(--muted);
  line-height: 1.65;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--deep);
}

.block-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.block-card-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 237, 0.92)),
    radial-gradient(circle at 82% 10%, rgba(242, 180, 65, 0.36), transparent 32%);
}

.block-card-grid strong {
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: var(--deep);
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.8)),
    url("../Images/school/glasbau-reflexion.jpg") center/cover;
}

.contact-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cta .section-kicker {
  color: var(--gold);
}

.teacher-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.teacher-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.95), rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.14)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.68), rgba(4, 37, 48, 0.04));
}

.teacher-tools h2,
.teacher-service h2,
.teacher-note h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.teacher-tool-grid,
.teacher-service-grid {
  display: grid;
  gap: 16px;
}

.teacher-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.teacher-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teacher-tool-card,
.teacher-service-grid a {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.teacher-tool-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.86)),
    url("../Images/school/aula-pruefung.jpg") center/cover;
}

.teacher-tool-card span,
.teacher-service-grid span {
  width: fit-content;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.teacher-tool-card.featured span {
  color: #fff;
  background: rgba(242, 180, 65, 0.22);
  border-color: rgba(242, 180, 65, 0.55);
}

.teacher-tool-card strong,
.teacher-service-grid strong {
  display: block;
  margin: 0;
  color: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.teacher-tool-card p,
.teacher-service-grid p,
.teacher-note p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  hyphens: auto;
  overflow-wrap: break-word;
}

.teacher-tool-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.teacher-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.78)),
    url("../Images/school/frontansicht-weit.jpg") center/cover;
}

.teacher-note p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.teacher-note .section-kicker {
  color: var(--gold);
}

.student-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.student-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.95), rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.14)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.68), rgba(4, 37, 48, 0.04));
}

.student-tools h2,
.student-service h2,
.student-note h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.student-tool-grid,
.student-service-grid {
  display: grid;
  gap: 16px;
}

.student-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.student-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.student-tool-card,
.student-service-grid a {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.student-tool-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.86)),
    url("../Images/school/bio-labor.jpg") center/cover;
}

.student-tool-card span,
.student-service-grid span {
  width: fit-content;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.student-tool-card.featured span {
  color: #fff;
  background: rgba(242, 180, 65, 0.22);
  border-color: rgba(242, 180, 65, 0.55);
}

.student-tool-card strong,
.student-service-grid strong {
  display: block;
  margin: 0;
  color: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.student-tool-card p,
.student-service-grid p,
.student-note p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  hyphens: auto;
  overflow-wrap: break-word;
}

.student-tool-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.student-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.78)),
    url("../Images/school/frontansicht-weit.jpg") center/cover;
}

.student-note p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.student-note .section-kicker {
  color: var(--gold);
}

.plan-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.plan-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.95), rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.14)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.68), rgba(4, 37, 48, 0.04));
}

.plan-priority h2,
.plan-guidance h2,
.plan-note h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card,
.plan-step-list article {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.plan-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.86)),
    url("../Images/school/glasbau-reflexion.jpg") center/cover;
}

.plan-card span,
.plan-step-list span {
  width: fit-content;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.plan-card.featured span {
  color: #fff;
  background: rgba(242, 180, 65, 0.22);
  border-color: rgba(242, 180, 65, 0.55);
}

.plan-card strong,
.plan-step-list h3 {
  display: block;
  margin: 0;
  color: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.plan-card p,
.plan-step-list p,
.plan-note p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.plan-guidance {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

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

.plan-step-list article {
  min-height: 230px;
}

.plan-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.78)),
    url("../Images/school/aula-pruefung.jpg") center/cover;
}

.plan-note p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.plan-note .section-kicker {
  color: var(--gold);
}

.service-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.service-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.96), rgba(4, 37, 48, 0.64), rgba(4, 37, 48, 0.14)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.7), rgba(4, 37, 48, 0.04));
}

.service-jump-grid,
.service-card-grid,
.document-columns,
.blockplan-grid {
  display: grid;
  gap: 16px;
}

.service-jump-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-jump-grid a,
.service-card-grid article,
.service-card-grid > a,
.document-columns article,
.blockplan-grid a,
.service-contact-card {
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.service-jump-grid a {
  padding: 18px 20px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-topic {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 28px;
  align-items: start;
}

.service-topic-intro h2,
.service-feature h2,
.service-history h2,
.service-note h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.service-topic-intro p:not(.section-kicker),
.service-feature p,
.history-copy p,
.service-note p {
  color: var(--muted);
  line-height: 1.68;
}

.document-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-columns article,
.service-card-grid article,
.service-card-grid > a,
.service-contact-card {
  padding: 24px;
}

.document-columns h3,
.service-card-grid h3,
.service-card-grid strong,
.service-contact-card strong,
.blockplan-grid strong {
  display: block;
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.document-columns a,
.service-card-grid a:not(.button),
.blockplan-grid a {
  display: block;
  color: var(--teal);
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.document-columns a + a,
.service-card-grid a + a {
  margin-top: 12px;
}

.service-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-grid span,
.blockplan-grid span {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.26);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card-grid p,
.service-contact-card p {
  color: var(--muted);
  line-height: 1.62;
}

.service-feature,
.service-history {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: start;
}

.service-contact-card .button {
  margin-top: 18px;
}

.history-copy {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.blockplan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blockplan-grid a {
  min-height: 116px;
  padding: 20px;
}

.service-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.95), rgba(13, 102, 112, 0.78)),
    url("../Images/school/glasbau-reflexion.jpg") center/cover;
}

.service-note p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.service-note .section-kicker {
  color: var(--gold);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.service-overview-grid a,
.document-list a,
.info-card-grid article {
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.service-overview-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-overview-grid span {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.26);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-overview-grid strong {
  color: inherit;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.service-overview-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.info-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.briefing-content {
  max-width: 1040px;
}

.briefing-block {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  box-shadow: 0 18px 48px rgba(4, 37, 48, 0.08);
}

.briefing-block h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.2rem, 2vw, 1.625rem);
  line-height: 1.18;
}

.briefing-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.briefing-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 8px;
}

.briefing-toggle-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--teal);
}

.briefing-toggle-icon::before,
.briefing-toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.briefing-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.briefing-block.is-open .briefing-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.briefing-panel {
  padding-top: 20px;
}

.briefing-panel[hidden] {
  display: none;
}

.briefing-block h4 {
  margin: 30px 0 10px;
  color: var(--teal);
  font-size: 1.08rem;
  line-height: 1.35;
}

.briefing-block p,
.briefing-block li {
  line-height: 1.72;
}

.briefing-block p {
  margin: 14px 0 0;
}

.briefing-block ul,
.briefing-block ol {
  margin: 14px 0 0;
  padding-left: 1.55rem;
}

.briefing-block li + li {
  margin-top: 8px;
}

.briefing-block li > ul,
.briefing-block li > ol {
  margin-top: 8px;
}

.briefing-source {
  color: var(--muted);
  font-size: 0.9rem;
}

.briefing-map {
  margin: 30px 0 0;
}

.briefing-map img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.briefing-map figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.briefing-final {
  padding-bottom: 96px;
}

.info-lead,
.prose-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.document-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.document-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--teal);
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.info-card-grid article {
  padding: 24px;
}

.info-card-grid h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.info-card-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.blockplan-page .service-topic {
  display: block;
}

.blockplan-page .service-topic-intro {
  max-width: 820px;
  margin-bottom: 26px;
}

.blockplan-page .blockplan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.exam-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.exam-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.96), rgba(4, 37, 48, 0.64), rgba(4, 37, 48, 0.16)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.7), rgba(4, 37, 48, 0.04));
}

.exam-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.exam-intro h2,
.exam-panel h2,
.exam-result-list h2,
.exam-sources h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-law-grid,
.source-list {
  display: grid;
  gap: 16px;
}

.exam-law-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.exam-law-grid article,
.source-list a {
  min-width: 0;
  padding: 22px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.exam-law-grid span,
.exam-result-card span,
.exam-result-list p::before {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-law-grid p,
.exam-help,
.exam-result-card p,
.exam-result-list p {
  color: var(--muted);
  line-height: 1.65;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 20px;
  align-items: start;
}

.exam-form,
.exam-results {
  display: grid;
  gap: 18px;
}

.exam-panel,
.exam-result-card,
.exam-result-list {
  min-width: 0;
  padding: 26px;
  background: rgba(255, 249, 237, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.exam-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.exam-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.exam-controls label,
.exam-checks label {
  min-width: 0;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-controls input,
.exam-controls select,
.exam-table input,
.exam-table select {
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 750;
}

.exam-checks {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
}

.exam-checks legend {
  padding: 0 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exam-checks label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
}

.exam-checks input {
  margin-top: 2px;
  accent-color: var(--teal);
}

.exam-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.exam-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.66);
}

.exam-table th,
.exam-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.exam-table thead th {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exam-table tbody th {
  width: 260px;
  color: var(--ink);
  font-weight: 950;
  line-height: 1.15;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-table tbody th strong {
  display: block;
  max-width: 100%;
  font-size: 1rem;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-table tbody th em {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-style: normal;
}

.exam-table tbody th span {
  display: inline-block;
  padding: 4px 6px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.exam-table [data-point] {
  width: 64px;
  margin: 0;
  text-align: center;
}

.exam-table input:disabled {
  opacity: 0.35;
  background: rgba(9, 43, 53, 0.08);
}

.exam-table td.fhr-course-cell {
  background: rgba(13, 102, 112, 0.1);
}

.exam-table td.fhr-course-cell-double {
  background: rgba(242, 180, 65, 0.2);
}

.exam-table [data-point].fhr-course {
  border-color: rgba(13, 102, 112, 0.72);
  box-shadow: inset 0 0 0 2px rgba(13, 102, 112, 0.16);
}

.exam-table [data-point].fhr-course-double {
  border-color: rgba(242, 180, 65, 0.9);
  background: rgba(255, 249, 237, 0.96);
  box-shadow: inset 0 0 0 2px rgba(242, 180, 65, 0.32);
}

.exam-table input[type="checkbox"]:disabled,
.exam-table select:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  background: rgba(242, 180, 65, 0.16);
  border-color: rgba(242, 180, 65, 0.5);
}

.exam-table input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--teal);
}

.exam-table select {
  width: 72px;
  margin: 0;
}

.exam-block2-table {
  min-width: 760px;
}

.exam-block2-table output {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--deep);
  background: rgba(13, 102, 112, 0.1);
  border: 1px solid rgba(13, 102, 112, 0.24);
  font-weight: 950;
}

.exam-results {
  position: sticky;
  top: 104px;
}

.exam-result-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exam-result-card.primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.86)),
    url("../Images/school/glasbau-reflexion.jpg") center/cover;
}

.exam-result-card.primary span,
.exam-result-card.primary p {
  color: rgba(255, 255, 255, 0.82);
}

.exam-result-card strong {
  display: block;
  color: inherit;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.9;
}

.exam-result-list h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.exam-result-list p {
  margin: 14px 0 0;
  padding-left: 28px;
  position: relative;
}

.exam-result-list p::before {
  content: "Info";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  background: var(--muted);
  font-size: 0;
}

.exam-result-list p.ok::before {
  content: "";
  background: var(--teal);
}

.exam-result-list p.warn::before {
  content: "";
  background: var(--clay);
}

.exam-result-list p.info::before {
  content: "";
  background: var(--gold);
}

.exam-sources {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
}

.source-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-list a {
  font-weight: 900;
  line-height: 1.25;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.applicant-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.applicant-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.94), rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.16)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.64), rgba(4, 37, 48, 0.02));
}

.application-start {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.application-copy h2,
.path-section h2,
.document-section h2,
.training-note h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.application-copy p,
.path-card p,
.document-grid p,
.training-note p {
  color: var(--muted);
  line-height: 1.65;
}

.application-copy .button {
  margin-top: 18px;
}

.application-step-list {
  display: grid;
  gap: 14px;
}

.application-step-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.application-step-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  font-size: 0.85rem;
  font-weight: 950;
}

.application-step-list div {
  min-width: 0;
}

.application-step-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
  hyphens: auto;
  overflow-wrap: break-word;
}

.application-step-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.path-card {
  min-width: 0;
  min-height: 520px;
  display: grid;
  grid-template-rows: 260px 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}

.path-card-wide {
  grid-column: 1 / -1;
  min-height: 420px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto;
}

.path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-card > div {
  min-width: 0;
  padding: 26px;
}

.path-card span,
.document-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.2vw, 3.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.profile-list.compact {
  grid-template-columns: 1fr;
}

.profile-list a {
  min-width: 0;
  padding: 12px 14px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  font-weight: 900;
  line-height: 1.25;
  hyphens: auto;
  overflow-wrap: break-word;
}

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

.document-grid a {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.document-grid strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
  hyphens: auto;
  overflow-wrap: break-word;
}

.document-grid p {
  margin-top: 14px;
  hyphens: auto;
  overflow-wrap: break-word;
}

.document-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.document-groups {
  display: grid;
  gap: 22px;
}

.document-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.document-group-heading h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.document-group-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.document-download-list {
  display: grid;
}

.document-download-list a {
  min-width: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 4px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.document-download-list a:first-child {
  padding-top: 4px;
  border-top: 0;
}

.document-download-list a:last-child {
  padding-bottom: 4px;
}

.document-badge {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.document-copy strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.document-copy small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.document-action {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.document-download-list a:hover strong,
.document-download-list a:focus-visible strong {
  color: var(--teal);
}

.blockplan-document-group {
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
}

.blockplan-page .service-topic[id] {
  scroll-margin-top: 120px;
}

.blockplan-document-group .document-group-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.blockplan-download-list > a > span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blockplan-download-list > a > strong {
  font-size: 1.04rem;
  line-height: 1.3;
}

.blockplan-download-list > a::after {
  content: "PDF öffnen ↗";
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.training-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
  padding: 58px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.78)),
    url("../Images/school/frontansicht-weit.jpg") center/cover;
}

.training-note p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
}

.training-note .section-kicker {
  color: var(--gold);
}

.program-detail-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 0;
}

.program-detail-hero picture::after {
  background:
    linear-gradient(90deg, rgba(4, 37, 48, 0.95), rgba(4, 37, 48, 0.62), rgba(4, 37, 48, 0.14)),
    linear-gradient(0deg, rgba(4, 37, 48, 0.65), rgba(4, 37, 48, 0.04));
}

.program-overview,
.split-info,
.application-deadline {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.program-lead h2,
.split-info h2,
.requirements-section h2,
.subjects-section h2,
.application-deadline h2,
.program-contact h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.program-lead p,
.text-panel p,
.requirements-grid p,
.section-note,
.application-deadline p,
.program-contact p {
  color: var(--muted);
  line-height: 1.65;
}

.section-note {
  max-width: 620px;
  margin: 16px 0 0;
  font-weight: 850;
}

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

.fact-grid article,
.requirements-grid article {
  min-width: 0;
  min-height: 168px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.fact-grid span,
.requirements-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.25vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.text-panel {
  min-width: 0;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.requirements-grid span {
  width: fit-content;
  min-width: 52px;
  min-height: 46px;
  max-width: 100%;
  display: inline-grid;
  place-items: center;
  padding: 8px 10px;
  color: var(--deep);
  background: rgba(242, 180, 65, 0.28);
  border: 1px solid rgba(242, 180, 65, 0.5);
  line-height: 1.05;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
  text-align: left;
}

.content-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  min-width: 0;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  line-height: 1.55;
  hyphens: auto;
  overflow-wrap: break-word;
}

.subject-table-wrap {
  overflow-x: auto;
  margin-bottom: 56px;
  border: 1px solid var(--line);
  background: #fff;
}

.subject-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.subject-table th,
.subject-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
}

.subject-table th {
  color: var(--deep);
  background: rgba(13, 102, 112, 0.1);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subject-table td:first-child {
  color: var(--ink);
  font-weight: 850;
  max-width: 360px;
}

.subject-table sup {
  margin-left: 2px;
  color: var(--teal);
  font-size: 0.72em;
  font-weight: 950;
}

.subject-table tfoot td {
  padding: 18px 16px;
  color: var(--muted);
  background: rgba(255, 249, 237, 0.92);
  border-top: 3px solid var(--gold);
  line-height: 1.55;
}

.subject-table tfoot p {
  margin: 0;
}

.subject-table tfoot p + p {
  margin-top: 8px;
}

.subject-table tfoot sup {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
}

.application-deadline {
  gap: 32px;
  padding: 64px 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(4, 37, 48, 0.96), rgba(13, 102, 112, 0.84)),
    url("../Images/school/aula-pruefung.jpg") center/cover;
}

.deadline-copy {
  max-width: 760px;
}

.application-deadline p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.application-deadline .section-kicker {
  color: var(--gold);
}

.deadline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.deadline-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.deadline-secondary:hover,
.deadline-secondary:focus-visible {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.92);
}

.advisor-card {
  min-width: 0;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 249, 237, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
}

.advisor-card .section-kicker {
  color: var(--teal);
}

.advisor-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.03;
  text-transform: uppercase;
  hyphens: auto;
  overflow-wrap: break-word;
}

.advisor-card p {
  color: var(--muted);
}

.advisor-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 950;
  overflow-wrap: break-word;
}

.program-contact {
  background-image:
    linear-gradient(120deg, rgba(4, 37, 48, 0.94), rgba(13, 102, 112, 0.78)),
    url("../Images/school/bio-labor.jpg");
}

.site-footer strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 1040px) {
  .topline {
    justify-content: flex-start;
  }

  .hero picture {
    left: 18%;
  }

  .program-grid,
  .news-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-access,
  .menu-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directlinks-panel > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-story {
    grid-template-columns: 1fr 1fr;
  }

  .image-story .image-story-large {
    grid-column: 1 / -1;
  }

  .intro,
  .intent-grid,
  .mission-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .application-band,
  .business-intro,
  .application-start,
  .program-overview,
  .split-info,
  .application-deadline,
  .contact-cta,
  .teacher-note,
  .student-note,
  .plan-note,
  .service-note,
  .training-note,
  .organization-section,
  .exam-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card-grid,
  .people-grid,
  .leadership-grid,
  .coordinator-grid,
  .directory-columns,
  .business-action-grid,
  .process-grid,
  .block-card-grid,
  .teacher-tool-grid,
  .teacher-service-grid,
  .student-tool-grid,
  .student-service-grid,
  .plan-card-grid,
  .plan-step-list,
  .service-jump-grid,
  .service-overview-grid,
  .service-card-grid,
  .service-card-grid.compact,
  .document-columns,
  .info-card-grid,
  .blockplan-grid,
  .business-intro,
  .application-start,
  .applicant-path-grid,
  .path-card-wide,
  .program-overview,
  .split-info,
  .application-deadline,
  .organization-section,
  .plan-guidance,
  .service-topic,
  .service-feature,
  .service-history,
  .exam-intro,
  .exam-app,
  .exam-sources {
    grid-template-columns: 1fr;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .directory-status {
    text-align: left;
  }

  .directory-list {
    gap: 10px;
  }

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

  .directory-person > div {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .directory-person strong {
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .directory-person span {
    margin-top: 0;
    padding: 5px 7px;
    color: var(--deep);
    background: rgba(13, 102, 112, 0.1);
    border: 1px solid rgba(13, 102, 112, 0.18);
    font-size: 0.72rem;
    line-height: 1;
    white-space: nowrap;
  }

  .directory-mail {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    font-size: 0;
    text-align: center;
  }

  .directory-mail::before {
    content: "E-Mail schreiben";
    font-size: 0.88rem;
    font-weight: 900;
  }

  .directory-person-staff > div {
    display: block;
  }

  .directory-person-group .directory-mail {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-law-grid,
  .source-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 681px) and (max-width: 1040px) {
  .teacher-tool-grid,
  .teacher-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-tool-grid,
  .student-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card-grid,
  .plan-step-list,
  .service-jump-grid,
  .service-overview-grid,
  .service-card-grid,
  .service-card-grid.compact,
  .document-columns,
  .info-card-grid,
  .blockplan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .identity-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 82px;
    gap: 3px 10px;
    padding: 5px 14px;
  }

  .identity-strip-home {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .identity-strip img {
    height: 50px;
    max-width: 46vw;
  }

  .identity-strip-copy {
    display: contents;
  }

  .identity-claim {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: clamp(0.66rem, 3vw, 0.82rem);
    line-height: 1.18;
    white-space: normal;
  }

  .identity-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    gap: 3px 12px;
    font-size: clamp(0.7rem, 2.7vw, 0.76rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .nav-shell {
    padding: 10px 14px;
  }

  .nav-links {
    top: 142px;
    max-height: none;
    padding: 12px 14px 20px;
  }

  .directlinks-panel.open {
    max-height: calc(100dvh - 142px);
  }

  .direct-toggle {
    min-height: 40px;
    min-width: 100px;
    padding-inline: 11px;
    font-size: 0;
  }

  .direct-toggle::after {
    content: "Direktlinks";
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .nav-actions a.direct-toggle {
    font-size: 0.68rem;
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions a.direct-toggle::after {
    content: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .directlinks-panel > div {
    grid-template-columns: 1fr;
    padding: 10px 14px 16px;
  }

  .directlinks-panel a {
    min-height: 52px;
    padding: 10px 12px;
  }

  .directlinks-panel strong {
    text-align: left;
  }

  .intro-words {
    grid-template-columns: repeat(2, auto);
  }

  .intro-panel {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .intro-panel::before {
    clip-path: none;
  }

  .text-brand {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 0;
  }

  .hero picture,
  .future-hero picture {
    display: none;
  }

  .hero-content {
    padding: 132px 18px 136px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.86;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-access,
  .menu-shell,
  .intro,
  .intent-grid,
  .mission-strip,
  .image-story,
  .program-grid,
  .news-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .image-story {
    padding: 0 18px;
    margin-top: 66px;
  }

  .image-story figure,
  .image-story .image-story-large {
    min-height: 340px;
  }

  .quick-access {
    margin-top: -52px;
    padding: 0 18px;
  }

  .quick-access a {
    min-height: 118px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .quick-access strong {
    margin-top: 20px;
  }

  .section {
    padding: 82px 18px 0;
  }

  .section h2 {
    font-size: clamp(1.95rem, 10vw, 3.1rem);
    overflow-wrap: break-word;
  }

  .mission-strip {
    margin-top: 66px;
    padding: 0 18px;
  }

  .mission-strip article {
    min-height: 180px;
  }

  .application-band {
    margin-top: 82px;
    padding: 44px 22px;
  }

  .business-section.contact-cta,
  .teacher-section.teacher-note,
  .student-section.student-note,
  .plan-section.plan-note,
  .service-section.service-note,
  .applicant-section.training-note {
    width: calc(100% - 36px);
    margin-inline: auto;
    padding: 38px 22px;
  }

  .business-intro h2,
  .process-section h2,
  .blockplan-section h2,
  .contact-cta h2,
  .teacher-tools h2,
  .teacher-service h2,
  .teacher-note h2,
  .student-tools h2,
  .student-service h2,
  .student-note h2,
  .plan-guidance h2,
  .plan-note h2,
  .service-topic-intro h2,
  .service-feature h2,
  .service-history h2,
  .service-note h2,
  .exam-intro h2,
  .exam-panel h2,
  .exam-result-list h2,
  .exam-sources h2 {
    font-size: clamp(1.95rem, 10vw, 3.1rem);
    overflow-wrap: break-word;
  }

  .site-footer,
  .footer-links {
    flex-direction: column;
  }

  .site-footer::before {
    flex-basis: auto;
    width: 240px;
    height: 74px;
    margin-left: 0;
    align-self: flex-end;
  }

  .subhero {
    min-height: 520px;
  }

  .subhero > div {
    padding: 124px 18px 62px;
  }

  .subhero h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .program-detail-hero > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .program-detail-hero h1 {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    line-height: 0.98;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .service-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(1.7rem, 7.4vw, 2rem);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .subhero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .contact-section {
    padding: 72px 18px 0;
  }

  .business-section {
    padding: 72px 18px 0;
  }

  .teacher-section {
    padding: 72px 18px 0;
  }

  .student-section {
    padding: 72px 18px 0;
  }

  .plan-section {
    padding: 72px 18px 0;
  }

  .service-section {
    padding: 72px 18px 0;
  }

  .info-section {
    padding: 72px 18px 0;
  }

  .exam-section {
    padding: 72px 18px 0;
  }

  .applicant-section {
    padding: 72px 18px 0;
  }

  .program-detail-section {
    padding: 72px 18px 0;
  }

  .program-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .program-lead h2,
  .split-info h2,
  .requirements-section h2,
  .subjects-section h2,
  .application-deadline h2,
  .program-contact h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.85rem);
    line-height: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .application-step-list article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .application-step-list span {
    width: 40px;
    height: 40px;
  }

  .path-card,
  .path-card-wide {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  .profile-list,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    margin-top: 72px;
    padding: 38px 22px;
  }

  .teacher-note {
    margin-top: 72px;
    padding: 38px 22px;
  }

  .student-note {
    margin-top: 72px;
    padding: 38px 22px;
  }

  .plan-note {
    margin-top: 72px;
    padding: 38px 22px;
  }

  .service-note {
    display: grid;
    margin-top: 72px;
    padding: 38px 22px;
  }

  .plan-card-grid,
  .plan-step-list,
  .service-jump-grid,
  .service-overview-grid,
  .service-card-grid,
  .service-card-grid.compact,
  .document-columns,
  .info-card-grid,
  .blockplan-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-grid a {
    min-height: auto;
  }

  .service-actions {
    justify-content: stretch;
  }

  .exam-controls {
    grid-template-columns: 1fr;
  }

  .exam-panel,
  .exam-result-card,
  .exam-result-list {
    padding: 22px;
  }

  .exam-results {
    position: static;
  }

  .exam-table {
    min-width: 760px;
  }

  .training-note {
    margin-top: 72px;
    padding: 38px 22px;
  }

  .application-deadline {
    padding: 38px 22px;
  }

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

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

  .fact-grid article,
  .requirements-grid article {
    min-height: auto;
  }

  .subject-table {
    min-width: 640px;
  }

  /* Einheitliche mobile Typografie und intrinsisch begrenzte Hero-Inhalte. */
  .subhero > div,
  .program-detail-hero > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .subhero h1,
  .program-detail-hero h1 {
    width: auto;
    max-width: calc(100vw - 36px);
    font-size: clamp(1.85rem, 8.5vw, 2rem);
    line-height: 1;
    -webkit-hyphens: auto;
    hyphens: auto !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .program-lead h2,
  .split-info h2,
  .requirements-section h2,
  .subjects-section h2,
  .application-deadline h2,
  .program-contact h2,
  .info-section h2,
  .contact-section h2,
  .business-section h2,
  .teacher-section h2,
  .student-section h2,
  .plan-section h2,
  .service-section h2,
  .exam-section h2,
  .applicant-section h2,
  .program-detail-section h2 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.05;
  }
}

/* Einheitlicher Unterseiten-Hero im Stil der Startseite. */
.subhero {
  position: relative;
  min-height: clamp(590px, 72vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.subhero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 100px;
  background: var(--paper);
  clip-path: polygon(0 60%, 100% 14%, 100% 100%, 0 100%);
}

.subhero picture {
  position: absolute;
  inset: 0;
  filter: saturate(1.05) contrast(1.02);
}

.subhero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.subhero picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(242, 180, 65, 0.15), transparent 25%),
    linear-gradient(90deg, rgba(4, 37, 48, 0.98) 0%, rgba(4, 37, 48, 0.9) 20%, rgba(4, 37, 48, 0.42) 68%),
    linear-gradient(0deg, rgba(4, 37, 48, 0.48), rgba(4, 37, 48, 0.02)) !important;
}

.subhero > div {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 160px 24px 150px;
}

.subhero h1,
.program-detail-hero h1,
.service-hero h1 {
  width: auto;
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5.4rem);
  line-height: 0.94;
  text-transform: uppercase;
  -webkit-hyphens: auto;
  hyphens: auto !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.subhero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.62;
}

@media (max-width: 680px) {
  .subhero {
    min-height: 560px;
  }

  .subhero picture {
    inset: 0;
    opacity: 0.58;
  }

  .subhero picture::after {
    background:
      linear-gradient(0deg, rgba(4, 37, 48, 0.98) 0%, rgba(4, 37, 48, 0.72) 62%, rgba(4, 37, 48, 0.26)) !important;
  }

  .subhero > div {
    padding: 132px 18px 116px;
  }

  .subhero h1,
  .program-detail-hero h1,
  .service-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(2.05rem, 9.5vw, 3.5rem);
    line-height: 0.98;
  }

  .subhero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .subhero {
    min-height: 0;
  }

  .subhero picture {
    display: block;
  }

  .subhero::after {
    height: 66px;
  }

  .subhero > div {
    padding: 116px 16px 94px;
  }

  .subhero h1,
  .program-detail-hero h1,
  .service-hero h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }
}

@media (max-width: 420px) {
  .article-hero > img {
    display: none;
  }

  .hero,
  .subhero,
  .article-hero {
    min-height: 0;
  }

  .article-hero::after {
    display: none;
  }

  .article-hero-copy {
    padding: 34px 20px;
  }

  .subhero > div {
    padding: 116px 16px 94px;
  }

  .nav-shell {
    gap: 8px;
    padding-inline: 10px;
  }

  .nav-actions {
    gap: 7px;
  }

  .direct-toggle {
    letter-spacing: 0.06em;
  }

  .nav-actions a.direct-toggle {
    max-width: 38vw;
    padding-inline: 10px;
  }

  .nav-toggle {
    flex: 0 0 40px;
  }

  .hero-content {
    padding: 120px 16px 110px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.25rem);
    line-height: 0.9;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.09em;
  }

  .section h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.6rem);
  }

  .business-section.contact-cta,
  .teacher-section.teacher-note,
  .student-section.student-note,
  .plan-section.plan-note,
  .applicant-section.training-note {
    width: calc(100% - 32px);
  }

  .business-intro h2,
  .process-section h2,
  .blockplan-section h2,
  .contact-cta h2,
  .teacher-tools h2,
  .teacher-service h2,
  .teacher-note h2,
  .student-tools h2,
  .student-service h2,
  .student-note h2,
  .plan-guidance h2,
  .plan-note h2,
  .exam-intro h2,
  .exam-panel h2,
  .exam-result-list h2,
  .exam-sources h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.6rem);
  }

  .section,
  .contact-section,
  .business-section,
  .teacher-section,
  .student-section,
  .plan-section,
  .exam-section,
  .applicant-section,
  .program-detail-section {
    padding-inline: 16px;
  }

  .quick-access,
  .image-story,
  .mission-strip {
    padding-inline: 16px;
  }
}

body h1 {
  hyphens: none !important;
  overflow-wrap: break-word !important;
  text-wrap: balance;
  word-break: normal !important;
}

body :is(h2, h3) {
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

body :is(p, li, th, td) {
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: normal;
}

.manual-hyphenation {
  -webkit-hyphens: manual !important;
  hyphens: manual !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.directlinks-panel strong,
.menu-shell h2,
.hero h1,
.service-overview-grid strong,
.document-list a,
.blockplan-grid strong {
  hyphens: none !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

.subhero h1 {
  -webkit-hyphens: auto;
  hyphens: auto !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.section h2,
.info-section h2,
.program-grid h3,
.post-card h3 {
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}

main :is(
  .contact-section,
  .business-section,
  .teacher-section,
  .student-section,
  .plan-section,
  .service-section,
  .info-section,
  .exam-section,
  .exam-panel,
  .exam-result-list,
  .applicant-section,
  .program-detail-section
) h2 {
  font-size: clamp(1.75rem, 4.3vw, 3.75rem);
  line-height: 1.05;
}

@media (max-width: 680px) {
  .document-group {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }

  .document-download-list a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding-block: 18px;
  }

  .document-copy {
    grid-column: 1 / -1;
  }

  .document-action {
    grid-column: 2;
    grid-row: 1;
  }

  .blockplan-document-group {
    grid-template-columns: 1fr;
  }

  .blockplan-download-list > a > span {
    grid-column: 1;
    grid-row: 1;
  }

  .blockplan-download-list > a > strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .blockplan-download-list > a::after {
    grid-column: 2;
    grid-row: 1;
  }

  .article-page {
    padding: 28px 16px 0;
  }

  .article-back {
    margin-bottom: 22px;
  }

  .article-hero {
    min-height: 520px;
  }

  .article-hero-copy {
    padding: 30px 22px;
  }

  .article-detail h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .article-lead {
    font-size: 1.05rem;
  }

  .article-body {
    margin-top: 34px;
  }

  .article-gallery {
    margin-top: 42px;
  }

  .article-gallery-open img {
    height: auto;
    max-height: 420px;
  }

  .article-lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding-inline: 8px;
  }

  .article-lightbox img {
    height: 68vh;
  }

  .image-story {
    display: none;
  }

  .bildungsspender-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin: 56px 16px 0;
    padding: 22px 20px;
  }

  .bildungsspender-note h2 {
    font-size: 1.5rem;
  }

  main :is(
    .contact-section,
    .business-section,
    .teacher-section,
    .student-section,
    .plan-section,
    .service-section,
    .info-section,
    .exam-section,
    .exam-panel,
    .exam-result-list,
    .applicant-section,
    .program-detail-section
  ) h2 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.05;
  }
}

/* Compact content pages (legal notices, accessibility and service details) */
.compact-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .9rem clamp(1rem, 4vw, 4rem);
  background: var(--surface, #fff);
  border-bottom: 1px solid rgba(20, 38, 55, .12);
}

.compact-page-nav > a:first-child {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.compact-page-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.compact-page-links a { color: inherit; text-decoration: none; }
.compact-page-links a:hover, .compact-page-links a:focus-visible { text-decoration: underline; }
.legal-list { padding-left: 1.25rem; }
.legal-list li + li { margin-top: .45rem; }
.contact-card { padding: 1.25rem; background: rgba(20, 105, 145, .08); border-radius: 1rem; }
.contact-card p:last-child { margin-bottom: 0; }
.content-table-wrap { overflow-x: auto; }
.content-table { width: 100%; border-collapse: collapse; }
.content-table th, .content-table td { padding: .75rem 1rem; border-bottom: 1px solid rgba(20, 38, 55, .14); text-align: left; }
.content-table th { background: rgba(20, 105, 145, .08); }

@media (max-width: 760px) {
  .compact-page-nav { align-items: flex-start; flex-direction: column; }
  .compact-page-links { gap: .6rem 1rem; }
}
