/*
 Theme Name:   Astra Child
 Theme URI:    https://example.com
 Description:  Child Theme für Astra
 Author:       Linus Lehmann
 Author URI:   https://example.com
 Template:     astra
 Version:      1.0.2
*/

/* ===== Eigenes CSS ab hier ===== */

/* =============================
CSS VARIABLEN & RESET
============================= */
/*
* {
box-sizing: border-box;
}
*/
html {
  scroll-behavior: smooth;
}

:root {
  --brand-dark: #233b4e;
  --accent: #F0871A;
  --accent-hover: #cc6600;
  --accent-light: #fef3e7;
  --deep: #1E225A;
  --max-content: 1100px;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-600: #6c757d;
  --gray-800: #343a40;
}

body {
  font-family: 'Helvetica','Oswald', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}

/* Globaler Seitenabstand – Inhalt hat links/rechts immer Platz */
#content {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

img {
display: block;
width: 100%;
height: auto;
border-radius: 10px;
background: #eee;
}

p {
margin-bottom: 0;
}

ul {
padding-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Helvetica','Oswald', sans-serif;
  color: var(--brand-dark);
}

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

/* Sticky Footer - Flexbox Layout */
#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

.section {
margin-top: 15px;
}

.divider {
height: 5px;
background: var(--accent);
margin-top: 4px;
margin-bottom: 10px;
}

.thin-divider {
height: 5px;
background: var(--deep);
margin-top: 4px;
margin-bottom: 10px;
}

/* =============================
GRID / COLUMNS
============================= */
.cols {
display: flex;
flex-wrap: wrap;
gap: 30px;
}

.cols > div {
flex: 3;
min-width: 280px;
}

@media (max-width: 900px) {
.cols {
flex-direction: column;
}
}

/* =============================
HERO SYSTEM (BEM)
============================= */
.hero {
position: relative;
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 10px;
overflow: hidden;
}

.hero--large {
height: 80vh;
}

.hero--medium {
height: 60vh;
min-height: 380px;
}

.hero--rl {
background-image: url('https://www.jgcl-regionwest.de/wp-content/uploads/2021/04/2017-RL-19-scaled.jpg');
}

.hero--pool {
background-image: url('https://www.jgcl-regionwest.de/wp-content/uploads/2025/09/user.png');
height: calc(80vh - 36px);
}

.hero--intra {
background-image: url('https://www.jgcl-regionwest.de/wp-content/uploads/2021/03/UORC4151-scaled.jpg');
}

.hero__overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
}

/* =============================
CARDS
============================= */
.card {
background: #fff;
padding: 18px;
border-radius: 8px;
box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.card h1,
.card h2 {
font-family: 'Oswald', sans-serif;
}

.card ul {
margin-top: 12px;
padding-left: 18px;
}

/* =============================
TEAM
============================= */
.team {
text-align: center;
padding: 3% 2%;
}

.team__title {
font-size: 50px;
margin-bottom: 40px;
}

.team__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
}

.team__card {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.team__card img {
border-radius: 4px;
}

.team__card p {
color: #666;
}

/* =============================
DOWNLOADS
============================= */
.downloads {
max-width: var(--max-content);
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}

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

/* =============================
BUTTONS (GLOBAL)
============================= */
.btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 14px 18px;
border-radius: 6px;
font-weight: 600;
font-size: 18px;
background: #fff;
color: var(--accent);
border: 2px solid rgba(0,0,0,.06);
box-shadow: 0 6px 18px rgba(0,0,0,.06);
text-decoration: none;
}

.btn svg {
width: 18px;
height: 18px;
fill: currentColor;
}

.btn:hover {
color: var(--accent-hover);
border-color: var(--accent-hover);
}

/* =============================
ACCORDION
============================= */
.accordion {
border: 1px solid #ddd;
border-radius: 6px;
overflow: hidden;
}

.acc__head {
padding: 16px 18px;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
background: #fafafa;
}

.acc__body {
padding: 14px 18px;
display: none;
}

.acc__head.is-open .chev {
transform: rotate(180deg);
}

.chev {
transition: transform .25s;
}

