:root{
  --bg1:#f6fbfb;
  --bg2:#eef7f7;
  --paper:rgba(255,255,255,.92);

  --text:#0f2330;
  --muted:#476574;

  --line:rgba(15,35,48,.12);
  --line2:rgba(15,35,48,.08);

  --accent:#e1121b;
  --mint:#5fc6b3;
  --blue:#0b62d6;

  --max:1020px;

  --pad-page:18px;
  --space-1:12px;
  --space-2:18px;
  --space-3:26px;
  --space-4:38px;

  --shadow:0 18px 50px rgba(15,35,48,.10);
  --shadow2:0 10px 24px rgba(15,35,48,.08);
}

/* =========================================================
   = RESET / BASIS
   ========================================================= */

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,
              "Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 25% 5%, rgba(95,198,179,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 12%, rgba(225,18,27,.10), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  line-height:1.65;
  font-size:18px;
}

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

a:hover{
  text-decoration:underline;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

svg{
  width:1em;
  height:1em;
  display:block;
  flex-shrink:0;
}

:target{
  scroll-margin-top:110px;
}

/* =========================================================
   = TOPBAR / NAVIGATION
   ========================================================= */

.topbar{
  position:sticky;
  top:10px;
  z-index:50;
  padding:10px 14px;
}

.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:rgba(255,255,255,.75);
  border:1px solid var(--line2);
  border-radius:999px;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(15,35,48,.08);
  padding:10px 16px;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
  flex-shrink:0;
}

.brand-logo{
  display:block;
  width:200px;      /* hier kannst du feinjustieren */
  max-width:200px;
  height:auto;
}

/* Desktop-Navigation */
.nav-desktop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:1;
  min-width:0;
  font-weight:800;
  color:rgba(15,35,48,.85);
}

.nav-desktop a{
  padding:8px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.nav-desktop a:hover{
  text-decoration:none;
  background:rgba(15,35,48,.05);
}

/* Rechte CTA-Fläche */
.nav-actions{
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-shrink:0;
}

.btn-nav{
  white-space:nowrap;
}

/* Social / allgemeine Icon-Buttons */
.icon{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.9);
}

.icon svg{
  width:18px;
  height:18px;
}

.icon:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

/* =========================================================
   = MOBILE MENU
   ========================================================= */

.nav-mobile{
  display:none;
}

.nav-mobile summary{
  list-style:none;
  cursor:pointer;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-mobile summary::-webkit-details-marker{
  display:none;
}

.burger{
  width:18px;
  height:12px;
  position:relative;
  display:block;
}

.burger::before,
.burger::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  border-radius:2px;
  background:rgba(15,35,48,.8);
}

.burger::before{top:0}
.burger::after{bottom:0}

.nav-mobile .panel{
  margin-top:10px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line2);
  border-radius:16px;
  box-shadow:var(--shadow2);
  padding:12px;
  display:grid;
  gap:10px;
}

.nav-mobile .panel a{
  padding:12px 12px;
  border-radius:12px;
  background:rgba(15,35,48,.04);
  font-weight:900;
}

.nav-mobile .panel a:hover{
  background:rgba(15,35,48,.07);
  text-decoration:none;
}

.panel-icons{
  display:flex;
  gap:10px;
  padding-top:4px;
}

/* Responsive Navigation */
@media (max-width:980px){
  .nav-desktop,
  .nav-actions{
    display:none;
  }

  .nav-mobile{
    display:block;
  }

  .brand-text{
    font-size:13px;
  }
}

@media (min-width:981px){
  .nav-mobile{
    display:none;
  }
}

/* =========================================================
   = PAGE LAYOUT
   ========================================================= */

.page{
  max-width:var(--max);
  margin:0 auto;
  padding:10px var(--pad-page) 46px;
}

.hero{
  margin-top:var(--space-2);
}

.section{
  margin-top:var(--space-4);
}

.footer{
  margin-top:var(--space-4);
}

/* =========================================================
   = HERO
   ========================================================= */

