/* ── Fonts ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/nunito-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/nunito-sans-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/nunito-sans-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/lato-900.woff2') format('woff2');
}

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --white:        #ffffff;
  --off-white:    #f7f7f7;
  --dark:         #1a1a1a;
  --grey:         #4a4a4a;
  --grey-light:   #e8e8e8;
  --red:          #e20714;
  --red-dark:     #b5050f;
  --font:         'Nunito Sans', sans-serif;
  --font-heading: 'Lato', sans-serif;
  --radius:       4px;
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,.14);
  --transition:   .2s ease;
  --nav-h:        64px;
  --container:    1140px;
}

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  padding-top: var(--nav-h);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1.6rem;
  color: var(--dark);
}
h1 { font-size: clamp(3.2rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; }
h3 { font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; }
h4 { font-size: 1.8rem; font-weight: 700; }

p { margin: 0 0 1.6rem; }

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 2.4rem;
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(226,7,20,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-sm {
  padding: .8rem 1.6rem;
  font-size: 1.3rem;
}

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo span { color: var(--red); }

.nav__links {
  display: flex;
  align-items: center;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: rgba(255,255,255,.8);
  font-size: 1.4rem;
  font-weight: 600;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__item:hover .nav__dropdown { display: flex; }
.nav__dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark);
  border-top: 2px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: .8rem 0;
  box-shadow: var(--shadow-hover);
}
.nav__dropdown a {
  display: block;
  padding: .8rem 1.6rem;
  border-radius: 0;
  font-size: 1.3rem;
}

.nav__cta {
  margin-left: 1.6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.nav-login-btn {
  font-size: 1.4rem;
  padding: .8rem 1.6rem;
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.8);
}
.nav-login-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .8rem;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── Slider ────────────────────────────────────────────────────── */
.slider {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  height: calc(100svh - var(--nav-h));
  min-height: 480px;
  max-height: 720px;
}
.slider__track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.slide.active .slide__bg { transform: scale(1); }
.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,0) 100%);
}
.slide__content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.slide__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.6rem;
}
.slide__title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  max-width: 700px;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}
.slide__sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 3.2rem;
  max-width: 540px;
}
.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.slide__img2 {
  position: absolute;
  top: 50%;
  left: 75%;
  max-height: 62%;
  width: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 2rem rgba(0,0,0,.4));
  transform: translate(-50%, -50%) rotate(3deg);
}
@media (max-width: 768px) {
  .slide__img2 {
    max-height: 36%;
    top: 1rem;
    left: auto;
    right: 1rem;
    transform: rotate(3deg);
    border-radius: .8rem;
  }
}
.slide__dyn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, #b51a13 0%, #7a0e0a 55%, #3d0504 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: 0 2px 16px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.18);
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}
.slide__courses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
}
.slide__courses-label {
  color: rgba(255,255,255,.7);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: .4rem;
}
.slide__course-pill {
  display: inline-block;
  padding: .4rem 1.2rem;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.35);
}
.slide__course-pill--first {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.slide__courses--split {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.slide__loc-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}
.slide__loc-label {
  flex-basis: 100%;
  color: rgba(255,255,255,.85);
  font-size: 1.5rem;
  font-weight: 600;
  min-width: 11rem;
}

/* Slider controls */
.slider__arrows {
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
  display: flex;
  gap: .8rem;
  z-index: 2;
}
.slider__arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  font-size: 2.4rem;
  line-height: 1;
}
.slider__arrow:hover { color: var(--white); background: none; }

.slider__dots {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .8rem;
  z-index: 2;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.slider__dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* ── Section ───────────────────────────────────────────────────── */
.section {
  padding: 6.4rem 0;
}
.section--grey { background: var(--off-white); }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: 4.8rem;
}
.section__header h2 { margin-bottom: .8rem; }
.section__eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
}
.section__lead {
  color: var(--grey);
  font-size: 1.8rem;
  max-width: 560px;
  margin: 0 auto;
}
.section--dark .section__lead { color: rgba(255,255,255,.7); }