/* =============================
FIXED EVENT SIDEBAR
============================= */
.ev-dashboard-sidebar {
    position: fixed;
    top: 120px;
    right: 0;
    width: 320px;
    z-index: 1;
    padding: 16px;
}

.ev-dashboard-main {
    margin-right: 340px;
    min-width: 500px;
    max-width: calc(100% - 360px);
    width: 100%;
}

.ev-dashboard-main .card {
    width: 100%;
    min-width: 500px;
    box-sizing: border-box;
    max-width: 100%;
}

@media (max-width: 900px) {
    .ev-dashboard-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .ev-dashboard-main {
        margin-right: 0;
    }
}

/* =============================
KONTAKT
============================= */
.kontakt {
margin-top: 40px;
margin-bottom: 40px;
  color: #000;
}

.kontakt a {
font-weight: bold;
text-decoration: none;
}

.kontakt p {
color: #050505;
}

/* =============================
MODERN HEADER (CHILD-THEME)
============================= */
.header-custom {
  background: #fff;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: box-shadow .3s;
}

.header-custom:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  position: relative;
}

/* --- Branding / Logo --- */
.header-custom .site-title a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.header-custom .site-title__mark {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}

.header-custom .site-title__region {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* --- Navigation --- */
.header-custom .main-navigation ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-custom .main-navigation ul li a {
  color: var(--gray-800);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: block;
  position: relative;
}

.header-custom .main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.header-custom .main-navigation ul li a:hover::after,
.header-custom .main-navigation ul li.current-menu-item > a::after {
  transform: scaleX(1);
}

.header-custom .main-navigation ul li a:hover {
  color: var(--brand-dark);
  background: var(--gray-100);
}

.header-custom .main-navigation ul li.current-menu-item > a {
  color: var(--brand-dark);
  font-weight: 600;
}

/* --- Submenu --- */
.header-custom .main-navigation ul li.menu-item-has-children {
  position: relative;
}

/* Unsichtbarer Puffer, damit Maus nicht "rausrutscht" */
.header-custom .main-navigation ul li.menu-item-has-children::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.header-custom .main-navigation ul li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  padding: 4px 0 8px;
  z-index: 999;
  border: 1px solid rgba(0,0,0,.04);
  border-top: 2px solid var(--accent);
}

.header-custom .main-navigation ul li .sub-menu::before {
  /*content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;*/
  height: 12px;
  background: var(--accent);
  /* clip-path: polygon(50% 0%, 0% 100%, 100% 100%); */
}

.header-custom .main-navigation ul li:hover > .sub-menu,
.header-custom .main-navigation ul li.focus > .sub-menu,
.header-custom .main-navigation ul li.menu-item-has-children:hover::after {
  display: block;
}

.header-custom .main-navigation ul li .sub-menu li {
  width: 100%;
}

.header-custom .main-navigation ul li .sub-menu a {
  color: #444;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

/* Orange Linie von RECHTS nach LINKS im Submenu */
.header-custom .main-navigation ul li .sub-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.header-custom .main-navigation ul li .sub-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: right center;
}

.header-custom .main-navigation ul li .sub-menu a:hover {
  background: var(--accent-light);
  color: var(--accent);
  padding-left: 26px;
}

/* --- Accent Line --- */
.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
}

/* --- Mobile Menu Toggle (Hamburger) --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: all .3s;
}

/* Hamburger → X Animation */
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

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

/* --- Mobile Close Button --- */
.menu-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1002;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.menu-close:hover {
  background: rgba(255,255,255,.15);
}

.menu-close__icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.menu-close__icon::before,
.menu-close__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 1px;
}

.menu-close__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --- Sub-Menü Toggle-Button: auf Desktop ausblenden --- */
.sub-menu-toggle {
  display: none;
}

/* --- Close-Button: immer ausblenden, nur auf Mobile einblenden --- */
.menu-close {
  display: none;
}

/* --- Mobile Overlay --- */
.menu-overlay {
  display: none;
}

/* --- Mobile Accent Line ausblenden --- */
@media (max-width: 900px) {
  .header-accent {
    display: none;
  }
}