.hero{
  background:var(--paper);
  border:1px solid var(--line2);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-inner{
  padding:34px 28px 26px;
  text-align:center;
}

@media (max-width:600px){
  .hero-inner{
    padding:22px 16px;
  }
}

.hero-logo{
  width:min(280px, 76vw);
  margin:0 auto 12px;
  filter:drop-shadow(0 6px 14px rgba(15,35,48,.10));
}

.hero-stars{
  display:flex;
  justify-content:center;
  gap:10px;
  color:rgba(15,35,48,.45);
  margin:10px 0 6px;
  letter-spacing:2px;
}

.hero h1,
.hero h2{
  margin:10px auto 14px;
  font-size:clamp(32px, 4.2vw, 56px);
  line-height:1.12;
  letter-spacing:-0.02em;
  max-width:28ch;
  text-wrap:balance;
}

.hero-lead{
  margin:0 auto;
  max-width:58ch;
  color:var(--muted);
  font-size:clamp(18px, 2vw, 22px);
}

.hero-lead b{
  color:var(--text);
}

.hero-copy{
  margin:14px auto 0;
  max-width:54ch;
  color:rgba(15,35,48,.78);
  font-size:1.02rem;
}

.hero-divider{
  margin:24px auto 0;
  height:1px;
  width:min(920px, 92%);
  background:linear-gradient(90deg, transparent, rgba(15,35,48,.18), transparent);
}

/* =========================================================
   = BUTTONS
   ========================================================= */

.hero-ctas{
  margin:18px auto 0;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  font-weight:900;
  box-shadow:0 8px 20px rgba(15,35,48,.06);
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
  text-decoration:none;
}

.btn .btn-ico svg{
  width:18px;
  height:18px;
}

.btn.primary{
  border-color:rgba(225,18,27,.28);
  background:rgba(225,18,27,.10);
}

/* =========================================================
   = ZWISCHENBILDER
   ========================================================= */

.section-visual{
  margin-top:32px;
}

.section-visual-inner{
  max-width:var(--max);
  margin:0 auto;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.75);
  box-shadow:0 14px 32px rgba(15,35,48,.08);
}

.section-visual-inner img{
  display:block;
  width:100%;
  height:auto;
}

/* =========================================================
   = SECTIONS
   ========================================================= */

.section-inner{
  background:rgba(255,255,255,.75);
  border:1px solid var(--line2);
  border-radius:26px;
  box-shadow:0 14px 32px rgba(15,35,48,.08);
  padding:26px 22px;
}

.section-inner > *{
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}

.eyebrow{
  text-align:center;
  font-weight:900;
  letter-spacing:2px;
  font-size:.95rem;
  color:rgba(15,35,48,.55);
  margin-bottom:10px;
}

.section h2{
  text-align:center;
  margin:0 0 12px;
  font-size:clamp(28px, 3.2vw, 40px);
  letter-spacing:-.4px;
}

.muted{
  color:var(--muted);
  margin:0;
  text-align:center;
}

.media-frame{
  margin:18px auto 12px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.9);
  box-shadow:0 14px 28px rgba(15,35,48,.08);
}

/* =========================================================
   = FACTS
   ========================================================= */

.facts{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

@media (max-width:980px){
  .facts{
    grid-template-columns:1fr;
  }
}

.fact{
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 28px rgba(15,35,48,.07);
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fact-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.fact-tag{
  font-weight:900;
  font-size:.88rem;
  letter-spacing:.8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(11,98,214,.09);
  border:1px solid rgba(11,98,214,.18);
  color:rgba(15,35,48,.82);
}

.fact-ico{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line2);
  background:rgba(15,35,48,.04);
}

.fact-ico svg{
  width:20px;
  height:20px;
}

.fact-value{
  font-size:clamp(30px, 3.2vw, 42px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.6px;
  white-space:nowrap;
}

.fact-title{
  font-size:1.08rem;
  font-weight:900;
  line-height:1.25;
}

.fact-text{
  color:var(--muted);
  font-size:1rem;
  line-height:1.5;
}

.fact-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid var(--line2);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,251,251,.96));
  color:var(--muted);
  text-align:center;
  box-shadow:0 10px 24px rgba(15,35,48,.05);
}

.fact-note b{
  color:var(--text);
}

/* =========================================================
   = TILES / KACHELN
   ========================================================= */

.tiles{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width:860px){
  .tiles{
    grid-template-columns:1fr;
  }
}

.tile{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  border-radius:24px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 28px rgba(15,35,48,.07);
  transition:transform .15s ease;
}

.tile:hover{
  transform:translateY(-2px);
  text-decoration:none;
}

.tile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.tag{
  font-weight:900;
  font-size:.9rem;
  letter-spacing:.8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(95,198,179,.16);
  border:1px solid rgba(95,198,179,.28);
}

.tag.video{
  background:rgba(225,18,27,.10);
  border-color:rgba(225,18,27,.20);
}

.tile-ico{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line2);
  background:rgba(15,35,48,.04);
}

.tile-ico svg{
  width:20px;
  height:20px;
}

.tile-title{
  font-weight:900;
  font-size:1.2rem;
  letter-spacing:-.2px;
}

.tile-sub{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.45;
}

.tile-meta{
  color:rgba(71,101,116,.82);
  font-size:.95rem;
  font-weight:700;
}

.tile-preview{
  margin-top:4px;
  border-radius:18px;
  border:1px solid var(--line2);
  background:linear-gradient(180deg, rgba(246,251,251,.9), rgba(255,255,255,.9));
  overflow:hidden;
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.tile-preview img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}

.tile-cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  width:fit-content;
}

