/*
 * RSA Gutenberg – Design components
 * Aus den freigegebenen HTML-Prototypen übertragen (Startseite, Fachwissen,
 * Online-Buchung, Inhouse-Anfrage). Farben/Typografie kommen aus theme.json,
 * hier stehen nur Layout- und Komponenten-Regeln.
 */

:root{
  --rsa-shadow: 0 24px 60px rgba(9,16,22,.12);
  --rsa-radius: 26px;
  --rsa-orange-soft: #fff4ed;
}

/* Browser-Standardabstand auf body (margin:8px) zurücksetzen. Der Balken kam
   von CSS-Margin-Collapse: der margin-top eines verschachtelten ersten
   Kindelements "entweicht" durch body hindurch bis vor die Seite, obwohl
   body selbst margin:0 hat (body hatte kein eigenes Padding/Border/BFC).
   display:flow-root erzeugt einen eigenen Block-Formatting-Context auf body
   und unterbindet das strukturell.
   Hintergrund: alle 4 Prototypen setzen body{background:var(--paper)} (helles
   Offwhite) als Basisfläche – einzelne Sektionen (Hero, Split-Card, Fact-Band,
   Footer, finale CTA) legen ihr eigenes dunkles background:var(--ink) darüber.
   Der frühere Ink-Fallback hier war nur ein Workaround für den Balken-Bug und
   hat seitdem fälschlich den hellen Seitenhintergrund überall schwarz gefärbt. */
html,body{margin:0!important;padding:0!important;background:var(--wp--preset--color--paper)!important}
body{display:flow-root!important}
.wp-site-blocks{padding-top:0!important;margin-top:0!important;gap:0}
/* WP-Core setzt auf <main> einen eigenen block-gap margin-top (24px), unabhängig
   von .wp-site-blocks gap – das war die eigentliche Quelle des Balkens, nicht
   Margin-Collapse. Direkt auf allen Site-Blocks-Kindern (header/main/footer) auf 0. */
.wp-site-blocks>*{margin-top:0!important}