/* ===== MOBILE: Volle Bildschirmbreite, helles Design ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  /* Hamburger ausblenden wenn Menü offen (verhindert doppeltes X) */
  .menu-toggle[aria-expanded="true"] {
    display: none;
  }

  .menu-close {
    display: flex;
  }

  /* Close-Button: orange X auf weißem Grund */
  .menu-close {
    background: var(--gray-100);
  }
  .menu-close:hover {
    background: var(--gray-200);
  }
  .menu-close__icon::before,
  .menu-close__icon::after {
    background: var(--accent);
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    pointer-events: none;
    transition: background .35s ease;
    z-index: 998;
  }

  .menu-overlay.active {
    background: rgba(0,0,0,.35);
    pointer-events: all;
  }

  /* --- Volles Menü-Panel (weiß) --- */
  .header-custom .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
  }

  .header-custom .main-navigation.toggled-on {
    transform: translateX(0);
  }

  /* Menü-Liste: muss über dem Overlay (z-index 998) liegen */
  .header-custom .main-navigation ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 80px 0 40px;
    width: 100%;
    gap: 0;
    position: relative;
    z-index: 1000;
  }

  .header-custom .main-navigation ul.toggled-on {
    display: flex;
  }

  /* Menü-Items */
  .header-custom .main-navigation ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .header-custom .main-navigation ul li:last-child {
    border-bottom: none;
  }

  .header-custom .main-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    transition: all .2s;
    border-radius: 0;
  }

  .header-custom .main-navigation ul li a::after {
    display: none;
  }

  .header-custom .main-navigation ul li a:hover {
    background: rgba(240,135,26,.06);
    color: var(--accent);
  }

  /* Aktiver Menüpunkt */
  .header-custom .main-navigation ul li.current-menu-item > a {
    color: var(--accent);
    font-weight: 600;
    background: var(--accent-light);
  }

  /* Desktop ::after und ::before auf Mobile komplett unterdrücken */
  .header-custom .main-navigation ul li a::after {
    display: none !important;
  }

  .header-custom .main-navigation ul li a::before {
    display: none !important;
  }

  /* Puffer-Element nicht mehr nötig auf Mobile */
  .header-custom .main-navigation ul li.menu-item-has-children::after {
    display: none !important;
  }

  /* Menüpunkte mit Submenu: Link + Pfeil-Button nebeneinander */
  .header-custom .main-navigation ul li.menu-item-has-children {
    display: flex;
    align-items: stretch;
  }

  .header-custom .main-navigation ul li.menu-item-has-children > a {
    flex: 1;
    padding-right: 8px;
    pointer-events: auto;
  }

  /* --- Sub-Menü Toggle-Button (Pfeil ▸) --- */
  .sub-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 52px;
    background: none;
    border: none;
    border-left: 1px solid rgba(0,0,0,.06);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
    padding: 0;
  }

  .sub-menu-toggle:hover {
    background: var(--gray-100);
  }

  .sub-menu-toggle .sub-menu-toggle__icon {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2.5px solid var(--accent);
    border-bottom: 2.5px solid var(--accent);
    transform: rotate(45deg);
    transition: transform .25s ease;
    margin-top: -2px;
  }

  .menu-item-has-children.toggled-on .sub-menu-toggle .sub-menu-toggle__icon {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  /* Sub-Menü */
  .header-custom .main-navigation ul li .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(0,0,0,.04);
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: #fff;
    border-radius: 0;
    padding: 2px 0;
    margin: 0;
    display: none;
    width: 100%;
  }

  .header-custom .main-navigation ul li .sub-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }

  .header-custom .main-navigation ul li .sub-menu li:last-child {
    border-bottom: none;
  }

  .header-custom .main-navigation ul li .sub-menu a {
    display: block;
    padding: 14px 24px 14px 44px;
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 400;
    transition: all .15s;
    border-radius: 0;
  }

  .header-custom .main-navigation ul li .sub-menu a:hover {
    background: var(--accent-light);
    color: var(--accent);
  }

  .header-custom .main-navigation ul li .sub-menu a::after {
    display: none;
  }

  .header-custom .main-navigation ul li:hover > .sub-menu {
    animation: none;
  }
}