/* ── Class Cards ───────────────────────────────────────────────── */
.classes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.class-card {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
}
.class-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  color: var(--dark);
}
.class-card__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.6rem;
  align-self: flex-start;
}
.class-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.class-card__meta {
  font-size: 1.3rem;
  color: var(--grey);
  margin-bottom: 1.6rem;
  flex: 1;
}
.class-card__arrow {
  color: var(--red);
  font-weight: 700;
  font-size: 1.4rem;
  align-self: flex-start;
}

/* ── Guarantees ────────────────────────────────────────────────── */
.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.guarantee {
  flex: 1 1 260px;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.guarantee__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.guarantee__text h4 { margin-bottom: .4rem; font-size: 1.6rem; color: var(--white); }
.guarantee__text p { font-size: 1.4rem; color: rgba(255,255,255,.7); margin: 0; }

/* ── Upcoming Dates ────────────────────────────────────────────── */
.dates-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}
.date-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 2rem;
  padding: .6rem 1.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
}
.date-pill--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── Stat Pills (class page) ───────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.stat-pill {
  flex: 1 1 160px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--grey-light);
}
.stat-pill--red { border-bottom-color: var(--red); }
.stat-pill__val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-pill__label {
  font-size: 1.2rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ── Training Paths (class page) ───────────────────────────────── */
.path-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--grey-light);
  margin-bottom: 3.2rem;
}
.path-tab {
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--grey);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font);
  white-space: nowrap;
}
.path-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.path-tab:hover:not(.active) {
  color: var(--dark);
  background: var(--grey-light);
}
.path-panel { display: none; }
.path-panel.active { display: block; }

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.path-step {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.path-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.path-step__text strong { display: block; font-weight: 700; margin-bottom: .2rem; }
.path-step__text span { font-size: 1.4rem; color: var(--grey); }

/* ── Class page hero ───────────────────────────────────────────── */
.class-hero {
  background: var(--dark) url('/assets/img/slider/red.png') center center / cover no-repeat;
  padding: 5.6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.class-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 100%);
  z-index: 0;
}
.class-hero > * { position: relative; z-index: 1; }
.class-hero__eyebrow {
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
}
.class-hero h1 { color: var(--white); margin-bottom: .8rem; }
.class-hero__sub { color: rgba(255,255,255,.7); font-size: 1.8rem; margin-bottom: 3.2rem; }

/* ── Contact ───────────────────────────────────────────────────── */
.locations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 4.8rem;
}
.location-card {
  flex: 1 1 240px;
  padding: 2.4rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border-top: 3px solid var(--red);
}
.location-card h3 { font-size: 1.8rem; margin-bottom: 1.2rem; }
.location-card p { font-size: 1.4rem; margin-bottom: .6rem; color: var(--grey); }
.location-card a { color: var(--red); font-weight: 600; }

.hours-table { width: 100%; font-size: 1.3rem; }
.hours-table td { padding: .3rem 0; }
.hours-table td:first-child { font-weight: 600; padding-right: 1.2rem; white-space: nowrap; }

/* ── Form ──────────────────────────────────────────────────────── */
.form-wrap {
  max-width: 640px;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: flex;
  gap: 1.6rem;
}
.form-row .form-group { flex: 1; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.form-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: .2rem;
  accent-color: var(--red);
  cursor: pointer;
}
.form-check label {
  font-size: 1.4rem;
  color: var(--grey);
  cursor: pointer;
}
.form-check label a { color: var(--red); }