.tile-cta svg{
  width:18px;
  height:18px;
}

/* =========================================================
   = VIDEO BLOCK / FINAL CLEAN
   ========================================================= */

.section-inner-video{
  padding-top:34px;
  padding-bottom:34px;
}

.video-intro{
  max-width:860px;
  margin:0 auto;
}

/* Video mittig, etwas kompakter */
.video-thumb-player{
  margin:28px auto 0;
  width:100%;
  display:flex;
  justify-content:center;
}

.video-thumb{
  position:relative;
  display:block;
  width:100%;
  max-width:620px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line2);
  background:transparent;
  box-shadow:0 16px 34px rgba(15,35,48,.10);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.video-thumb img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16 / 9;
  object-fit:cover;
  transition:transform .32s ease;
}

.video-thumb:hover img{
  transform:scale(1.025);
  filter:none;
}

.video-thumb-overlay{
  display:none;
}

/* Play-Button harmonischer */
.video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:74px;
  height:74px;
  border-radius:50%;
  background:rgba(225,18,27,.96);
  box-shadow:
    0 14px 28px rgba(0,0,0,.24),
    0 0 0 10px rgba(255,255,255,.10);
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.video-thumb:hover .video-play{
  transform:translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 18px 34px rgba(0,0,0,.28),
    0 0 0 12px rgba(255,255,255,.12);
}

.video-play::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-35%, -50%);
  width:0;
  height:0;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:19px solid #fff;
}

/* Label unten kleiner und eleganter */
.video-label{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(0,0,0,.60);
  color:#fff;
  font-weight:800;
  font-size:.9rem;
  line-height:1;
  backdrop-filter:blur(6px);
  box-shadow:0 6px 18px rgba(0,0,0,.14);
}

/* Buttons darunter kompakter */
.video-links{
  margin-top:22px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* WICHTIG: nur im Video-Bereich Buttons kleiner machen */
#videos .btn{
  padding:12px 18px;
  font-size:1rem;
  box-shadow:0 8px 20px rgba(15,35,48,.06);
}

/* leichte Entzerrung der großen roten Fläche */
#videos .btn.primary{
  background:rgba(225,18,27,.12);
  border-color:rgba(225,18,27,.22);
  color:var(--text);
}

/* Intro und Titel etwas harmonischer */
#videos .eyebrow{
  margin-bottom:12px;
}

#videos h2{
  margin-bottom:16px;
}

#videos .muted{
  margin-bottom:0;
}

/* Responsive */
@media (max-width:680px){
  .section-inner-video{
    padding-top:28px;
    padding-bottom:28px;
  }

  .video-thumb{
    max-width:100%;
    border-radius:22px;
  }

  .video-play{
    width:62px;
    height:62px;
  }

  .video-play::after{
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:16px solid #fff;
  }

  .video-label{
    left:12px;
    right:12px;
    bottom:12px;
    text-align:center;
    font-size:.88rem;
    padding:9px 12px;
  }

  #videos .btn{
    width:auto;
  }
}

/* =========================================================
   = RESPONSIVE
   ========================================================= */

@media (max-width:820px){
  .video-thumb-player{
    max-width:100%;
  }

  .video-play{
    width:72px;
    height:72px;
  }

  .video-play::after{
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
    border-left:19px solid #fff;
  }
}

@media (max-width:680px){
  .section-inner-video{
    padding-top:28px;
    padding-bottom:28px;
  }

  .video-thumb-player{
    margin-top:24px;
  }

  .video-thumb,
  .video-embed-wrap{
    border-radius:22px;
  }

  .video-play{
    width:62px;
    height:62px;
    box-shadow:
      0 12px 24px rgba(0,0,0,.24),
      0 0 0 8px rgba(255,255,255,.12);
  }

  .video-play::after{
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:16px solid #fff;
  }

  .video-label{
    left:12px;
    right:12px;
    bottom:12px;
    font-size:.92rem;
    text-align:center;
    padding:9px 12px;
  }

  .video-links{
    margin-top:20px;
    gap:12px;
  }
}

/* =========================================================
   = FEINE TEXTE
   ========================================================= */

.fine{
  margin:10px 0 0;
  text-align:center;
  color:rgba(71,101,116,.85);
  font-size:.98rem;
}

/* =========================================================
   = FOOTER
   ========================================================= */

.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 2px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  color:rgba(15,35,48,.70);
  flex-wrap:wrap;
}

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

.footer-links a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.75);
  font-weight:900;
}

.footer-links a:hover{
  text-decoration:none;
  background:rgba(255,255,255,.92);
}

/* =========================================================
   = FÖRDERER
   ========================================================= */

.foerderer-box{
  margin:26px auto 0;
  max-width:520px;
  padding:26px 22px;
  border-radius:22px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 28px rgba(15,35,48,.06);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  text-align:center;
}