/* =============================
CUSTOM FOOTER (CHILD-THEME)
============================= */
.footer-custom {
  background: var(--brand-dark);
  color: #fff;
  padding: 22px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.01em;
}

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

.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* --- Back to Top (Text-Button) --- */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .2s, border-color .2s, color .2s;
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.back-to-top__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top__icon svg {
  width: 14px;
  height: 14px;
}

.back-to-top__text {
  line-height: 1;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-links {
    gap: 20px;
  }
}

/* =============================
FRONT PAGE (STARTSEITE)
Inspiriert vom Bundesverband j-gcl.org
============================= */

/* Container */
.front-page {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Weiche, fließende Sektionen – keine harten Kanten */
.fp-section {
  padding: 100px 20px;
  position: relative;
}

.fp-section:nth-child(even) {
  background: linear-gradient(180deg, var(--gray-100) 0%, #fff 100%);
}

.fp-section__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fp-section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-dark);
}

.fp-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  margin: 0 auto 36px auto;
  border-radius: 999px;
}

/* =============================
SCROLL-REVEAL ANIMATIONEN
============================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
HERO (OHNE BILD)
============================= */
.fp-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a2f3f 100%);
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.fp-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.fp-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.fp-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

.fp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll-Hint im Hero */
.fp-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: fpScrollHint 2.5s ease-in-out infinite;
}

.fp-hero__scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.7);
}

.fp-hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, transparent 100%);
}

@keyframes fpScrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 0.3; }
}

@media (max-width: 768px) {
  .fp-hero__scroll-hint { display: none; }
}

/* =============================
BUTTONS (FRONTPAGE)
============================= */
.fp-hero .btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.fp-hero .btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.fp-hero .btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: none;
}

.fp-hero .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

.btn--text {
  background: none;
  border: none;
  color: var(--accent);
  padding: 8px 0;
  box-shadow: none;
}

.btn--text:hover {
  color: var(--accent-hover);
}

.btn--large {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--outline-dark {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  box-shadow: none;
}

.btn--outline-dark:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* =============================
INTRO SECTION
============================= */
.fp-intro {
  text-align: center;
}

.fp-intro__text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.fp-intro__action {
  margin-top: 24px;
}

/* =============================
INHALTSÜBERSICHT (CARDS-GRID)
============================= */
.fp-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fp-content-card {
  display: block;
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              box-shadow .3s cubic-bezier(.16,1,.3,1),
              border-color .3s;
}

.fp-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-color: var(--accent);
}

.fp-content-card h3 {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
  transition: color .2s;
}

.fp-content-card:hover h3 {
  color: var(--accent);
}

.fp-content-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================
EVENTS
============================= */
.fp-events {
  text-align: center;
}

.fp-events__fallback {
  color: #666;
  margin-bottom: 20px;
}

.fp-events__action {
  margin-top: 24px;
}

.fp-events .wpem-event-listing-wrapper {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

/* =============================
ORTSGEMEINSCHAFTEN
============================= */
.fp-ogs {
  text-align: center;
}

.fp-ogs__intro {
  color: #666;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.fp-ogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.fp-og-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  text-decoration: none;
  border-radius: 14px;
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              box-shadow .3s cubic-bezier(.16,1,.3,1),
              background .3s, border-color .3s, color .3s;
  border: 1px solid var(--gray-200);
  background: #fff;
}

.fp-og-card__arrow {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}

.fp-og-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}

.fp-og-card:hover .fp-og-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =============================
CTA SECTION
============================= */
.fp-cta {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--accent-light) 50%, #fff 100%);
  border-top: none;
}

.fp-cta__inner {
  max-width: 700px;
}

.fp-cta__title {
  color: var(--brand-dark);
}

.fp-cta__text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 28px;
}

.fp-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================
ASTRA OVERRIDES
============================= */
/* Dropdown-Pfeile ausblenden */
.astra-child-custom-header .ast-header-navigation-arrow,
.astra-child-custom-header .dropdown-menu-toggle {
  display: none !important;
}