.form-msg {
  padding: 1.6rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-weight: 600;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-msg.error   { background: #ffebee; color: #c62828; display: block; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2.4rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  margin-bottom: 3.2rem;
}
.footer__col { flex: 1 1 200px; }
.footer__col h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 1.2rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col ul li { margin-bottom: .6rem; }
.footer__col ul li a { color: rgba(255,255,255,.6); font-size: 1.4rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--red); }
.footer__logo { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: .8rem; }
.footer__logo span { color: var(--red); }
.footer__tagline { font-size: 1.4rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.3rem;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.footer__legal a { color: rgba(255,255,255,.5); }
.footer__legal a:hover { color: var(--white); }

/* ── Page hero (generic) ───────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 4.8rem 0;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 { color: var(--white); margin: 0; }
.page-hero p { color: rgba(255,255,255,.6); margin: .8rem 0 0; font-size: 1.8rem; }

/* ── Kursplan ──────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.6rem;
  align-items: center;
}
.filter-bar__label {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grey);
  margin-right: .4rem;
}
.filter-pill {
  padding: 0 1.4rem;
  height: 3rem;
  line-height: 2.6rem;
  border-radius: 2rem;
  border: 2px solid var(--grey-light);
  background: var(--white);
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.filter-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.filter-pill--reset {
  border-color: transparent;
  color: var(--grey);
  background: transparent;
}
.filter-pill--reset:hover {
  color: var(--red);
  border-color: transparent;
  background: transparent;
}

.kursplan-table-wrap { overflow-x: auto; }
.kursplan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.kursplan-table th {
  background: var(--dark);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  text-align: left;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  white-space: nowrap;
}
.kursplan-table td {
  padding: 1rem 1.6rem;
  border-bottom: 1px solid var(--grey-light);
  vertical-align: middle;
}
.kursplan-table tr:hover td { background: var(--off-white); }
.kursplan-table tr:last-child td { border-bottom: none; }
.kl-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: .2rem .7rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.kp-date, .kp-time { white-space: nowrap; }
.kursplan-meta {
  font-size: 1.3rem;
  color: var(--grey);
  margin-bottom: 2rem;
}
.kursplan-empty {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--grey);
}
.kursplan-empty a { color: var(--red); }
/* Freie Plätze badges */
.fp-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: var(--radius);
  min-width: 2.8rem;
  text-align: center;
}
.fp-ok   { background: #d4edda; color: #155724; }
.fp-low  { background: #fff3cd; color: #856404; }
.fp-none { background: #f5c6cb; color: #721c24; }

/* ── Course rows (kursplan.php) ─────────────────────────────── */
.kp-rows {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 4rem;
}
.kp-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.6rem;
  padding: 1rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  font-size: 1.4rem;
  transition: background var(--transition);
  overflow: hidden;
}
.kp-row:hover { background: var(--off-white); }
.kp-row__name     { flex: 2 1 0; min-width: 0; font-weight: 700; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kp-row__klassen  { flex: 1 1 0; display: flex; flex-wrap: nowrap; gap: .3rem; min-width: 0; }
.kp-row__date     { flex: 1 1 0; white-space: nowrap; color: var(--dark); }
.kp-row__standort { flex: 1 1 0; color: var(--grey); white-space: nowrap; }
.kp-row .fp-badge { flex: 0 0 8rem; text-align: center; }
.kp-row__enroll {
  flex: 0 0 9rem;
  text-align: right;
  color: var(--red);
  font-weight: 700;
  font-size: 1.3rem;
  white-space: nowrap;
  text-decoration: none;
}
.kp-row__enroll:hover { color: var(--red-dark); }
@media (max-width: 700px) {
  .kp-row {
    flex-wrap: wrap;
    gap: .5rem 1.2rem;
    padding: 1rem 1.2rem 1.2rem;
  }
  .kp-row__name    { flex: 1 1 100%; white-space: normal; }
  .kp-row__klassen { flex: 0 0 auto; }
  .kp-row__date    { flex: 0 0 auto; }
  .kp-row__standort{ flex: 0 0 auto; color: var(--grey); }
  .kp-row .fp-badge{ flex: 0 0 auto; }
  .kp-row__enroll  { flex: 1 1 auto; text-align: right; }
}

/* Stundenübersicht collapsible */
.kursplan-details {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.kursplan-details summary {
  padding: 1.6rem 2rem;
  background: var(--off-white);
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  list-style: none;
  display: flex;
  align-items: center;
  gap: .8rem;
  user-select: none;
}
.kursplan-details summary::-webkit-details-marker { display: none; }
.kursplan-details summary::before {
  content: '▶';
  font-size: 1rem;
  color: var(--red);
  transition: transform var(--transition);
  display: inline-block;
}
.kursplan-details[open] summary::before { transform: rotate(90deg); }

/* ── Course list rows (class pages) ─────────────────────────── */
.course-list { display: flex; flex-direction: column; gap: .4rem; }
.course-list-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 3px solid var(--grey-light);
  font-size: 1.4rem;
}
.course-list-row--first {
  border-left-color: var(--red);
  background: #fff8f8;
}
.course-list-row__date { font-weight: 700; color: var(--dark); white-space: nowrap; }
.course-list-row__name { flex: 1; color: var(--dark); }
.course-list-row__standort { color: var(--grey); white-space: nowrap; }

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.3rem;
  color: var(--grey);
  margin-bottom: 3.2rem;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb__sep { color: var(--grey-light); }
.breadcrumb__current { color: var(--dark); font-weight: 600; }

/* ── Mobile nav ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem;
    gap: .4rem;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.8rem; padding: 1rem 1.2rem; width: 100%; box-sizing: border-box; }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 0 0 0 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav__cta {
    margin: 1.6rem 0 0;
    flex-direction: column;
    width: 100%;
  }
  .nav__cta a { width: 100%; text-align: center; box-sizing: border-box; }

  .form-row { flex-direction: column; }

  .slider { max-height: 560px; }
  .slide__title { font-size: clamp(2.8rem, 8vw, 4.8rem); }
}

@media (max-width: 600px) {
  .section { padding: 4.8rem 0; }
  .stats-row { gap: .8rem; }
  .stat-pill { flex: 1 1 130px; }
  .slider__arrows { bottom: 6.4rem; right: 1.6rem; }
  .slider__dots { bottom: 2rem; }
}

/* ── All-classes list (homepage) ───────────────────────────────── */
.classes-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.class-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2rem;
  background: var(--white);
  border-left: 4px solid var(--grey-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  transition: all var(--transition);
}
.class-row:hover {
  border-left-color: var(--red);
  color: var(--dark);
  box-shadow: var(--shadow);
  transform: translateX(3px);
}
.class-row__badge {
  flex-shrink: 0;
  width: 64px;
  height: 58px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.class-row__badge-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  display: block;
}
.class-row:hover .class-row__badge { background: var(--red); }
.class-row__info { flex: 1; min-width: 0; }
.class-row__name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.class-row__meta {
  font-size: 1.3rem;
  color: var(--grey);
}
.class-row__dates {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  flex-shrink: 0;
}
.class-row__arrow {
  flex-shrink: 0;
  color: var(--grey-light);
  font-size: 1.8rem;
  transition: color var(--transition);
}
.class-row:hover .class-row__arrow { color: var(--red); }

/* ── Bold statements strip ─────────────────────────────────────── */
.statements-wrap {
  background: var(--dark);
  padding: 0 2rem;
}
.statements {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}
.statement {
  flex: 1 1 200px;
  padding: 3.2rem 2.4rem;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.statement:last-child { border-right: none; }
.statement__val {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.statement__label {
  font-size: 1.35rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ── Dark feature block ────────────────────────────────────────── */
.feature-block {
  background: var(--dark);
  padding: 6.4rem 0;
}
.feature-block__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8rem;
  align-items: center;
}
.feature-block__headline {
  flex: 1 1 320px;
}
.feature-block__headline h2 {
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.feature-block__headline h2 span { color: var(--red); font-weight: 900; }
.feature-block__points {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.feature-point__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: .7rem;
}
.feature-point__text {
  color: rgba(255,255,255,.8);
  font-size: 1.6rem;
  line-height: 1.5;
}
.feature-point__text strong { color: var(--white); }

/* ── Guarantee cards ───────────────────────────────────────────── */
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.guarantee-card {
  flex: 1 1 300px;
  background: var(--white);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow);
}
.guarantee-card__icon {
  display: block;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: .8rem;
  line-height: 1;
  text-align: center;
}
.guarantee-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--dark);
  text-align: center;
}
.guarantee-card__text {
  font-size: 1.45rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ── Reviews ────────────────────────────────────────────────────── */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.review-card {
  flex: 1 1 260px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.review-card__stars {
  color: #f5a623;
  font-size: 1.6rem;
  letter-spacing: .1em;
}
.review-card__text {
  font-size: 1.45rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: 1.3rem;
}
.review-card__author strong { color: var(--white); }
.review-card__author span   { color: rgba(255,255,255,.4); }

/* ── Image break band ──────────────────────────────────────────── */
.img-band {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.img-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.img-band__content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.img-band__quote {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin: 0;
}
.img-band__quote span { font-weight: 900; }
.img-band__quote span { color: var(--red); }

/* ── Notices ───────────────────────────────────────────────────── */
.notices {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.notice {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  background: #fff8f8;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}
.notice__icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--red);
}
.notice__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--dark);
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 2rem;
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: all var(--transition);
}
.review-link:hover {
  border-color: var(--red);
  color: var(--red);
}
.review-link__stars { color: #f4b400; letter-spacing: .1em; }

/* ── Contact anchor section ────────────────────────────────────── */
.contact-anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8rem;
}
.contact-anchor__form { flex: 1 1 380px; }
.contact-anchor__info { flex: 1 1 280px; }
.contact-anchor__info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact-info-block {
  margin-bottom: 2.4rem;
}
.contact-info-block strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: .4rem;
}
.contact-info-block p {
  font-size: 1.3rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.8;
}
.contact-info-block a { color: var(--red); font-weight: 600; }

/* ── Footer locations ──────────────────────────────────────────── */
.footer__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 3.2rem;
}
.footer__location {
  flex: 1 1 200px;
}
.footer__location h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer__location p {
  font-size: 1.3rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
  line-height: 1.6;
}
.footer__location a {
  color: rgba(255,255,255,.7);
  font-size: 1.3rem;
}
.footer__location a:hover { color: var(--red); }
.footer__hours {
  margin-top: .8rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.footer__hours-row {
  display: flex;
  gap: .8rem;
  font-size: 1.2rem;
  color: rgba(255,255,255,.4);
}
.footer__hours-row span:first-child {
  flex-shrink: 0;
  width: 80px;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

@media (max-width: 700px) {
  .class-row {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
    min-height: 90px;
    box-shadow: 0 4px 24px rgba(0,0,0,.13);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
  }
  .class-row__badge {
    grid-column: 1;
    grid-row: 1 / 3;
    width: auto;
    height: auto;
    border-radius: var(--radius) 0 0 var(--radius);
    align-self: stretch;
  }
  .class-row__badge-icon { width: 52px; height: 52px; }
  .class-row__info  { grid-column: 2; grid-row: 1; padding: 1.2rem 0 0 .8rem; }
  .class-row__arrow { grid-column: 3; grid-row: 1; padding: 1.2rem .8rem 0 0; }
  .class-row__name  { font-size: 1.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .class-row__dates {
    grid-column: 2 / 4;
    grid-row: 2;
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
  .class-row__name  { font-size: 2rem; }
  .section__header h2 { font-size: clamp(2.8rem, 7vw, 3.6rem); }
  .class-row__dates .date-pill:not(:first-child) { display: none; }
  .class-row__dates .date-pill { padding-left: 0 !important;
    background: none;
    color: var(--red);
    border: none;
    font-size: 2.2rem;
    padding: 0;
    font-weight: 700;
    text-align: left;
  }
  .statement { flex: 1 1 160px; padding: 2.4rem 1.6rem; }
  .feature-block { padding: 4.8rem 0; }
  .contact-anchor { gap: 3.2rem; }
}

/* ── Anmeldung form ─────────────────────────────────────────────── */
.anm-course-info {
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 1.6rem 2rem;
  margin-bottom: 3.2rem;
}
.anm-course-info__label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey);
  margin-bottom: .4rem;
}
.anm-course-info__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}
.anm-course-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.anm-course-info__meta span {
  font-size: 1.3rem;
  color: var(--grey);
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  padding: .2rem .8rem;
}

.anm-form {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 8px;
  padding: 3.2rem;
}
.anm-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey);
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: .8rem;
  margin-bottom: 1.6rem;
}
.anm-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
}
.anm-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.4rem;
  cursor: pointer;
}
.anm-check input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
  flex-shrink: 0;
}

