/* ===================================================================
   Startseite (OPRO #1103) — Gestaltung nach Mockup V2 vom 20.08.2026.

   Eigene Datei statt Anbau an style.css: die Startseite hat ihre eigene
   Formensprache (ganzflaechige Baender, redaktionelles Raster) und wird nur
   dort geladen, wo Abschnitte vorhanden sind.

   Bewusst kein :has() — der Browser des Auftraggebers unterstuetzt es nicht.
   =================================================================== */

.cac-main--sections{
  padding: 0;
  margin: 0;
  max-width: none;
  --ivory: #faf7f2;
  --ivory-deep: #f2ebe0;
  --ink: #1b1917;
  --ink-soft: #4c4744;
  --ink-mute: #726b65;
  --line: rgba(27, 25, 23, .14);
  --line-soft: rgba(27, 25, 23, .08);
  --brick: #c0392b;
  --brick-deep: #9e2b20;
  --burgundy: #3b0f0c;
  --copper: #e5a184;
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --pad-y: clamp(60px, 7vw, 104px);

  display: block;
  background: var(--ivory);
  color: var(--ink);
}

/* Der Seitentitel gehoert hier nicht hin: die Aussage steht im Hero.
   Der Block traegt keine Klasse, nur eine ID - daher der ID-Treffer. */
.cac-main--sections .page-title,
.cac-main--sections .block-page-title-block,
.cac-main--sections #block-coskun-academy-theme-page-title{
  display: none;
}
/* Die Region legt noch einen Container um alles - der darf nicht einengen. */
.cac-main--sections > div{
  max-width: none;
  margin: 0;
  padding: 0;
}

.cac-main--sections p{
  margin: 0;
}

/* --- Vorrang gegenueber style.css --------------------------------------
   style.css setzt fuer .cac-main eine rote Titelfahne, rote Listenpunkte und
   Schatten auf jedem Bild. Auf der Startseite gilt das nicht; die Regeln
   werden hier gezielt zurueckgenommen statt in style.css veraendert - so
   bleiben alle uebrigen Seiten unangetastet.
   --------------------------------------------------------------------- */
.cac-main--sections h1,
.cac-main--sections h2,
.cac-main--sections h3,
.cac-main--sections h4 {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.cac-main--sections h1::after,
.cac-main--sections ul li::before {
  content: none;
}
.cac-main--sections ul,
.cac-main--sections ol {
  padding-left: 0;
  list-style: none;
}
.cac-main--sections ul li,
.cac-main--sections ol li {
  padding-left: 0;
  margin-bottom: 0;
}
/* style.css setzt Abstand, Radius und Schatten ueber
   `.cac-main img:not([src*="keyvisual"])` — der Ausschluss zaehlt fuer die
   Gewichtung mit, deshalb muss die Ruecknahme dieselbe Form haben. */
.cac-main--sections img,
.cac-main--sections img:not([src*="keyvisual"]) {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.cac-main--sections img:hover,
.cac-main--sections img:not([src*="keyvisual"]):hover {
  transform: none;
  box-shadow: none;
}
.cac-main--sections a {
  text-decoration: none;
}

/* --- Wiederkehrende Bausteine ------------------------------------- */
.cac-main--sections .cac-section{
  padding: var(--pad-y) 0;
  background: #fff;
}
.cac-main--sections .cac-section__inner,
.cac-main--sections .cac-band__inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cac-main--sections .cac-section__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 3.4vw, 46px);
}
.cac-main--sections .cac-eyebrow{
  font-family: var(--cac-font);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 12px;
}
.cac-main--sections .cac-section__title{
  font-family: var(--cac-font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.cac-main--sections .cac-section__intro{
  margin-top: 14px;
  max-width: 60ch;
}
.cac-main--sections .cac-rte{
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}
.cac-main--sections .cac-rte p + p{
  margin-top: 14px;
}

/* Schaltflaechen */
.cac-main--sections .cac-btn2{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--cac-font);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.cac-main--sections .cac-btn2__arrow{
  transition: transform .22s ease;
}
.cac-main--sections .cac-btn2:hover .cac-btn2__arrow{
  transform: translateX(4px);
}
.cac-main--sections .cac-btn2--solid{
  background: var(--brick);
  color: #fff;
}
.cac-main--sections .cac-btn2--solid:hover{
  background: var(--brick-deep);
  color: #fff;
}
.cac-main--sections .cac-btn2--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.cac-main--sections .cac-btn2--ghost:hover{
  border-color: var(--ink);
  color: var(--ink);
}
.cac-main--sections .cac-btn2--light{
  background: #fff;
  color: var(--brick-deep);
}
.cac-main--sections .cac-btn2--light:hover{
  background: var(--ivory-deep);
}
.cac-main--sections .cac-btn2--outline-light{
  /* #1696: gleiche Fuellung/Schrift wie --light, Koenigsentscheidung "weiss_gefuellt" */
  background: #fff;
  color: var(--brick-deep);
}
.cac-main--sections .cac-btn2--outline-light:hover{
  background: var(--ivory-deep);
}

.cac-main--sections .cac-arrow-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brick);
  white-space: nowrap;
}
.cac-main--sections .cac-arrow-link span{
  transition: transform .22s ease;
}
.cac-main--sections .cac-arrow-link:hover span{
  transform: translateX(4px);
}
.cac-main--sections .cac-arrow{
  color: var(--brick);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .22s ease;
}