/* Astra-Container auf Startseite KOMPLETT zurücksetzen */
.front-page,
.front-page #page,
.front-page #content,
.front-page #primary,
.front-page #main,
.front-page .site-content,
.front-page .ast-container,
.front-page .ast-row {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
  display: block !important;
}

.front-page .ast-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.front-page .site-content {
  flex: none !important;
}

/* Astra-seitige Margins auf #primary killen */
.front-page #primary {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Astra ist komplett deaktiviert – keine Overrides mehr nötig */

/* Astra Scroll-to-Top Button sicher ausblenden */
#ast-scroll-top {
  display: none !important;
}

/* Mobile */
@media (max-width: 600px) {
  .fp-hero {
    padding: 70px 20px 60px;
  }

  .fp-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .fp-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .fp-section {
    padding: 44px 16px;
  }
}

/* =============================
NEUE FRONTPAGE-KOMPONENTEN (Hero, Eyebrow, Stats, Cards)
============================= */

/* Eyebrow-Lable über Sektionstiteln */
.fp-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.fp-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

/* Lead-Text unter dem Divider */
.fp-section__lead {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray-600);
  text-align: center;
}

/* Saubere Sektions-Hintergründe (Rhythmus: dunkel · weiß · grau · weiß · Akzent) */
.fp-section.fp-intro { background: #fff; }
.fp-section.fp-uebersicht { background: linear-gradient(180deg, var(--gray-100) 0%, #fff 100%); }
.fp-section.fp-events { background: #fff; }

/* Hero: dezentfarbene Glows für mehr Tiefe */
.fp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.fp-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
}

.fp-hero__blob--1 {
  width: 380px;
  height: 380px;
  background: var(--accent);
  top: -120px;
  right: -80px;
}

.fp-hero__blob--2 {
  width: 320px;
  height: 320px;
  background: #3a6ea5;
  bottom: -130px;
  left: -100px;
  opacity: 0.18;
}

.fp-hero__inner {
  position: relative;
  z-index: 1;
}

.fp-hero__scroll-hint {
  z-index: 2;
}

.fp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.fp-hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

/* Kennzahlen-Band */
.fp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 44px;
}

.fp-stat {
  text-align: center;
}

.fp-stat__number {
  display: block;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.fp-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
}

.fp-stat__sep {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* Übersicht – Karten-Grid */
.fp-uebersicht__inner {
  max-width: 1140px;
}

.fp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.fp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: linear-gradient(160deg, #ffffff 0%, #fbfcfd 100%);
  border: 1px solid rgba(35,59,78,.06);
  border-radius: 24px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(35,59,78,.05);
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              box-shadow .4s cubic-bezier(.16,1,.3,1),
              border-color .4s ease;
}

.fp-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,135,26,.20) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.fp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,135,26,.25);
  box-shadow: 0 24px 50px rgba(35,59,78,.12);
}

.fp-card:hover::before {
  opacity: 1;
}

.fp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(240,135,26,.30);
  transition: transform .4s cubic-bezier(.16,1,.3,1),
              box-shadow .4s ease;
}

.fp-card__icon svg {
  width: 26px;
  height: 26px;
}

.fp-card:hover .fp-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(240,135,26,.42);
}

.fp-card__title {
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: var(--brand-dark);
  transition: color .25s ease;
}

.fp-card:hover .fp-card__title {
  color: var(--accent);
}