.foerderer-box img{
  display:block;
  margin:0 auto;
  width:140px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}

.foerderer-box p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.5;
}

/* =========================================================
   = KURSE / TEXT + KOLLAGE IN EINEM BLOCK
   ========================================================= */

.section-inner-kurse{
  padding-top:32px;
  padding-bottom:32px;
}

.kurse-intro{
  max-width:860px;
  margin:0 auto;
}

/* =========================================================
   = KURS KOLLAGE / 8 BILDER / KOMPAKT & RUHIG
   ========================================================= */

.kurs-collage{
  margin:30px auto 0;
  max-width:980px;
  display:grid;
  grid-template-columns:1.4fr 1fr 0.55fr;
  grid-auto-rows:165px;
  gap:12px;
}

.kurs-collage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:22px;
  border:1px solid var(--line2);
  box-shadow:0 12px 24px rgba(15,35,48,.08);
  transition:transform .22s ease, box-shadow .22s ease, opacity .5s ease;
}

.kurs-collage img:hover{
  transform:translateY(-3px) scale(1.015);
  box-shadow:0 18px 32px rgba(15,35,48,.12);
}

/* =========================================================
   = KOMPOSITION
   ========================================================= */

.kurs-collage img:nth-child(1){
  grid-column:1;
  grid-row:1 / span 2;
}

.kurs-collage img:nth-child(2){
  grid-column:2;
  grid-row:1 / span 2;
}

.kurs-collage img:nth-child(3){
  grid-column:3;
  grid-row:1;
}

.kurs-collage img:nth-child(4){
  grid-column:3;
  grid-row:2;
}

.kurs-collage img:nth-child(5){
  grid-column:1;
  grid-row:3;
}

.kurs-collage img:nth-child(6){
  grid-column:2;
  grid-row:3;
}

.kurs-collage img:nth-child(7){
  grid-column:1;
  grid-row:4;
}

.kurs-collage img:nth-child(8){
  grid-column:2 / span 2;
  grid-row:4;
}

/* =========================================================
   = LEICHTE REVEAL-ANIMATION
   ========================================================= */

.reveal-grid img{
  opacity:0;
  transform:translateY(16px);
}

.reveal-grid.is-visible img{
  opacity:1;
  transform:translateY(0);
}

.reveal-grid.is-visible img:nth-child(1){ transition:opacity .55s ease, transform .55s ease; }
.reveal-grid.is-visible img:nth-child(2){ transition:opacity .55s ease .05s, transform .55s ease .05s; }
.reveal-grid.is-visible img:nth-child(3){ transition:opacity .55s ease .10s, transform .55s ease .10s; }
.reveal-grid.is-visible img:nth-child(4){ transition:opacity .55s ease .15s, transform .55s ease .15s; }
.reveal-grid.is-visible img:nth-child(5){ transition:opacity .55s ease .20s, transform .55s ease .20s; }
.reveal-grid.is-visible img:nth-child(6){ transition:opacity .55s ease .25s, transform .55s ease .25s; }
.reveal-grid.is-visible img:nth-child(7){ transition:opacity .55s ease .30s, transform .55s ease .30s; }
.reveal-grid.is-visible img:nth-child(8){ transition:opacity .55s ease .35s, transform .55s ease .35s; }

/* =========================================================
   = TABLET
   ========================================================= */

@media (max-width:980px){
  .kurs-collage{
    max-width:100%;
    grid-template-columns:1.3fr 1fr;
    grid-auto-rows:180px;
  }

  .kurs-collage img:nth-child(1){
    grid-column:1;
    grid-row:1 / span 2;
  }

  .kurs-collage img:nth-child(2){
    grid-column:2;
    grid-row:1;
  }

  .kurs-collage img:nth-child(3){
    grid-column:2;
    grid-row:2;
  }

  .kurs-collage img:nth-child(4){
    grid-column:1;
    grid-row:3;
  }

  .kurs-collage img:nth-child(5){
    grid-column:2;
    grid-row:3;
  }

  .kurs-collage img:nth-child(6){
    grid-column:1;
    grid-row:4;
  }

  .kurs-collage img:nth-child(7){
    grid-column:2;
    grid-row:4;
  }

  .kurs-collage img:nth-child(8){
    grid-column:1 / span 2;
    grid-row:5;
  }
}

/* =========================================================
   = MOBILE
   ========================================================= */

@media (max-width:680px){
  .section-inner-kurse{
    padding-top:28px;
    padding-bottom:28px;
  }

  .kurs-collage{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
    gap:12px;
  }

  .kurs-collage img{
    grid-column:auto !important;
    grid-row:auto !important;
    border-radius:18px;
  }
}

/* =========================================================
   = REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce){
  .reveal-grid img,
  .reveal-grid.is-visible img{
    opacity:1;
    transform:none;
    transition:none !important;
  }
}