.anm-success {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #f0faf0;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 3.2rem;
}
.anm-success__icon {
  font-size: 3.2rem;
  color: #4caf50;
  line-height: 1;
  flex-shrink: 0;
}
.anm-success__text h2 {
  font-size: 2rem;
  margin-bottom: .6rem;
  color: var(--dark);
}
.anm-success__text p {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 0;
}

@media (max-width: 700px) {
  .anm-form { padding: 2rem 1.6rem; }
  .anm-success { flex-direction: column; gap: 1.2rem; }
}

/* ── Kombi section ──────────────────────────────────────────────── */
.kombi-rows {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2.4rem;
}
.kombi-row {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s;
  user-select: none;
  overflow: hidden;
}
.kombi-row:hover { border-color: #bbb; }
.kombi-row--active { border-color: var(--red); }
.kombi-row__head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.6rem;
}
.kombi-row__badge {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: background .15s;
}
.kombi-row--active .kombi-row__badge { background: var(--red); }
.kombi-row__name { flex: 2 1 0; font-size: 1.5rem; font-weight: 700; color: var(--dark); min-width: 0; }
.kombi-row__was  { flex: 1 1 0; font-size: 1.3rem; color: var(--grey); min-width: 0; }
.kombi-row__toggle {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--grey);
  transition: all .15s;
}
.kombi-row--active .kombi-row__toggle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.kombi-row__detail {
  display: none;
  padding: 1.2rem 1.6rem 1.6rem 1.6rem;
  border-top: 1px solid var(--grey-light);
  background: #fafafa;
}
.kombi-row--open .kombi-row__detail { display: block; }
.kombi-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
.kombi-detail-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 20rem;
}
.kombi-detail-item--full { flex-basis: 100%; min-width: 0; }
.kombi-detail-label {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
}
.kombi-detail-val {
  font-size: 1.4rem;
  color: var(--dark);
}
.kombi-action {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.kombi-action__reset {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--grey);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.kombi-action__reset:hover { color: var(--dark); }
@media (max-width: 600px) {
  .kombi-row__was { display: none; }
}

/* ── Anmeldung kombi pills ──────────────────────────────────────── */
.anm-course-info__kombi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226,7,20,.15);
}
.anm-course-info__kombi-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.anm-course-info__kombi-pill {
  background: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 2rem;
}