.fp-card__text {
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.fp-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.fp-card__more svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

.fp-card:hover .fp-card__more svg {
  transform: translateX(4px);
}

/* =============================
MEHR BREITE – Sektionen weiter, Karten-Grid atmiger
============================= */
.fp-section__inner { max-width: 1200px; }
.fp-uebersicht__inner { max-width: 1320px; }
.fp-cta__inner { max-width: 820px; }
.fp-cards { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* =============================
DYNAMISCHE FARBVERLÄUFE (Hero-Mesh, weiche Übergänge, Buttons, CTA)
============================= */

/* Hero: lebendiger Farbverlauf (Mesh) + sanfter Übergang ins Weiß */
.fp-hero {
  background-color: #1a2f3f;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(30,34,90,.55) 0%, transparent 42%),
    radial-gradient(circle at 82% 70%, rgba(240,135,26,.32) 0%, transparent 40%),
    radial-gradient(circle at 60% 18%, rgba(58,110,165,.42) 0%, transparent 42%),
    radial-gradient(circle at 28% 82%, rgba(204,102,0,.22) 0%, transparent 45%),
    linear-gradient(135deg, var(--brand-dark) 0%, #1a2f3f 55%, #14222e 100%);
  background-size: 180% 180%;
  animation: fpHeroMesh 22s ease-in-out infinite;
}

.fp-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes fpHeroMesh {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Sanft driftende Farb-Glows im Hero */
.fp-hero__blob--1 { animation: fpBlob1 18s ease-in-out infinite; }
.fp-hero__blob--2 { animation: fpBlob2 24s ease-in-out infinite; }

@keyframes fpBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 50px) scale(1.15); }
}

@keyframes fpBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -40px) scale(1.12); }
}

/* Weichere, rundere Buttons auf der Startseite */
.front-page .btn {
  border-radius: 12px;
}

.front-page .btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(240,135,26,.30);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}

.front-page .btn--primary:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(240,135,26,.42);
}

/* CTA: sanfter farbiger Verlauf + Gradient-Titel */
.fp-section.fp-cta {
  background-image:
    radial-gradient(circle at 18% 30%, rgba(240,135,26,.14) 0%, transparent 50%),
    radial-gradient(circle at 82% 70%, rgba(30,34,90,.07) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--accent-light) 100%);
  background-size: 160% 160%;
  animation: fpCtaMesh 20s ease-in-out infinite;
}

@keyframes fpCtaMesh {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.fp-cta__title {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .fp-hero,
  .fp-section.fp-cta,
  .fp-hero__blob--1,
  .fp-hero__blob--2 { animation: none !important; }
}

@media (max-width: 600px) {
  .fp-stat__sep { display: none; }
  .fp-stats { gap: 24px; }
  .fp-cards { gap: 16px; }
  .fp-hero::after { height: 72px; }
}

/* =============================
CHILD-PAGES GRID (Spieledatenbank)
============================= */
.child-pages-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.child-pages-search {
  margin-bottom: 28px;
}

.child-pages-search input {
  width: 100%;
  max-width: 500px;
  padding: 12px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color .2s;
  outline: none;
  font-family: inherit;
}

.child-pages-search input:focus {
  border-color: var(--accent);
}

.child-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.child-page-item {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.child-page-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.child-page-item.hidden {
  display: none;
}

.child-page-item h3 {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.child-page-item .child-page-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.child-page-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.child-page-item a:hover {
  color: var(--accent-hover);
}

.child-pages-count {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.child-pages-none {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--gray-600);
  font-size: 1rem;
}

.child-pages-none.visible {
  display: block;
}

/* =============================
DATENSCHUTZERKLÄRUNG
============================= */
.ds-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px;
}

/* TOC */
.ds-toc {
  background: var(--gray-100);
  padding: 24px 28px;
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
}

.ds-toc__title {
  font-size: 1.1rem;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.ds-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

@media (max-width: 600px) {
  .ds-toc__list {
    grid-template-columns: 1fr;
  }
}

.ds-toc__list li {
  margin: 0;
}

.ds-toc__list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  display: inline-block;
  transition: color .2s;
}

.ds-toc__list a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Sections */
.ds-section {
  margin-bottom: 48px;
  scroll-margin-top: 90px;
}

.ds-section__title {
  font-size: 1.35rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.ds-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.ds-subtitle {
  font-size: 1rem;
  color: var(--brand-dark);
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.ds-section p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ds-intro {
  font-weight: 500;
  color: #333 !important;
}

/* Contact Card */
.ds-contact-card {
  background: var(--accent-light);
  padding: 20px 24px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  margin: 16px 0;
}

.ds-contact-card p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.ds-contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.ds-contact-card a:hover {
  text-decoration: underline;
}

/* Lists */
.ds-list {
  padding-left: 20px;
  margin-bottom: 16px;
}

.ds-list li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

.ds-list li a {
  color: var(--accent);
}

/* Back to Top (WP Admin Bar Pfeil ausblenden) */
#wpadminbar .quicklinks .menupop .ab-top-secondary > li:last-child {
  display: none !important;
}

.ds-back {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.ds-back a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .2s;
}

.ds-back a:hover {
  color: var(--accent);
}

/* =============================
REGIONSBÜRO
============================= */
.rb-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a2f3f 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.rb-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.rb-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.rb-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* --- Kontakt-Sektion --- */
.rb-kontakt {
  padding: 48px 20px;
  background: #fff;
}

.rb-kontakt__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 768px) {
  .rb-kontakt__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Einzelne Kontakt-Karte --- */
.rb-kontakt-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}

.rb-kontakt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
}

/* Akzent-Variante (vakante Stelle) */
.rb-kontakt-card--accent {
  border-top: 3px solid var(--accent);
}

/* Bild */
.rb-kontakt-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}