/* Ganze Kachel anklickbar, ohne verschachtelte Links. */
.cac-main--sections .cac-cover-link{
  color: inherit;
}
.cac-main--sections .cac-cover-link::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cac-main--sections a:focus-visible{
  outline: 2px solid var(--brick);
  outline-offset: 3px;
}

/* --- 1. Hero ------------------------------------------------------ */
.cac-main--sections .cac-hero2{
  display: grid;
  grid-template-columns: minmax(0, 50fr) minmax(0, 50fr);
  align-items: stretch;
  background: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.cac-main--sections .cac-hero2__text{
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 92px) clamp(24px, 3.4vw, 56px) clamp(48px, 6vw, 92px)
           max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.cac-main--sections .cac-hero2__text-inner{
  max-width: 30rem;
}
.cac-main--sections .cac-hero2__title{
  font-family: var(--cac-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.05rem);
  line-height: 1.13;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 20px;
  /* Sonst steht in mittleren Breiten das "&" allein auf einer Zeile. */
  text-wrap: balance;
}
.cac-main--sections .cac-hero2__accent{
  display: block;
  color: var(--brick);
}
.cac-main--sections .cac-hero2__lead{
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 30px;
}
.cac-main--sections .cac-hero2__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cac-main--sections .cac-hero2__media{
  position: relative;
  min-height: clamp(280px, 30vw, 460px);
}
.cac-main--sections .cac-hero2__media img{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))));
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- 2. Nachweise -------------------------------------------------- */
.cac-main--sections .cac-credentials{
  background: var(--ivory-deep);
  padding: clamp(30px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.cac-main--sections .cac-credentials__inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cac-main--sections .cac-credentials__label{
  font-family: var(--cac-font);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  margin: 0 0 22px;
}
.cac-main--sections .cac-credentials__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 62px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cac-main--sections .cac-credentials__item img{
  width: auto;
  height: clamp(32px, 3.4vw, 44px);
  max-width: 210px;
  object-fit: contain;
  filter: saturate(.6);
  opacity: .82;
  transition: filter .25s ease, opacity .25s ease;
}
.cac-main--sections .cac-credentials__item:hover img{
  filter: none;
  opacity: 1;
}
/* Das ICEF-Siegel ist ein breiter Balken, das ITAC-Rundsiegel quadratisch —
   ohne Einzelkorrektur wirkt die Leiste unruhig. */
.cac-main--sections .cac-credentials__item:nth-child(1) img{
  height: clamp(26px, 2.7vw, 36px);
}
.cac-main--sections .cac-credentials__item:nth-child(4) img{
  height: clamp(40px, 4.2vw, 56px);
}

/* --- 3./7. Text und Bild ------------------------------------------- */
.cac-main--sections .cac-split{
  display: grid;
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  align-items: stretch;
  background: #fff;
}
.cac-main--sections .cac-split--steps{
  background: var(--ivory);
}
.cac-main--sections .cac-split__text{
  display: flex;
  align-items: center;
  padding: var(--pad-y) clamp(28px, 3.6vw, 60px) var(--pad-y)
           max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.cac-main--sections .cac-split__inner{
  max-width: 34rem;
}
.cac-main--sections .cac-split__title{
  font-family: var(--cac-font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  max-width: 20ch;
  text-wrap: balance;
}
.cac-main--sections .cac-split__media{
  position: relative;
  min-height: clamp(240px, 24vw, 380px);
}
.cac-main--sections .cac-split__media img{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: calc(100% - max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))));
  height: 100%;
  object-fit: cover;
}

.cac-main--sections .cac-points{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.cac-main--sections .cac-points__item{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px 4px 0;
}
.cac-main--sections .cac-points__item + .cac-points__item{
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.cac-main--sections .cac-points__icon{
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: var(--brick);
}
.cac-main--sections .cac-points__icon svg{
  width: 100%;
  height: 100%;
}
.cac-main--sections .cac-points__number{
  font-family: var(--cac-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brick);
  line-height: 1;
}
.cac-main--sections .cac-points__body{
  display: block;
}
.cac-main--sections .cac-points__title{
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.cac-main--sections .cac-points__text{
  display: block;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-mute);
}

/* --- 4. Institutionen ---------------------------------------------- */
.cac-main--sections .cac-section--panels{
  background: var(--ivory);
}
.cac-main--sections .cac-panels{
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}
.cac-main--sections .cac-panels__lead{
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.cac-main--sections .cac-panels__lead > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cac-main--sections .cac-panels__card{
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(84%, 400px);
  background: var(--brick);
  color: #fff;
  padding: 26px 28px 24px;
}
.cac-main--sections .cac-panels__num{
  font-family: var(--cac-font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--brick);
}
.cac-main--sections .cac-panels__card .cac-panels__num{
  color: rgba(255, 255, 255, .85);
}
.cac-main--sections .cac-panels__title{
  font-family: var(--cac-font-display);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}
.cac-main--sections .cac-panels__text{
  font-size: .86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 12px;
}
.cac-main--sections .cac-panels__card .cac-arrow{
  color: #fff;
  display: block;
  text-align: right;
}
.cac-main--sections .cac-panels__card:hover .cac-arrow{
  transform: translateX(4px);
}
.cac-main--sections .cac-panels__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1.25fr .75fr;
  border: 1px solid var(--line);
  background: #fff;
}
.cac-main--sections .cac-panel{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .22s ease;
}
.cac-main--sections .cac-panel:hover{
  background: var(--ivory);
}
.cac-main--sections .cac-panel--wide{
  grid-column: 1 / -1;
}
.cac-main--sections .cac-panel:nth-child(2n),
.cac-main--sections .cac-panel--wide{
  border-right: 0;
}
.cac-main--sections .cac-panel:last-child{
  border-bottom: 0;
}
.cac-main--sections .cac-panel__title{
  font-family: var(--cac-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 10px;
}
.cac-main--sections .cac-panel__text{
  font-size: .85rem;
  line-height: 1.62;
  color: var(--ink-mute);
  margin: 0 0 16px;
}
.cac-main--sections .cac-panel .cac-arrow{
  margin-top: auto;
  align-self: flex-end;
}
.cac-main--sections .cac-panel:hover .cac-arrow{
  transform: translateX(4px);
}

/* --- 5./9. Kachelreihen -------------------------------------------- */
.cac-main--sections .cac-section--pathways{
  background: #fff;
}
.cac-main--sections .cac-section--activities{
  background: var(--ivory);
}
.cac-main--sections .cac-cards{
  display: grid;
  gap: clamp(16px, 1.9vw, 26px);
}
.cac-main--sections .cac-cards--pathways{
  /* Germany und NCUK bekommen mehr Gewicht — Vorgabe des Briefings. */
  grid-template-columns: 1.22fr 1.22fr 1fr 1fr;
}
.cac-main--sections .cac-cards--activities{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cac-main--sections .cac-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.cac-main--sections .cac-section--activities .cac-card{
  background: #fff;
}
.cac-main--sections .cac-card__media{
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cac-main--sections .cac-cards--pathways .cac-card.is-featured .cac-card__title{
  font-size: 1.16rem;
}
.cac-main--sections .cac-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
}
.cac-main--sections .cac-card:hover .cac-card__media img{
  transform: scale(1.035);
}
.cac-main--sections .cac-card__body{
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  flex: 1;
}
.cac-main--sections .cac-card__title{
  font-family: var(--cac-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.cac-main--sections .cac-section--pathways .cac-card__title{
  color: var(--brick);
}
.cac-main--sections .cac-card__text{
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 14px;
}
/* Programm-Kennzeichen (z. B. OSSD) - klein, unter dem Text. */
.cac-main--sections .cac-card__badge{
  display: block;
  margin: 0 0 14px;
}
.cac-main--sections .cac-card__badge img{
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.cac-main--sections .cac-card .cac-arrow{
  margin-top: auto;
  align-self: flex-end;
}
.cac-main--sections .cac-card:hover .cac-arrow{
  transform: translateX(4px);
}

/* --- 6./11. Farbbaender -------------------------------------------- */
.cac-main--sections .cac-band{
  color: #fff;
}
.cac-main--sections .cac-band--map{
  background: var(--burgundy);
  padding: 0;
  overflow: hidden;
}
.cac-main--sections .cac-band--map .cac-band__inner{
  display: grid;
  grid-template-columns: minmax(0, 34fr) minmax(0, 66fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  max-width: none;
  padding: 0 0 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.cac-main--sections .cac-band--map .cac-band__text{
  padding: clamp(50px, 6vw, 88px) 0;
  max-width: 26rem;
}
.cac-main--sections .cac-band__stat{
  font-family: var(--cac-font-display);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.cac-main--sections .cac-band__title{
  font-family: var(--cac-font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 4px 0 16px;
  color: #fff;
}
.cac-main--sections .cac-band__body{
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  line-height: 1.7;
}
.cac-main--sections .cac-band__body p + p{
  margin-top: 12px;
}
.cac-main--sections .cac-band__body .cac-band__lead{
  color: #fff;
  font-size: 1.05rem;
}
.cac-main--sections .cac-band--map .cac-arrow-link{
  color: var(--copper);
  margin-top: 22px;
}
.cac-main--sections .cac-band__map{
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 260px;
}
.cac-main--sections .cac-band__map img{
  width: 100%;
  height: auto;
}

.cac-main--sections .cac-band--cta{
  background: var(--brick);
  padding: clamp(44px, 5vw, 68px) 0;
}
.cac-main--sections .cac-band--cta .cac-band__inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cac-main--sections .cac-band--cta .cac-band__title{
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 10px;
}
.cac-main--sections .cac-band--cta .cac-band__body{
  color: rgba(255, 255, 255, .88);
  max-width: 34ch;
}
.cac-main--sections .cac-band__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --- 8. Standorte --------------------------------------------------- */
.cac-main--sections .cac-section--locations{
  background: #fff;
}
.cac-main--sections .cac-section--locations .cac-section__intro{
  max-width: 72ch;
}
.cac-main--sections .cac-locations{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cac-main--sections .cac-location{
  position: relative;
  text-align: center;
}
.cac-main--sections .cac-location__media{
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 26px;
}
.cac-main--sections .cac-location__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Feine Verbindung mit Nadel zwischen den Standorten. */
.cac-main--sections .cac-location + .cac-location::before{
  content: "";
  position: absolute;
  top: 28%;
  left: calc(-1 * clamp(18px, 2.6vw, 40px) - 2px);
  width: calc(clamp(18px, 2.6vw, 40px) + 4px);
  border-top: 1px dashed rgba(192, 57, 43, .55);
}
/* Die Nadel sitzt auf der Verbindung zwischen zwei Standorten, nicht im Bild. */
.cac-main--sections .cac-location + .cac-location::after{
  content: "";
  position: absolute;
  top: calc(28% - 4px);
  left: calc(-1 * clamp(18px, 2.6vw, 40px) / 2 - 4px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 3px #fff;
}
.cac-main--sections .cac-location__role{
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 6px;
}
.cac-main--sections .cac-location__country{
  font-family: var(--cac-font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.cac-main--sections .cac-location__org{
  font-family: var(--cac-font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cac-main--sections .cac-location__coords{
  font-size: .76rem;
  letter-spacing: .05em;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}

/* --- 10. News ------------------------------------------------------- */
.cac-main--sections .cac-section--news{
  background: #fff;
  border-top: 1px solid var(--line-soft);
}
.cac-main--sections .cac-news{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}
.cac-main--sections .cac-news__card{
  position: relative;
  display: grid;
  grid-template-columns: 38% 1fr;
  border: 1px solid var(--line-soft);
  background: #fff;
}
.cac-main--sections .cac-news__media{
  overflow: hidden;
}
.cac-main--sections .cac-news__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cac-main--sections .cac-news__body{
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
}
.cac-main--sections .cac-news__title{
  font-family: var(--cac-font-display);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.32;
  margin: 0 0 8px;
}
.cac-main--sections .cac-news__text{
  font-size: .8rem;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 0 14px;
}
.cac-main--sections .cac-news__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  font-size: .74rem;
  color: var(--ink-mute);
}
.cac-main--sections .cac-news__more{
  color: var(--brick);
  font-weight: 600;
  white-space: nowrap;
}
.cac-main--sections .cac-news__card:hover .cac-news__more span{
  display: inline-block;
  transform: translateX(3px);
}

/* --- Bewegung ------------------------------------------------------- */
.cac-main--sections .cac-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}
.cac-main--sections .cac-reveal.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .cac-main--sections *{
    transition: none !important;
    animation: none !important;
  }
  .cac-main--sections .cac-reveal{
    opacity: 1;
    transform: none;
  }
}

/* --- Tablet --------------------------------------------------------- */
@media (max-width: 1100px) {
  .cac-main--sections .cac-cards--pathways,
.cac-main--sections .cac-cards--activities{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cac-main--sections .cac-news{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cac-main--sections .cac-news__card:last-child{
    grid-column: 1 / -1;
  }
  .cac-main--sections .cac-panels{
    grid-template-columns: 1fr;
  }
  .cac-main--sections .cac-panels__lead{
    min-height: 340px;
  }
}

@media (max-width: 900px) {
  .cac-main--sections .cac-hero2,
.cac-main--sections .cac-split{
    grid-template-columns: 1fr;
  }
  .cac-main--sections .cac-hero2__text,
.cac-main--sections .cac-split__text{
    padding: clamp(40px, 8vw, 64px) var(--gutter);
    order: 2;
  }
  .cac-main--sections .cac-hero2__media,
.cac-main--sections .cac-split__media{
    order: 1;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .cac-main--sections .cac-hero2__media img,
.cac-main--sections .cac-split__media img{
    position: static;
    width: 100%;
  }
  .cac-main--sections .cac-hero2__text-inner,
.cac-main--sections .cac-split__inner{
    max-width: none;
  }
  .cac-main--sections .cac-band--map .cac-band__inner{
    grid-template-columns: 1fr;
    padding: 0 var(--gutter);
  }
  .cac-main--sections .cac-band--map .cac-band__text{
    max-width: none;
    padding-bottom: 8px;
  }
  .cac-main--sections .cac-band__map{
    min-height: 0;
    padding-bottom: clamp(36px, 7vw, 56px);
  }
  .cac-main--sections .cac-locations{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cac-main--sections .cac-location + .cac-location::before{
    display: none;
  }
  .cac-main--sections .cac-section__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .cac-main--sections .cac-cards--pathways,
.cac-main--sections .cac-cards--activities,
.cac-main--sections .cac-news{
    grid-template-columns: 1fr;
  }
  .cac-main--sections .cac-news__card:last-child{
    grid-column: auto;
  }
  .cac-main--sections .cac-points{
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .cac-main--sections .cac-points__item{
    border-top: 1px solid var(--line);
    padding: 18px 0 6px;
  }
  .cac-main--sections .cac-points__item + .cac-points__item{
    border-left: 0;
    padding-left: 0;
  }
  .cac-main--sections .cac-credentials__list{
    gap: 22px 30px;
  }
  .cac-main--sections .cac-band--cta .cac-band__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .cac-main--sections .cac-hero2__actions .cac-btn2{
    flex: 1 1 100%;
    justify-content: center;
  }
  .cac-main--sections .cac-news__card{
    grid-template-columns: 34% 1fr;
  }
}