/* ── Ärztliche Untersuchung slots ───────────────────────────────── */
.arzt-slots {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.arzt-slot {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--red);
}
.arzt-slot__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.6rem;
}
.arzt-slot__day   { font-size: 2rem; font-weight: 900; line-height: 1; color: var(--dark); }
.arzt-slot__month { font-size: 1.1rem; color: var(--grey); }
.arzt-slot__info  { flex: 1 1 0; }
.arzt-slot__time  { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.arzt-slot__loc   { font-size: 1.3rem; color: var(--grey); }
.arzt-slot__fp    { font-size: 1.3rem; color: var(--grey); flex-shrink: 0; }

@media (max-width: 600px) {
  .kombi-card { min-width: 100%; }
  .kombi-action { flex-direction: column; align-items: flex-start; }
}

/* ── Grundausbildung cards ──────────────────────────────────────── */
.gw-cards {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.gw-card {
  flex: 1 1 28rem;
  display: flex;
  gap: 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 3px solid var(--red);
}
.gw-card--ok {
  border-left-color: #4caf50;
}
.gw-card__icon {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
  margin-top: .1rem;
}
.gw-card--ok .gw-card__icon {
  color: #4caf50;
}
.gw-card__body strong {
  display: block;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: .6rem;
}
.gw-card__body p {
  font-size: 1.4rem;
  color: var(--grey);
  margin: 0 0 .8rem;
  line-height: 1.6;
}
.gw-card__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.gw-card__link:hover { text-decoration: underline; }