.rb-kontakt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Body */
.rb-kontakt-card__body {
  padding: 24px 24px 28px;
}

.rb-kontakt-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.rb-kontakt-card__role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.rb-kontakt-card__note {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--gray-100);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

/* Detail-Zeilen */
.rb-kontakt-card__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rb-kontakt-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.rb-kontakt-card__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 6px;
  flex-shrink: 0;
}

.rb-kontakt-card__icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.rb-kontakt-card__row a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 500;
}

.rb-kontakt-card__row a:hover {
  color: var(--accent);
}

.rb-kontakt-card__label {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* =============================
OG SEITEN
============================= */

/* Hero-Bereich für OGs */
.og-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a2f3f 100%);
  padding: 60px 20px 50px;
  text-align: center;
}

.og-hero__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.og-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}

/* Intro-Bereich: Text + Bild nebeneinander */
.og-intro {
  padding: 48px 20px;
  background: #fff;
}

.og-intro__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  .og-intro__grid {
    grid-template-columns: 1fr;
  }
}

.og-intro__text h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.og-intro__text p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.og-intro__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.og-intro__img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 300px;
  object-fit: cover;
}

/* Kontakt-Sektion auf OG-Seiten */
.og-kontakt {
  padding: 48px 20px;
  background: var(--gray-100);
}

.og-kontakt__title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.og-kontakt .fp-divider {
  margin-bottom: 28px;
}

.og-kontakt__grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .og-kontakt__grid {
    grid-template-columns: 1fr;
  }
}

/* Einzelne Kontakt-Karte (klein, ohne Bild) */
.og-contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}

.og-contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.og-contact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.og-contact-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.og-contact-card__email {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.og-contact-card__email svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.og-contact-card__email a {
  color: var(--brand-dark);
  text-decoration: none;
}

.og-contact-card__email a:hover {
  color: var(--accent);
}

/* Karte mit Akzent-Balken (Präfektur) */
.og-contact-card--pref {
  border-left: 3px solid var(--accent);
}

/* Karte für erwachsene Mitarbeiter */
.og-contact-card--emi {
  border-left: 3px solid var(--deep);
}

/* Map-Bereich */
.og-map {
  padding: 0 20px 48px;
  background: #fff;
}

.og-map iframe {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: 350px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

/* Links-Bereich */
.og-links {
  padding: 40px 20px;
  background: var(--gray-100);
  text-align: center;
}

.og-links__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.og-links__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Adresse & Anfahrt --- */
.rb-adresse {
  padding: 60px 20px;
  background: var(--gray-100);
}

.rb-adresse__inner {
  max-width: 960px;
  margin: 0 auto;
}

.rb-adresse__inner h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.rb-adresse__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .rb-adresse__grid {
    grid-template-columns: 1fr;
  }
}

.rb-adresse__info h3 {
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
  margin-top: 20px;
}

.rb-adresse__info h3:first-child {
  margin-top: 0;
}

.rb-adresse__info p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.rb-adresse__info .btn {
  margin-top: 8px;
}

.rb-adresse__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.rb-adresse__map iframe {
  display: block;
  width: 100%;
  min-height: 350px;
}