/* Header-Navigation: "Online buchen" als hervorgehobener Button */
.rsa-site-header .rsa-nav-cta > a{
  background:var(--wp--preset--color--orange);color:#fff !important;
  padding:9px 15px;border-radius:8px;font-weight:700;
}
.rsa-site-header .rsa-nav-cta > a:hover{background:#ff7a1a}

/* Buttons (wp:button-Block): Glow-Schatten + Hover-Lift/Farbwechsel aus den
   HTML-Prototypen (.btn-primary/.btn-secondary), fehlte bisher komplett –
   nur theme.json-Grundfarbe war gesetzt, ohne Schatten/Hover-Verhalten. */
.wp-block-button:not(.is-style-outline) .wp-block-button__link{
  box-shadow:0 14px 30px rgba(255,90,10,.25);
  transition:transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{
  transform:translateY(-2px);
  background-color:#ff7a1a;
  box-shadow:0 18px 36px rgba(255,90,10,.32);
}
.wp-block-button.is-style-outline .wp-block-button__link{transition:background-color .2s ease}
.wp-block-button.is-style-outline .wp-block-button__link:hover{background:rgba(255,255,255,.08)}

/* Mobile Menü-Toggle: eigener Kreis-Hintergrund, damit das Icon auf jedem
   Foto/Hintergrund sichtbar bleibt (statt nur weiße Linien freischwebend).
   Nur mobil relevant (overlayMenu:"mobile") – auf Desktop bleiben die
   Nav-Links inline, kein Hamburger-Icon. */
@media(max-width:768px){
  .rsa-site-header .wp-block-navigation__responsive-container-open{
    box-sizing:border-box!important;width:44px!important;height:44px!important;
    margin:0!important;padding:0!important;border:0!important;flex:none;
    display:grid!important;place-items:center;align-self:center;
    background:rgba(255,255,255,.14)!important;border-radius:50%;
  }
  .rsa-site-header .wp-block-navigation__responsive-container-open svg{width:20px;height:20px}
}

/* Mobile Menü-Overlay: bislang unstyled (transparenter Hintergrund, schwarzer
   Text) – jetzt volle Marken-Optik: dunkler Vollbild-Screen, große Links.
   Strikt auf die mobile Breakpoint begrenzt (overlayMenu:"mobile") – WP nutzt
   denselben .responsive-container-Markup-Baum teils auch für den regulären
   Desktop-Zustand, ungescopte Regeln hier bluten sonst auf Desktop durch. */
@media(max-width:768px){
  .wp-block-navigation__responsive-dialog{
    background:var(--wp--preset--color--ink)!important;
    padding:24px!important;
  }
  .wp-block-navigation__responsive-container-close{
    width:44px;height:44px;display:grid;place-items:center;
    background:rgba(255,255,255,.1);border-radius:50%;color:#fff;
    position:absolute;top:24px;right:24px;
  }
  .wp-block-navigation__responsive-container-close svg{fill:#fff;width:20px;height:20px}
  .wp-block-navigation__responsive-container-content{
    height:100%;display:flex;align-items:center;justify-content:center;
  }
  .wp-block-navigation__responsive-container-content ul.wp-block-navigation__container{
    display:flex!important;flex-direction:column;align-items:center;gap:8px;width:100%;
  }
  .wp-block-navigation__responsive-container-content .wp-block-navigation-item{width:100%;text-align:center}
  .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{
    color:#fff!important;font:800 clamp(24px,7vw,32px) var(--wp--preset--font-family--manrope);
    padding:16px 0!important;display:block;
  }
  .wp-block-navigation__responsive-container-content .current-menu-item .wp-block-navigation-item__content{
    color:var(--wp--preset--color--lime)!important;
  }
  .wp-block-navigation__responsive-container-content .rsa-nav-cta .wp-block-navigation-item__content{
    background:var(--wp--preset--color--orange);color:#fff!important;
    border-radius:10px;padding:14px 28px!important;margin-top:12px;display:inline-block;
  }
}

.rsa-eyebrow{
  font:800 13px/1.2 var(--wp--preset--font-family--manrope);
  letter-spacing:.13em;text-transform:uppercase;
  color:var(--wp--preset--color--orange);
  margin:0 0 .6em;
}

/* Eigene Container-Utility statt WP alignwide/constrained – das
   page-full-width-Template hat bewusst keinen Layout-Constraint, daher
   müssen Innenabstände/Zentrierung hier selbst übernommen werden. */
.rsa-container{width:min(1160px, 100% - 3rem);margin-inline:auto}
@media(max-width:700px){.rsa-container{width:min(1160px, 100% - 1.75rem)}}

/* Vertikaler Sektions-Rhythmus (entspricht .section im Prototyp: 112px, mobil 76px) */
#schulung, #inhalte, #live-schulung, .rsa-termine-section, #wissen, #faq, #buchen{
  padding-block:112px;
}
.rsa-section-split{padding-block:20px 112px}
@media(max-width:700px){
  #schulung, #inhalte, #live-schulung, .rsa-termine-section, #wissen, #faq, #buchen{
    padding-block:76px;
  }
  .rsa-section-split{padding-block:20px 76px}
}

/* Fachwissen: Abstände zwischen Hero, Intro, Sprungmarken, Artikeln, Quellen */
.rsa-fw-intro-section{padding:56px 0 30px}
#fachthemen{padding:25px 0 44px}
.rsa-fw-content-section{padding:22px 0 64px}
.rsa-fw-sources-section{padding-bottom:60px}

/* Formularseiten (Online-Buchung, Inhouse-Anfrage) */
.rsa-form-page-section{padding:46px 0 76px}

/* ==================== Gravity Forms: an rsa-form-card angeglichen ====================
   GF liefert (Version hier) das "Orbital"-Theme mit eigenem, per Inline-<style> per
   CSS-Variablen gesetztem Look (blaue Akzentfarbe). Statt jede Regel einzeln zu
   überschreiben, kapern wir zuerst die GF-eigenen --gf-*-Variablen (mit !important,
   da GFs Inline-Style recht hoch spezifisch ist) und passen dann Struktur/Abstände an. */
.rsa-form-page-section .gform-theme{
  --gf-color-primary:var(--wp--preset--color--orange) !important;
  --gf-color-primary-contrast:#fff !important;
  --gf-color-primary-darker:#e04d00 !important;
  --gf-color-primary-lighter:#ff7a1a !important;
  --gf-color-in-ctrl-primary:var(--wp--preset--color--orange) !important;
  --gf-color-in-ctrl-primary-contrast:#fff !important;
  --gf-ctrl-border-color:#cbd1d5 !important;
  --gf-radius:8px !important;
}

.rsa-form-page-section .gform_wrapper{
  max-width:920px;margin:auto;background:#fff;border:1px solid var(--wp--preset--color--line);
  border-radius:22px;box-shadow:0 24px 70px rgba(8,15,20,.10);padding:34px;
}
.rsa-form-page-section .gform_heading{
  display:flex;flex-direction:column-reverse;position:relative;
  padding-bottom:24px;margin-bottom:18px;border-bottom:1px solid var(--wp--preset--color--line);
}
.rsa-form-page-section .gform_title{font:800 27px var(--wp--preset--font-family--manrope);margin:0}
.rsa-form-page-section .gform_description{
  color:var(--wp--preset--color--orange);font:800 12px var(--wp--preset--font-family--manrope);
  text-transform:uppercase;letter-spacing:.13em;margin:0 0 7px;
}
.rsa-form-page-section .gform_heading::after{
  content:"Mit * markierte Felder sind Pflichtfelder.";
  position:absolute;right:0;bottom:24px;color:var(--wp--preset--color--muted);font-size:12px;
}
@media(max-width:700px){
  .rsa-form-page-section .gform_heading::after{position:static;display:block;margin-top:8px}
}

.rsa-form-page-section .gfield{margin-top:17px}
.rsa-form-page-section .gfield_label,
.rsa-form-page-section .gform-field-label{font-size:13px;font-weight:700;margin-bottom:7px;display:block}
.rsa-form-page-section .gfield_required{color:var(--wp--preset--color--orange);margin-left:3px}
.rsa-form-page-section .gfield_required_text{display:none}
.rsa-form-page-section .gfield_description{font-size:11px;color:var(--wp--preset--color--muted);margin-top:5px}

.rsa-form-page-section .ginput_container input[type="text"],
.rsa-form-page-section .ginput_container input[type="email"],
.rsa-form-page-section .ginput_container input[type="tel"],
.rsa-form-page-section .ginput_container input[type="number"],
.rsa-form-page-section .ginput_container select,
.rsa-form-page-section .ginput_container textarea{
  width:100% !important;min-height:49px;padding:13px 14px;border:1px solid #cbd1d5;border-radius:8px !important;
  color:var(--wp--preset--color--ink);background:#fff;font:inherit;
}
.rsa-form-page-section .ginput_container input:focus,
.rsa-form-page-section .ginput_container select:focus,
.rsa-form-page-section .ginput_container textarea:focus{
  outline:none;border-color:var(--wp--preset--color--orange);box-shadow:0 0 0 3px rgba(255,90,10,.12);
}
.rsa-form-page-section .ginput_container input.small{max-width:160px !important}

/* Section-Break: "Schritt N" (Description, orange Kicker) über dem eigentlichen
   Titel (Label) – visuell per column-reverse getauscht, DOM-Reihenfolge bleibt
   Titel-zuerst für Vorlesereihenfolge/Barrierefreiheit. */
.rsa-form-page-section .gfield--type-section{
  display:flex;flex-direction:column-reverse;
  padding:18px 0 6px !important;border-top:1px solid var(--wp--preset--color--line);margin-top:28px !important;
}
.rsa-form-page-section .gfield--type-section:first-child{border-top:0;margin-top:0 !important;padding-top:0 !important}
/* GF setzt "…field_description_below + li.gsection{margin-top:24px !important}"
   – bei gleichem !important gewinnt die höhere Spezifität. body/form sind
   echte Vorfahren-Elemente hier (kein künstlicher Spezifitäts-Hack). */
body .rsa-form-page-section .gform_wrapper form li.gfield.gfield--type-section:not(:first-child){
  margin-top:28px !important;
}
body .rsa-form-page-section .gform_wrapper form li.gfield.gfield--type-section:first-child{
  margin-top:0 !important;
}
.rsa-form-page-section .gsection_title{
  font:800 20px var(--wp--preset--font-family--manrope);color:var(--wp--preset--color--ink);margin:0;
  border:0;padding:0;
}
.rsa-form-page-section .gsection_description{
  display:block;color:var(--wp--preset--color--orange);font:800 11px var(--wp--preset--font-family--manrope);
  text-transform:uppercase;letter-spacing:.11em;margin:0 0 6px;
}
.rsa-form-page-section .gsection_description .rsa-step-note{
  display:block;color:var(--wp--preset--color--muted);font:500 13px var(--wp--preset--font-family--inter);
  text-transform:none;letter-spacing:normal;margin-top:6px;
}

/* Checkbox / Radio */
.rsa-form-page-section .gchoice{
  display:flex;gap:10px;align-items:flex-start;font-size:12.5px;margin-top:10px;
}
.rsa-form-page-section .gchoice input{width:18px !important;height:18px;min-height:auto;margin-top:2px;flex:none}
.rsa-form-page-section .gchoice label{font-size:12.5px;font-weight:400}
.rsa-form-page-section fieldset.gfield{border:0;padding:0;margin:17px 0 0}
.rsa-form-page-section fieldset.gfield legend.gfield_label{padding:0}

/* Preis-Felder (Product/Seminar-Details/Quantity/Total) – optisch als eine
   zusammenhängende Box, wie die .seminar-box im Prototyp */
/* !important nötig: GF-eigenes CSS (formsmain.min.css) setzt "body .gform_
   legacy_markup_wrapper ul li.gfield{margin-top:16px}" – durch die zusätzlichen
   Element-Selektoren (body/ul/li) höhere Spezifität als unsere Klassen-Regel,
   gewinnt sonst trotz späterer Reihenfolge im Stylesheet und reißt die
   Box zwischen den Feldern optisch wieder auf. */
/* :has(.rsa-seminar-details) statt generisch .gfield--type-html – dieser Typ
   trifft sonst auch auf die ANDEREN HTML-Felder im Formular (Teilnehmer-
   Hinweisbox .rsa-add-hint, Kostenbox .rsa-cost-box im Teilnehmer-Schritt),
   die eine eigene, komplett andere Optik haben und keine orangene Box-
   Fortsetzung bekommen sollen. */
.rsa-form-page-section .gfield--type-product,
.rsa-form-page-section .gfield--type-html:has(.rsa-seminar-details),
.rsa-form-page-section .gfield--type-quantity,
.rsa-form-page-section .gfield--type-total{
  background:var(--rsa-orange-soft);border:1px solid rgba(255,90,10,.28);padding:16px 18px;margin-top:0 !important;
}
.rsa-form-page-section .gfield--type-product{border-radius:16px 16px 0 0;border-bottom:0;margin-top:17px !important;padding-top:20px}
/* Quantity/Total sind visuell versteckt (.rsa-hidden-field, eigene Kostenbox
   ersetzt sie) – der untere Boxabschluss (Rundung + Rand) muss deshalb aufs
   letzte tatsächlich SICHTBARE Feld wandern, sonst bleibt die Box unten offen
   und wirkt wie zwei getrennte Kästen. */
.rsa-form-page-section .gfield--type-html:has(.rsa-seminar-details){border-radius:0 0 16px 16px;border-top:0;padding-top:0;padding-bottom:20px}
.rsa-form-page-section .gfield--type-quantity{border-radius:0;border:0;padding:0;margin:0}
.rsa-form-page-section .gfield--type-total{border-radius:0;border:0;padding:0;margin:0}
.rsa-form-page-section .rsa-seminar-details{margin-top:0}
.rsa-form-page-section .ginput_container_total .ginput_total{
  font:800 21px var(--wp--preset--font-family--manrope) !important;color:var(--wp--preset--color--ink);
  border:0;background:transparent;padding:0;width:auto !important;min-height:auto;
}

/* Teilnehmerliste (List-Feld) – GF rendert das als echte <table>
   (thead/th + tbody/tr/td), nicht als Grid/Flex-Divs. table-layout:fixed
   plus feste Breite auf der Icon-Spalte hält Kopf- und Datenzeilen exakt
   in Spur; ohne das driften th/td je nach Inhalt auseinander. */
.rsa-form-page-section .ginput_container_list{overflow-x:auto}
.rsa-form-page-section table.gfield_list_container{
  width:100%;table-layout:fixed;border-collapse:separate;border-spacing:0 12px;margin-top:4px;
}
.rsa-form-page-section table.gfield_list_container col:last-child{width:100px}
.rsa-form-page-section table.gfield_list_container thead th,
.rsa-form-page-section table.gfield_list_container thead td{
  text-align:left;font-size:12px;font-weight:700;color:var(--wp--preset--color--muted);
  padding:0 12px 7px 0;border:0;
}
.rsa-form-page-section table.gfield_list_container tbody td{padding:0 12px 0 0;vertical-align:top;border:0}
.rsa-form-page-section table.gfield_list_container tbody td:last-child{padding-right:0}
.rsa-form-page-section .gfield_list_cell input,
.rsa-form-page-section .gfield_list_cell select{box-sizing:border-box;width:100%;min-height:49px;padding:13px 14px;border:1px solid #cbd1d5;border-radius:8px;background:#fff;font:inherit;color:var(--wp--preset--color--ink)}
.rsa-form-page-section .gfield_list_icons{white-space:nowrap}
.rsa-form-page-section .add_list_item,
.rsa-form-page-section .delete_list_item{
  display:inline-grid!important;place-items:center;
  width:42px;height:42px;border-radius:50%;border:1px solid var(--wp--preset--color--line);background:#fff;
  cursor:pointer;margin-right:8px;
}
.rsa-form-page-section .add_list_item{background:var(--wp--preset--color--orange);border-color:var(--wp--preset--color--orange)}
.rsa-form-page-section .gfield_list_icons img{width:16px!important;height:16px!important;opacity:1!important}
.rsa-form-page-section .add_list_item img{filter:brightness(0) invert(1)}
.rsa-form-page-section .delete_list_item{border-color:rgba(255,90,10,.45)}
.rsa-form-page-section .delete_list_item img{filter:brightness(0)}

/* Quantity/Total-Felder sind funktional (für GF-eigene Preisberechnung/Speicherung),
   visuell aber durch die eigene .rsa-cost-box ersetzt (siehe Teilnehmer-Schritt). */
.rsa-form-page-section .rsa-hidden-field{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;margin:0;padding:0;border:0}

/* Button + Footer */
.rsa-form-page-section .gform_footer{padding-top:8px;margin-top:20px;border:0;display:flex;flex-direction:column;gap:10px}
.rsa-form-page-section .gform_footer::after{
  content:"Deine Daten werden sicher und verschlüsselt übertragen.";
  text-align:center;color:var(--wp--preset--color--muted);font-size:11px;
}
.rsa-form-page-section .gform_button{
  width:100%;display:inline-flex;align-items:center;justify-content:center;
  border:0 !important;border-radius:9px !important;padding:16px 22px !important;
  font:800 14px var(--wp--preset--font-family--manrope) !important;
  background:var(--wp--preset--color--orange) !important;color:#fff !important;cursor:pointer;
}
.rsa-form-page-section .gform_confirmation_message{
  max-width:920px;margin:auto;background:#fff;border:1px solid var(--wp--preset--color--line);
  border-radius:22px;box-shadow:0 24px 70px rgba(8,15,20,.10);padding:34px;font-size:16px;
}
.rsa-form-page-section .gform_confirmation_message strong{color:var(--wp--preset--color--orange)}

@media(max-width:700px){
  .rsa-form-page-section .gform_wrapper,
  .rsa-form-page-section .gform_confirmation_message{padding:22px 17px}
  /* Teilnehmerliste als Karten stapeln statt Tabelle mit Sub-Pixel-Spalten */
  .rsa-form-page-section table.gfield_list_container,
  .rsa-form-page-section table.gfield_list_container tbody{display:block}
  .rsa-form-page-section table.gfield_list_container thead{display:none}
  .rsa-form-page-section table.gfield_list_container tr.gfield_list_group{
    display:block;border:1px solid var(--wp--preset--color--line);border-radius:12px;
    padding:14px;margin-bottom:12px;
  }
  .rsa-form-page-section table.gfield_list_container tbody td{
    display:block;width:100%;padding:0 0 10px;
  }
  .rsa-form-page-section table.gfield_list_container tbody td[data-label]::before{
    content:attr(data-label);display:block;font-size:12px;font-weight:700;
    color:var(--wp--preset--color--muted);margin-bottom:5px;
  }
  .rsa-form-page-section table.gfield_list_container tbody td.gfield_list_icons{
    padding-bottom:0;display:flex;justify-content:center;gap:10px;
  }
}

/* Abstand für Inhalte, die direkt unter dem transparent überlagerten
   Header beginnen (der Header ist auf allen Seiten position:absolute).
   margin-top:0 verhindert, dass WPs globaler Block-Gap (theme.json, 1.5rem)
   auf das allererste Element der Seite durchschlägt und einen Spalt vor dem
   Hero/Header-Hintergrund freigibt (zeigte sich als schwarzer Balken). */
.rsa-page-top{margin-top:0!important;padding-top:calc(112px + 3rem)}
@media(max-width:768px){.rsa-page-top{padding-top:calc(92px + 2rem)}}

/* ==================== Startseite: Hero ==================== */
.rsa-hero{position:relative;overflow:hidden;min-height:640px;padding-bottom:48px}
.rsa-hero-bg{position:absolute;inset:0;z-index:0;background-size:cover;background-position:center 42%;filter:saturate(.88) contrast(1.05)}
.rsa-hero::before{content:"";position:absolute;inset:0;z-index:1;background-image:linear-gradient(90deg,rgba(6,10,13,.96) 0%,rgba(6,10,13,.82) 38%,rgba(6,10,13,.22) 70%,rgba(6,10,13,.08) 100%)}
.rsa-hero>*:not(.rsa-hero-bg){position:relative;z-index:2}
.rsa-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);align-items:end;gap:32px}
.rsa-hero-copy{max-width:760px}
.rsa-hero h1{font-size:clamp(2.6rem,6.1vw,5.75rem)!important;line-height:.95!important;letter-spacing:-.055em;margin:.3em 0 .5em}
.rsa-hero h1 em{color:var(--wp--preset--color--lime);font-style:normal}
.rsa-hero-sub{font-size:19px;max-width:630px;color:#e6eaec}
.rsa-hero-facts{display:flex;flex-wrap:wrap;gap:16px 28px;margin:1.5em 0}
.rsa-fact-mini{display:flex;gap:11px;align-items:flex-start;font-size:14px;max-width:200px;color:#e6eaec}
.rsa-fact-mini b{display:block;color:#fff}
.rsa-icon-dot{width:34px;height:34px;border:1px solid rgba(255,90,10,.65);border-radius:10px;display:grid;place-items:center;color:var(--wp--preset--color--orange);flex:none}
.rsa-hero-actions{display:flex;flex-wrap:wrap;gap:14px}
.rsa-hero-side{justify-self:end;width:280px;padding:18px 18px 18px 20px;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:rgba(10,17,22,.62);backdrop-filter:blur(10px)}
.rsa-hero-side strong{font:800 34px var(--wp--preset--font-family--manrope);color:var(--wp--preset--color--lime);display:block}
.rsa-hero-side span{color:#d8dfe3;font-size:13px}

/* ==================== Startseite: Logo-Leiste ==================== */
.rsa-logo-strip{background:#fff;border-bottom:1px solid var(--wp--preset--color--line);padding:30px 0 34px}
.rsa-logo-title{text-align:center;font:800 15px var(--wp--preset--font-family--manrope);margin-bottom:18px}
.rsa-logo-img{width:100%;opacity:.78;filter:grayscale(1);mix-blend-mode:multiply}

/* ==================== Karten (3er-Grid) ==================== */
.rsa-cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.rsa-card{background:#fff;border:1px solid var(--wp--preset--color--line);border-radius:var(--rsa-radius);padding:34px;box-shadow:0 12px 36px rgba(9,16,22,.06);display:flex;flex-direction:column;min-height:340px}
.rsa-card-circle{width:62px;height:62px;border-radius:50%;background:var(--wp--preset--color--ink);display:grid;place-items:center;color:var(--wp--preset--color--lime);font-size:27px;margin-bottom:26px}
.rsa-card h3{font:800 24px/1.12 var(--wp--preset--font-family--manrope);margin:0 0 15px}
:where(.rsa-card) p{color:#47525b;margin:0 0 30px}
.rsa-card a{margin-top:auto;color:var(--wp--preset--color--orange);font:800 13px var(--wp--preset--font-family--manrope);text-transform:uppercase;letter-spacing:.04em}

/* ==================== Zielgruppen-Split ==================== */
.rsa-split{display:grid;grid-template-columns:1fr 1.15fr;min-height:560px;background:var(--wp--preset--color--ink);border-radius:32px;overflow:hidden;box-shadow:var(--rsa-shadow)}
.rsa-split-image{min-height:460px;background-size:cover;background-position:34% center}
.rsa-split-copy{padding:72px;color:#fff;display:flex;flex-direction:column;justify-content:center}
:where(.rsa-split-copy) p{color:#c9d0d4;max-width:600px}
.rsa-chips{display:flex;flex-wrap:wrap;gap:11px;margin-top:28px}
.rsa-chip{border:1px solid rgba(255,255,255,.14);background:#192127;border-radius:9px;padding:10px 13px;font-weight:600;font-size:14px}
.rsa-chip::before{content:"●";color:var(--wp--preset--color--lime);margin-right:8px}

/* ==================== Curriculum ==================== */
.rsa-curriculum{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.rsa-checklist{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:28px}
.rsa-check{display:flex;gap:13px;color:#d8dfe3}
.rsa-check i{width:28px;height:28px;border-radius:8px;background:rgba(255,90,10,.13);color:var(--wp--preset--color--orange);display:grid;place-items:center;font-style:normal;flex:none}

.rsa-course-choices{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:34px 0 30px}
.rsa-course-choice{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.045);border-radius:20px;padding:24px}
.rsa-course-choice.is-featured{border-color:rgba(215,255,47,.55);background:linear-gradient(145deg,rgba(215,255,47,.13),rgba(255,255,255,.04))}
.rsa-course-choice small{display:block;color:#9ba6ad;font:800 11px/1.2 var(--wp--preset--font-family--manrope);text-transform:uppercase;letter-spacing:.1em;margin-bottom:9px}
.rsa-course-choice h3{font:800 22px/1.15 var(--wp--preset--font-family--manrope);margin:0 0 9px}
:where(.rsa-course-choice) p{color:#bfc8cd;font-size:14px;margin:0}
.rsa-course-price{font:800 clamp(38px,4vw,58px)/1 var(--wp--preset--font-family--manrope);letter-spacing:-.045em;color:var(--wp--preset--color--lime);margin:18px 0 5px}
.rsa-course-tax{font-size:12px;color:#8e989f}
.rsa-course-addon{margin-top:18px;padding-top:17px;border-top:1px solid rgba(255,255,255,.12);font-size:13px;color:#d4dadd}

.rsa-blueprint{position:relative;min-height:500px;border-radius:28px;background:#ece9e2;overflow:hidden;box-shadow:var(--rsa-shadow);transform:rotate(-1.2deg)}
.rsa-blueprint::before{content:"";position:absolute;inset:38px;background:repeating-linear-gradient(0deg,transparent 0 31px,rgba(22,86,126,.15) 32px),repeating-linear-gradient(90deg,transparent 0 31px,rgba(22,86,126,.15) 32px);border:2px solid rgba(22,86,126,.25)}
.rsa-blueprint::after{content:"RSA 21 · Verkehrszeichenplan · VAO";position:absolute;left:62px;top:62px;font:800 24px var(--wp--preset--font-family--manrope);color:#1e5574;letter-spacing:.03em}
.rsa-plan-lines{position:absolute;inset:140px 70px 80px;border:3px solid #286b8f;border-radius:50% 12% 42% 18%;transform:rotate(-8deg)}
.rsa-plan-lines::before,.rsa-plan-lines::after{content:"";position:absolute;background:var(--wp--preset--color--orange);border-radius:50%}
.rsa-plan-lines::before{width:18px;height:18px;left:18%;top:34%;box-shadow:90px 40px 0 var(--wp--preset--color--orange),190px -12px 0 var(--wp--preset--color--orange),280px 90px 0 var(--wp--preset--color--orange)}
.rsa-plan-lines::after{width:130px;height:4px;right:10%;bottom:22%;transform:rotate(22deg)}
.rsa-float-card{position:absolute;right:24px;bottom:22px;background:var(--wp--preset--color--ink);color:#fff;padding:20px 22px;border-radius:16px;box-shadow:0 20px 45px rgba(0,0,0,.25)}
.rsa-float-card b{color:var(--wp--preset--color--lime);font:800 30px var(--wp--preset--font-family--manrope);display:block}

/* ==================== Live-Vorteile ==================== */
.rsa-live-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:40px}
.rsa-live-item{padding:30px;border-left:1px solid rgba(11,16,20,.15)}
.rsa-live-item:first-child{border-left:0}
.rsa-live-icon{width:54px;height:54px;background:var(--wp--preset--color--ink);color:var(--wp--preset--color--lime);display:grid;place-items:center;border-radius:50%;font-size:22px}
.rsa-live-item h3{font:800 22px var(--wp--preset--font-family--manrope);margin:15px 0 10px}
:where(.rsa-live-item) p{color:#59636b}

/* ==================== Fakten-Band ==================== */
.rsa-facts{display:grid;grid-template-columns:repeat(4,1fr)}
.rsa-fact{padding:48px 30px;border-right:1px solid rgba(255,255,255,.12)}
.rsa-fact:last-child{border:0}
.rsa-fact b{display:block;font:800 28px var(--wp--preset--font-family--manrope);color:var(--wp--preset--color--lime);margin-bottom:8px}
.rsa-fact span{color:#c9d0d4}

/* ==================== Wissenswertes-Teaser ==================== */
.rsa-knowledge-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:38px}
.rsa-knowledge-teaser{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
/* WP setzt global auf Flow-Layout-Kinder margin-block:24px 0 (Block-Gap) –
   die Karten sind zwar als "is-layout-flow" markiert, liegen aber visuell im
   Grid. Ohne diese Korrektur bekommen Karte 2-4 einen 24px-Top-Margin, der
   sie im gleich hohen Grid-Feld nach unten drückt und ihre sichtbare Box
   kürzer wirken lässt als die erste (margin-freie) Karte. */
.rsa-knowledge-teaser-card{margin-top:0 !important}
.rsa-knowledge-teaser-card{background:#fff;border-radius:20px;overflow:hidden;border:1px solid var(--wp--preset--color--line);box-shadow:0 10px 32px rgba(9,16,22,.05)}
.rsa-thumb{height:190px;position:relative;overflow:hidden;display:grid;place-items:center;font:800 28px var(--wp--preset--font-family--manrope);letter-spacing:.04em}
.rsa-thumb.is-one{background:linear-gradient(135deg,#2a343b,#0d1317);color:var(--wp--preset--color--lime)}
.rsa-thumb.is-two{background:linear-gradient(135deg,#f0ece4,#cbc5b8);color:#30383d}
.rsa-thumb.is-two span{transform:rotate(-7deg)}
.rsa-thumb.is-three{background:linear-gradient(135deg,#3a4248,#182026);color:#fff}
.rsa-thumb.is-four{background:linear-gradient(135deg,#20292f,#080d10);color:var(--wp--preset--color--orange)}
.rsa-kbody{padding:24px}
.rsa-kbody h3{font:800 20px var(--wp--preset--font-family--manrope);margin:0 0 9px}
:where(.rsa-kbody) p{color:#606a72;font-size:14px}
/* Beschreibungstext (erster Absatz) hart auf 2 Zeilen begrenzt (Kürzung mit
   "…" bei längeren Texten) statt nur einer Mindesthöhe – eine min-height
   reicht nicht, sobald ein Text mehr Zeilen braucht als die anderen (wie bei
   "RSA Schulung"), dann bricht die Karte trotzdem höher aus. Mit line-clamp
   sind alle 4 Karten garantiert exakt gleich hoch, unabhängig von der
   Textlänge. min-height reserviert den Platz auch für kürzere 1-Zeilen-Texte.
   Auf den "Mehr erfahren"-Link (zweiter Absatz) wirkt das nicht. */
:where(.rsa-kbody) p:first-of-type{
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;min-height:47px;
}
.rsa-kbody a{color:var(--wp--preset--color--orange);font-weight:800;font-size:13px}

/* ==================== Termin-Slider (Desktop) ==================== */
.rsa-termine-section{background:#ecebe6;overflow:hidden}
.rsa-termine-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:38px}
.rsa-slider-controls{display:flex;gap:10px}
.rsa-slider-btn{width:48px;height:48px;border-radius:50%;border:1px solid var(--wp--preset--color--line);background:#fff;color:var(--wp--preset--color--ink);font-size:24px;cursor:pointer;transition:.2s}
.rsa-slider-btn:hover{background:var(--wp--preset--color--ink);color:#fff;transform:translateY(-2px)}
.rsa-termine-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,1fr);gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:6px 2px 24px;scrollbar-width:none}
.rsa-termine-track::-webkit-scrollbar{display:none}
.rsa-termin-card{scroll-snap-align:start;background:#fff;border:1px solid rgba(11,16,20,.08);border-radius:22px;padding:26px;min-height:320px;display:flex;flex-direction:column;box-shadow:0 14px 35px rgba(9,16,22,.07)}
.rsa-termin-date{font:800 42px/1 var(--wp--preset--font-family--manrope);letter-spacing:-.05em;margin-bottom:34px}
.rsa-termin-date span{display:block;font:700 13px/1.2 var(--wp--preset--font-family--inter);letter-spacing:.08em;text-transform:uppercase;margin-top:8px;color:var(--wp--preset--color--muted)}
.rsa-termin-card h3{font:800 21px/1.2 var(--wp--preset--font-family--manrope);margin:0 0 14px}
.rsa-termin-meta{display:grid;gap:7px;color:#53606a;font-size:14px;margin-bottom:24px}
.rsa-termin-price{font:800 25px/1 var(--wp--preset--font-family--manrope);margin-top:auto;margin-bottom:16px}
.rsa-termin-price small{font:500 12px/1.4 var(--wp--preset--font-family--inter);color:var(--wp--preset--color--muted)}
/* font-size:14px wie im Prototyp (.btn{font:800 14px...}) statt der globalen
   Button-Schriftgröße – sonst passt "Termin buchen →" nicht in eine Zeile.
   box-shadow/hover hier separat gesetzt, weil dieser Button (anders als ein
   normaler wp:button-Block) ohne den .wp-block-button-Wrapper auskommt, an
   den die globale Regel weiter oben gebunden ist. */
/* height:auto überschreibt WP-Cores unscoped .wp-block-button__link{height:100%} –
   das greift normalerweise nicht (Buttons stecken sonst im .wp-block-button-
   Wrapper), zieht sich hier aber am Flex-Column-Layout der Karte hoch und
   frisst den kompletten freien Platz, macht den Button riesig. */
.rsa-termin-card .wp-block-button__link{
  width:100%;height:auto;flex:none;font-size:14px;white-space:nowrap;
  box-shadow:0 14px 30px rgba(255,90,10,.25);
  transition:transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.rsa-termin-card .wp-block-button__link:hover{
  transform:translateY(-2px);
  background-color:#ff7a1a;
  box-shadow:0 18px 36px rgba(255,90,10,.32);
}
.rsa-slider-hint{font-size:13px;color:var(--wp--preset--color--muted);margin-top:2px}

/* 2-Tages-Terminkarte: kompaktes Zwei-Tage-Datum statt der großen Einzelziffer
   (passt nicht für zwei Tage, v.a. bei Monatswechsel), Badge zum schnellen
   Erkennen, orangener Rahmen als Akzent statt neutralem Standardrahmen. */
.rsa-termin-card.is-2tage{border-color:var(--wp--preset--color--orange);border-width:2px;position:relative}
.rsa-termin-badge{
  position:absolute;top:-11px;left:24px;background:var(--wp--preset--color--ink);
  color:var(--wp--preset--color--lime);font:800 10px var(--wp--preset--font-family--manrope);
  letter-spacing:.06em;text-transform:uppercase;padding:5px 10px;border-radius:999px;
}
.rsa-termin-date.is-2tage{
  font:800 21px/1.25 var(--wp--preset--font-family--manrope);letter-spacing:-.02em;
  margin-top:6px;
}
.rsa-termin-date.is-2tage span{margin-top:8px}
.rsa-termin-plus{color:var(--wp--preset--color--muted);font-weight:700}

/* ==================== FAQ ==================== */
.rsa-faq-intro{max-width:830px;margin-bottom:48px}
.rsa-faq-groups{display:grid;grid-template-columns:1fr 1fr;gap:46px 28px}
.rsa-faq-group h3{font:800 18px/1.2 var(--wp--preset--font-family--manrope);text-transform:uppercase;letter-spacing:.08em;color:var(--wp--preset--color--orange);margin:0 0 14px}
.rsa-faq-item{border-top:1px solid var(--wp--preset--color--line)}
.rsa-faq-item:last-child{border-bottom:1px solid var(--wp--preset--color--line)}
.rsa-faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:21px 0;border:0;background:none;text-align:left;color:var(--wp--preset--color--ink);font:700 17px/1.35 var(--wp--preset--font-family--manrope);cursor:pointer}
.rsa-faq-icon{width:31px;height:31px;flex:0 0 31px;border-radius:50%;display:grid;place-items:center;background:var(--wp--preset--color--ink);color:var(--wp--preset--color--lime);font-size:20px;transition:.2s}
.rsa-faq-item.is-open .rsa-faq-icon{transform:rotate(45deg);background:var(--wp--preset--color--orange);color:#fff}
.rsa-faq-answer{display:grid;grid-template-rows:0fr;transition:grid-template-rows .28s ease}
.rsa-faq-answer>div{overflow:hidden}
:where(.rsa-faq-answer) p{margin:0;padding:0 50px 22px 0;color:#4d5962}
.rsa-faq-item.is-open .rsa-faq-answer{grid-template-rows:1fr}

/* ==================== CTA ==================== */
.rsa-cta-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:44px;align-items:center}
.rsa-cta-title{font-size:clamp(2.6rem,5vw,4.5rem)!important;line-height:.98!important;letter-spacing:-.05em}
.rsa-cta-title em{color:var(--wp--preset--color--lime);font-style:normal}
.rsa-cta-options{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.rsa-cta-card{padding:34px;border-radius:22px;min-height:190px;display:flex;flex-direction:column;justify-content:space-between;color:#fff}
.rsa-cta-card.is-orange{background:var(--wp--preset--color--orange)}
.rsa-cta-card.is-black{border:1px solid rgba(255,255,255,.18);background:#151d22}
.rsa-cta-card small{font:800 12px var(--wp--preset--font-family--manrope);text-transform:uppercase}
.rsa-cta-card b{font:800 26px var(--wp--preset--font-family--manrope)}

/* ==================== Fachwissen: Hero + Intro ==================== */
.rsa-fw-hero-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:24px}
.rsa-fw-hero h1{max-width:850px;margin:.3em 0 .5em;font-size:clamp(2.6rem,5vw,4.25rem)!important;letter-spacing:-.055em}
.rsa-fw-hero-panel{position:relative;overflow:hidden;min-height:320px;border-radius:24px;padding:28px;display:flex;flex-direction:column;justify-content:flex-end;background:radial-gradient(circle at 72% 22%,rgba(216,255,50,.26),transparent 18%),linear-gradient(145deg,rgba(255,90,10,.95),rgba(255,90,10,.15) 54%),linear-gradient(45deg,#4d5d66,#18242b);color:#fff}
.rsa-fw-hero-panel strong{position:relative;font:800 27px/1.15 var(--wp--preset--font-family--manrope);max-width:280px;display:block}
.rsa-fw-hero-panel span{position:relative;margin-top:12px;color:#f2f5f6;font-size:13px;display:block}
.rsa-fw-hero-tags{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}
.rsa-fw-hero-tags a{padding:9px 11px;border:1px solid rgba(255,255,255,.16);border-radius:8px;background:rgba(255,255,255,.04);color:#dde3e6;font-size:12px;font-weight:700}
.rsa-fw-hero-tags a:hover{border-color:var(--wp--preset--color--orange);color:#fff}

.rsa-fw-intro-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start}
.rsa-fw-intro-grid h2{margin:8px 0 0;font:800 34px/1.12 var(--wp--preset--font-family--manrope);letter-spacing:-.035em}
.rsa-fw-answer-box{margin-top:25px;padding:21px 23px;border-left:4px solid var(--wp--preset--color--orange);border-radius:0 13px 13px 0;background:#fff}
.rsa-fw-answer-box strong{display:block;font:800 15px var(--wp--preset--font-family--manrope);margin-bottom:5px}

.rsa-fw-jump{background:#fff;border:1px solid var(--wp--preset--color--line);border-radius:18px;padding:23px}
.rsa-fw-jump-head{display:flex;justify-content:space-between;gap:20px;align-items:center;margin-bottom:17px}
.rsa-fw-jump-head h3{margin:0;font:800 18px var(--wp--preset--font-family--manrope)}
.rsa-fw-jump-head small{color:var(--wp--preset--color--muted)}
.rsa-fw-jump-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:9px}
.rsa-fw-jump-grid a{min-height:62px;padding:11px;border:1px solid var(--wp--preset--color--line);border-radius:9px;background:#fafafa;font-size:11px;font-weight:750;display:flex;align-items:center;color:var(--wp--preset--color--ink)}
.rsa-fw-jump-grid a:hover{background:var(--rsa-orange-soft);border-color:var(--wp--preset--color--orange)}

/* ==================== Fachwissen: Themenartikel ====================
   Nutzt den bestehenden .rsa-knowledge-topic-Akkordeon-Hook aus
   responsive.css/interactions.js, ergänzt um das Desktop-Kartenlayout. */
.rsa-knowledge-topic{scroll-margin-top:24px;display:grid;grid-template-columns:92px 1fr;background:#fff;border:1px solid var(--wp--preset--color--line);border-radius:20px;overflow:hidden;margin-bottom:24px}
.rsa-section-number{padding:27px 18px;background:#f7f7f4;border-right:1px solid var(--wp--preset--color--line);font:800 34px var(--wp--preset--font-family--manrope);color:var(--wp--preset--color--orange);text-align:center;margin:0}
.rsa-article-body{padding:31px 36px 33px}
.rsa-article-kicker{display:block;margin-bottom:7px;color:var(--wp--preset--color--orange);font:800 11px var(--wp--preset--font-family--manrope);letter-spacing:.11em;text-transform:uppercase}
.rsa-article-body h2{margin:0 0 15px;font:800 28px/1.18 var(--wp--preset--font-family--manrope);letter-spacing:-.03em}
.rsa-article-lead{margin:0 0 17px;font-size:17px;font-weight:650;color:#263139}
:where(.rsa-knowledge-content) p{margin:0 0 15px;color:#465159}
.rsa-knowledge-content ul{margin:17px 0 18px;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:8px 22px;list-style:none}
.rsa-knowledge-content li{position:relative;padding-left:18px;color:#39444b;font-size:14px}
.rsa-knowledge-content li::before{content:"";position:absolute;left:0;top:.72em;width:7px;height:7px;border-radius:50%;background:var(--wp--preset--color--orange)}
.rsa-keyline{margin-top:22px;padding:17px 19px;border-radius:11px;background:var(--rsa-orange-soft);font-weight:700;color:#232d33}
.rsa-keyline span{color:var(--wp--preset--color--orange)}

.rsa-knowledge-topic.is-dark{background:var(--wp--preset--color--ink-2);color:#fff;border-color:var(--wp--preset--color--ink-2)}
.rsa-knowledge-topic.is-dark .rsa-section-number{background:#0c1216;border-color:rgba(255,255,255,.09);color:var(--wp--preset--color--lime)}
.rsa-knowledge-topic.is-dark .rsa-article-kicker{color:var(--wp--preset--color--lime)}
.rsa-knowledge-topic.is-dark .rsa-article-body h2,.rsa-knowledge-topic.is-dark .rsa-article-lead{color:#fff}
.rsa-knowledge-topic.is-dark .rsa-knowledge-content p,.rsa-knowledge-topic.is-dark .rsa-knowledge-content li{color:#c9d1d5}
.rsa-knowledge-topic.is-dark .rsa-knowledge-content li::before{background:var(--wp--preset--color--lime)}
.rsa-knowledge-topic.is-dark .rsa-keyline{background:rgba(216,255,50,.11);color:#fff;border:1px solid rgba(216,255,50,.18)}
.rsa-knowledge-topic.is-dark .rsa-keyline span{color:var(--wp--preset--color--lime)}

.rsa-knowledge-topic summary{padding:27px 36px}

.rsa-fw-crosslink{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:24px}
.rsa-fw-crosslink-card{padding:29px;border-radius:18px;background:#fff;border:1px solid var(--wp--preset--color--line);color:var(--wp--preset--color--ink);display:block}
.rsa-fw-crosslink-card.is-orange{background:var(--wp--preset--color--orange);border-color:var(--wp--preset--color--orange);color:#fff}
.rsa-fw-crosslink-card .rsa-eyebrow-small{font:800 11px var(--wp--preset--font-family--manrope);letter-spacing:.11em;text-transform:uppercase;color:var(--wp--preset--color--orange);display:block;margin-bottom:8px}
.rsa-fw-crosslink-card.is-orange .rsa-eyebrow-small{color:#fff}
.rsa-fw-crosslink-card h3{margin:8px 0 9px;font:800 23px/1.15 var(--wp--preset--font-family--manrope)}
:where(.rsa-fw-crosslink-card) p{margin:0 0 18px;color:var(--wp--preset--color--muted);font-size:14px}
.rsa-fw-crosslink-card.is-orange p{color:#fff4ed}

.rsa-fw-sources{padding:23px;border-top:1px solid var(--wp--preset--color--line);color:var(--wp--preset--color--muted);font-size:12px}
.rsa-fw-sources strong{color:var(--wp--preset--color--ink)}

/* ==================== Formulare: Buchung & Inhouse-Anfrage ==================== */
.rsa-form-intro-card{display:grid;grid-template-columns:1.3fr .7fr;min-height:205px;overflow:hidden;border-radius:22px;background:linear-gradient(125deg,#111a20,#19252c)}
.rsa-form-intro-copy{padding:34px 40px;display:flex;flex-direction:column;justify-content:center}
.rsa-form-intro-copy h1{margin:.3em 0;font-size:clamp(2.1rem,4.4vw,3.4rem)!important;letter-spacing:-.045em}
:where(.rsa-form-intro-copy) p{margin:0;color:#c5ced3;font-size:17px;max-width:700px}
.rsa-form-intro-image{min-height:205px;background:linear-gradient(145deg,rgba(255,90,10,.85),rgba(255,90,10,.15)),linear-gradient(45deg,#53626b,#25323a)}
.rsa-form-intro-facts{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.rsa-form-fact{padding:9px 11px;border:1px solid rgba(255,255,255,.16);border-radius:8px;font-size:12px;font-weight:700;background:rgba(255,255,255,.04);color:#fff}

.rsa-form-card{max-width:920px;margin:auto;background:#fff;border:1px solid var(--wp--preset--color--line);border-radius:22px;box-shadow:0 24px 70px rgba(8,15,20,.10);padding:34px}
.rsa-form-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;padding-bottom:24px;border-bottom:1px solid var(--wp--preset--color--line)}
.rsa-form-head h2{margin:7px 0 0;font:800 27px var(--wp--preset--font-family--manrope)}
.rsa-required-note{color:var(--wp--preset--color--muted);font-size:12px}
.rsa-req{color:var(--wp--preset--color--orange)}
.rsa-form-block{padding:28px 0;border-bottom:1px solid var(--wp--preset--color--line)}
.rsa-form-block:last-child{border-bottom:0;padding-bottom:0}
.rsa-block-kicker{display:block;margin-bottom:6px;color:var(--wp--preset--color--orange);font:800 11px var(--wp--preset--font-family--manrope);letter-spacing:.11em;text-transform:uppercase}
.rsa-block-title{margin:0 0 18px;font:800 20px var(--wp--preset--font-family--manrope)}
.rsa-block-intro{margin:-7px 0 18px;color:var(--wp--preset--color--muted);font-size:14px}
.rsa-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:17px}
.rsa-field{display:flex;flex-direction:column;gap:7px}
.rsa-field.is-full{grid-column:1/-1}
.rsa-field label{font-size:13px;font-weight:700}
.rsa-field .mobile-label{display:none}
.rsa-form-card input,.rsa-form-card select,.rsa-form-card textarea{width:100%;min-height:49px;padding:13px 14px;border:1px solid #cbd1d5;border-radius:8px;color:var(--wp--preset--color--ink);background:#fff;font:inherit}
.rsa-form-card input:focus,.rsa-form-card select:focus,.rsa-form-card textarea:focus{outline:none;border-color:var(--wp--preset--color--orange);box-shadow:0 0 0 3px rgba(255,90,10,.12)}
.rsa-form-card textarea{min-height:115px;resize:vertical}
.rsa-help{font-size:11px;color:var(--wp--preset--color--muted)}

.rsa-seminar-box{padding:22px;border:1px solid rgba(255,90,10,.28);border-radius:16px;background:var(--rsa-orange-soft)}
.rsa-seminar-details{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:15px}
.rsa-detail{padding:13px 14px;border-radius:9px;background:#fff;border:1px solid rgba(255,90,10,.18)}
.rsa-detail span{display:block;color:var(--wp--preset--color--muted);font-size:11px}
.rsa-detail strong{font:800 14px var(--wp--preset--font-family--manrope)}
.rsa-participant-intro{margin:0 0 18px;color:var(--wp--preset--color--muted);font-size:14px}
.rsa-participants-head,.rsa-participant-row{display:grid;grid-template-columns:150px 1fr 1fr 150px;gap:12px}
.rsa-participants-head{margin-bottom:7px}
.rsa-participants-head span{font-size:12px;font-weight:700;color:var(--wp--preset--color--muted)}
.rsa-participant-row{align-items:end;margin-bottom:12px}
.rsa-row-actions{display:flex;gap:8px;align-items:center;min-height:49px}
.rsa-icon-btn{width:42px;height:42px;border-radius:50%;border:1px solid var(--wp--preset--color--line);background:#fff;font-size:22px;cursor:pointer}
.rsa-icon-btn.is-add{background:var(--wp--preset--color--orange);color:#fff;border-color:var(--wp--preset--color--orange)}
.rsa-icon-btn.is-remove{color:var(--wp--preset--color--orange);border-color:rgba(255,90,10,.45)}
.rsa-add-hint{display:flex;gap:12px;align-items:center;margin-top:8px;padding:13px 14px;background:#f6f7f7;border-radius:9px;color:#5f6970;font-size:12px}
.rsa-plus-demo{width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:var(--wp--preset--color--orange);color:#fff;font-weight:800;flex:none}
.rsa-cost-box{margin-top:20px;padding:19px 20px;border-radius:13px;background:var(--wp--preset--color--ink);color:#fff}
.rsa-cost-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.rsa-cost-item span{display:block;color:#9eabb3;font-size:11px}
.rsa-cost-item strong{font:800 21px var(--wp--preset--font-family--manrope)}
.rsa-cost-item.is-total strong{font-size:27px;color:var(--wp--preset--color--lime)}
.rsa-cost-note{font-size:11px;color:#8f9ba3;margin-top:8px}

.rsa-choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:13px}
.rsa-choice{position:relative}
.rsa-choice input{position:absolute;opacity:0;pointer-events:none}
.rsa-choice label{display:block;min-height:104px;padding:17px;border:1px solid var(--wp--preset--color--line);border-radius:12px;background:#fafafa;cursor:pointer}
.rsa-choice label strong{display:block;margin-bottom:5px;font:800 15px var(--wp--preset--font-family--manrope)}
.rsa-choice label span{display:block;color:var(--wp--preset--color--muted);font-size:12px;line-height:1.45}
.rsa-choice input:checked + label{border-color:var(--wp--preset--color--orange);background:var(--rsa-orange-soft);box-shadow:0 0 0 2px rgba(255,90,10,.09)}

.rsa-summary-box{padding:20px;border-radius:14px;background:var(--wp--preset--color--ink);color:#fff}
.rsa-summary-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.rsa-summary-item span{display:block;color:#9eabb3;font-size:11px;margin-bottom:4px}
.rsa-summary-item strong{font:800 18px var(--wp--preset--font-family--manrope)}
.rsa-summary-note{margin-top:11px;color:#8f9ba3;font-size:11px}

.rsa-checkline{display:flex;gap:10px;align-items:flex-start;margin-top:16px;font-size:12.5px}
.rsa-checkline input{width:18px;height:18px;min-height:auto;margin-top:2px}
.rsa-provider-note{margin:20px 0 14px;padding:13px 14px;border-radius:8px;background:#f6f7f7;color:#5f6971;font-size:12px}
.rsa-form-footnote{text-align:center;color:var(--wp--preset--color--muted);font-size:11px;margin-top:10px}
.rsa-btn-full{width:100%;justify-content:center}

/* ==================== Responsive ==================== */
@media(max-width:1000px){
  .rsa-hero-grid{grid-template-columns:1fr}
  .rsa-hero-side{justify-self:start;margin-top:36px}
  .rsa-cards-3,.rsa-knowledge-teaser{grid-template-columns:1fr 1fr}
  .rsa-split{grid-template-columns:1fr}
  .rsa-split-image{min-height:360px}
  .rsa-split-copy{padding:54px}
  .rsa-curriculum{grid-template-columns:1fr}
  .rsa-blueprint{min-height:420px}
  .rsa-facts{grid-template-columns:1fr 1fr}
  .rsa-fact:nth-child(2){border-right:0}
  .rsa-cta-wrap{grid-template-columns:1fr}
  .rsa-fw-hero-grid,.rsa-fw-intro-grid{grid-template-columns:1fr}
  .rsa-fw-hero-panel{min-height:220px}
  .rsa-fw-jump-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .rsa-hero h1{font-size:2.6rem!important}
  .rsa-hero-sub{font-size:17px}
  .rsa-hero-facts{display:grid;grid-template-columns:1fr 1fr;gap:18px}
  .rsa-hero-side{width:100%}
  .rsa-cards-3,.rsa-knowledge-teaser,.rsa-live-grid,.rsa-cta-options,.rsa-course-choices{grid-template-columns:1fr}
  .rsa-card{min-height:auto}
  .rsa-split-copy{padding:40px 26px}
  .rsa-split-image{min-height:260px}
  .rsa-checklist{grid-template-columns:1fr}
  .rsa-blueprint{min-height:360px}
  .rsa-live-item{border-left:0;border-top:1px solid var(--wp--preset--color--line);padding:24px 0}
  .rsa-live-item:first-child{border-top:0}
  .rsa-facts{grid-template-columns:1fr}
  .rsa-fact{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
  .rsa-knowledge-head{display:block}
  .rsa-knowledge-head .wp-block-buttons{margin-top:18px}
  .rsa-termine-head{display:block}
  .rsa-slider-controls{margin-top:22px}
  .rsa-termine-track{grid-auto-columns:88%}
  .rsa-faq-groups{grid-template-columns:1fr}
  .rsa-faq-question{font-size:16px}
  .rsa-faq-answer p{padding-right:0}
  .rsa-knowledge-topic{grid-template-columns:1fr}
  .rsa-article-body{padding:24px 18px 27px}
  .rsa-knowledge-content ul{grid-template-columns:1fr}
  .rsa-fw-jump-grid,.rsa-fw-crosslink{grid-template-columns:1fr}
  .rsa-fw-jump-head{display:block}
  .rsa-fw-jump-head small{display:block;margin-top:7px}
  .rsa-form-intro-card{grid-template-columns:1fr}
  .rsa-form-intro-image{order:-1;min-height:160px}
  .rsa-form-card{padding:22px 17px}
  .rsa-form-head{display:block}
  .rsa-required-note{margin-top:8px}
  .rsa-form-grid,.rsa-seminar-details,.rsa-cost-grid,.rsa-choice-grid,.rsa-summary-grid{grid-template-columns:1fr}
  .rsa-field.is-full{grid-column:auto}
  .rsa-participants-head{display:none}
  .rsa-participant-row{grid-template-columns:1fr}
  .rsa-field .mobile-label{display:block}
  .rsa-row-actions{min-height:auto}
}
@media(min-width:1180px){
  .rsa-termine-track{grid-auto-columns:calc((100% - 72px)/5)}
}
@media(max-width:1179px) and (min-width:901px){
  .rsa-termine-track{grid-auto-columns:calc((100% - 36px)/3)}
}
@media(max-width:900px){
  .rsa-termine-track{grid-auto-columns:78%}
}
