/* ==========================================================================
   Frontend – geteiltes Struktur-Stylesheet (alle Marken nutzen dieselbe Datei)

   Das Aussehen einer Marke wird ueber DESIGN-TOKENS gesteuert. Die Defaults
   unten erzeugen das Basis-Erscheinungsbild; pro Instanz werden sie aus
   site.json -> theme in den <head> injiziert (siehe app/partials/header.php).
   Marken-spezifische Sonderfaelle, die kein Token abdeckt, gehoeren in die
   zusaetzliche, pro Instanz vorhandene assets/theme.css.

   --> In dieser Datei moeglichst KEINE festen Farben/Schriften/Radien mehr,
       sondern var(--token, fallback).
   ========================================================================== */
:root {
  /* Farben */
  --brand: #7a332c;
  --accent: #b09058;
  --ink: #20211f;
  --muted: #66665f;
  --background-light: #fffdf8;
  --background-dark: #f7f5ef;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: rgba(32, 33, 31, 0.16);
  --shadow: 0 22px 52px rgba(25, 23, 20, 0.14);

  /* Typografie */
  --font-text: Inter, "Segoe UI", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --heading-weight: 500;

  /* Form & Akzente */
  --radius: 8px;
  --eyebrow-color: #e9d7ab;
  --content-width: 1400px;

  /* Buttons */
  --button-radius: var(--radius);
  --button-weight: 900;
  --button-transform: uppercase;
  --button-tracking: 0.08em;

  /* Navigation */
  --nav-weight: 800;
  --nav-transform: uppercase;
  --nav-tracking: 0.08em;

  /* Flaechen */
  --header-bg: rgba(247, 245, 239, 0.96);
  --footer-bg: var(--ink);
  --footer-fg: rgba(255, 253, 248, 0.72);

  font-family: var(--font-text);
}

* { box-sizing: border-box; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: var(--page-bg, #ffffff);
  font-family: var(--font-text);
}
body.page-background-image {
  background-color: var(--page-bg, #ffffff);
  background-image: var(--page-bg-image, none);
  background-repeat: var(--page-bg-repeat, no-repeat);
  background-position: var(--page-bg-position, center center);
  background-size: var(--page-bg-size, cover);
  background-attachment: var(--page-bg-attachment, scroll);
}
body.page-background-pattern {
  background-color: var(--page-bg, #ffffff);
  background-attachment: fixed;
}
body.page-background-pattern-self-triangles {
  background-image:
    linear-gradient(135deg, rgb(255 255 255 / var(--page-pattern-opacity, 0.10)) 25%, transparent 25%),
    linear-gradient(315deg, rgb(0 0 0 / var(--page-pattern-opacity, 0.10)) 25%, transparent 25%);
  background-position: 0 0, calc(var(--page-pattern-scale, 120px) / 2) 0;
  background-size: var(--page-pattern-scale, 120px) var(--page-pattern-scale, 120px);
}

body.page-background-pattern-triangles-green,
body.page-background-pattern-triangles-yellow,
body.page-background-pattern-triangles-blue {
  position: relative;
  isolation: isolate;
  background-color: var(--page-bg);
  background-image: none;
  --self-page-diamond-size: 1200px;
  --self-header-pattern-offset: var(--self-header-height, 210px);
}

body.page-background-pattern-triangles-green::before,
body.page-background-pattern-triangles-green::after,
body.page-background-pattern-triangles-yellow::before,
body.page-background-pattern-triangles-yellow::after,
body.page-background-pattern-triangles-blue::before,
body.page-background-pattern-triangles-blue::after {
  position: fixed;
  left: 50%;
  z-index: -1;
  width: var(--self-page-diamond-size);
  aspect-ratio: 2 / 1;
  content: "";
  background: var(--triangle-inner);
  pointer-events: none;
  transform: translateX(-50%);
}

body.page-background-pattern-triangles-green::before,
body.page-background-pattern-triangles-yellow::before,
body.page-background-pattern-triangles-blue::before {
  top: var(--self-header-pattern-offset);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

body.page-background-pattern-triangles-green::after,
body.page-background-pattern-triangles-yellow::after,
body.page-background-pattern-triangles-blue::after {
  top: calc(var(--self-header-pattern-offset) + (var(--self-page-diamond-size) / 2));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

body.page-background-pattern-triangles-green {
  --triangle-background: var(--page-bg, #adcc61);
  --triangle-inner: #87af54;
}

body.page-background-pattern-triangles-yellow {
  --triangle-background: var(--page-bg, #f9dc6e);
  --triangle-inner: #eec746;
}

body.page-background-pattern-triangles-blue {
  --triangle-background: var(--page-bg, #a3c7d1);
  --triangle-inner: #19929d;
}

body.page-background-pattern-wide-curve-yellow {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  background-color: var(--page-curve-color, #dfdb00);
  background-image: none;
  background-attachment: scroll;
}

body.page-background-pattern-wide-curve-yellow::before,
body.page-background-pattern-wide-curve-yellow::after {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  content: "";
  pointer-events: none;
  background: #ffffff;
}

body.page-background-pattern-wide-curve-yellow::before {
  top: 0;
  height: var(--page-pattern-offset-top, 0px);
}

body.page-background-pattern-wide-curve-yellow::after {
  top: var(--page-pattern-offset-top, 0px);
  height: clamp(380px, 52vw, 1150px);
  clip-path: ellipse(66% 100% at 64% 0%);
}

body.page-background-pattern-diagonal-lines {
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgb(255 255 255 / var(--page-pattern-opacity, 0.10)) 18px 20px);
  background-size: var(--page-pattern-scale, 120px) var(--page-pattern-scale, 120px);
}
body.page-background-pattern-dots {
  background-image: radial-gradient(circle, rgb(255 255 255 / var(--page-pattern-opacity, 0.10)) 0 2px, transparent 2.5px);
  background-size: calc(var(--page-pattern-scale, 120px) / 4) calc(var(--page-pattern-scale, 120px) / 4);
}
@media (max-width: 760px) {
  body.page-background-image {
    background-image: var(--page-bg-image-mobile, var(--page-bg-image, none));
    background-position: var(--page-bg-position-mobile, var(--page-bg-position, center center));
  }
}
body.has-open-lightbox { overflow: hidden; }
main {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.not-found-page {
  min-height: min(780px, calc(100vh - 120px));
  min-height: min(780px, calc(100dvh - 120px));
  color: var(--brand);
  background: var(--background-light, #f6f6f2);
}

.not-found {
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(24px, 2vw, 32px) 24px;
}

.not-found-inner {
  width: min(760px, 100%);
  text-align: center;
}

.not-found-visual {
  position: relative;
  width: min(530px, 92vw);
  margin: 0 auto clamp(20px, 3vw, 34px);
}

.not-found-code {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(104px, 17vw, 180px);
  font-weight: var(--heading-weight, 700);
  line-height: .72;
  letter-spacing: -.07em;
  color: currentColor;
  opacity: .14;
}

.not-found-turtle {
  position: relative;
  z-index: 1;
  display: block;
  width: min(450px, 100%);
  height: auto;
  margin: clamp(-42px, -3vw, -26px) auto 0;
  overflow: visible;
  color: currentColor;
  transform: translateX(2%);
}

.not-found-shell,
.not-found-head {
  fill: color-mix(in srgb, currentColor 7%, transparent);
  stroke-width: 9;
}

.not-found-turtle path:not(.not-found-shell):not(.not-found-head),
.not-found-turtle circle {
  stroke-width: 8;
}

.not-found-glass { stroke-width: 12; }
.not-found-question { transform: rotate(10deg); transform-origin: 520px 70px; }

.not-found-copy h1 {
  max-width: 720px;
  margin: 0 auto 14px;
  color: currentColor;
  font-size: clamp(30px, 3.6vw, 46px);
}

.not-found-copy p,
.not-found-text {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.not-found-text > :first-child { margin-top: 0; }
.not-found-text > :last-child { margin-bottom: 0; }

.not-found-button {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.not-found-button:hover,
.not-found-button:focus-visible {
  color: var(--brand);
  background: transparent;
}

@supports not (color: color-mix(in srgb, black 10%, transparent)) {
  .not-found-shell,
  .not-found-head { fill: transparent; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cms-anchor {
  height: 0;
  scroll-margin-top: 140px;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  padding: var(--site-header-padding-y, 22px) 0;
  background: var(--header-bg);
  transition: padding 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.site-header-inner {
  width: min(
    var(--content-width),
    calc(100% - var(--site-header-padding-x, 58px) - var(--site-header-padding-x, 58px))
  );
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header-inner.layout-width-full {
  width: 100%;
  padding-right: var(--site-header-padding-x, 58px);
  padding-left: var(--site-header-padding-x, 58px);
}

.site-header.is-scrolled {
  padding-top: var(--site-header-padding-y, 22px);
  padding-bottom: var(--site-header-padding-y, 22px);
  background: var(--header-bg);
  box-shadow: 0 10px 28px rgba(25, 23, 20, 0.08);
}
.site-header.has-bottom-line { border-bottom: 1px solid var(--line); }
.site-header.has-bottom-shadow { box-shadow: 0 7px 18px rgba(25, 23, 20, 0.1); }
.brand { display: inline-flex; align-items: center; min-width: 112px; font-family: var(--font-heading); font-size: 34px; }
.brand img {
  width: var(--site-logo-width, 156px);
  max-width: 42vw;
  height: auto;
  transition: width 0.18s ease;
}
.site-header.is-scrolled .brand img {
  width: var(--site-logo-width, 156px);
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 36px); font-size: 13px; font-weight: var(--nav-weight); letter-spacing: var(--nav-tracking); text-transform: var(--nav-transform); }
.main-nav a { min-height: 38px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; }
.main-nav a.active { border-color: var(--brand); }
.main-nav a.highlight { padding: 0 15px; border: 1px solid rgba(32, 33, 31, 0.28); border-radius: var(--radius); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.menu-toggle span:not(.visually-hidden) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.section > *, .section-head, .dealer-layout {
  width: min(var(--content-width), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.header-section { padding-top: 0; }
.section.header-media-full { padding-top: 0; padding-left: 0; padding-right: 0; }
.header-media-full > * { width: 100%; }
.header-media-content > * { width: min(var(--content-width), calc(100% - 36px)); }
.section-grid { display: grid; grid-template-columns: var(--cms-grid, minmax(0, 1fr)); grid-template-rows: var(--cms-grid-rows, none); min-height: var(--cms-grid-min-height, 0); gap: 18px; }
.section-cell { overflow: hidden; border: 1px solid var(--line); border-radius: 0; background: var(--white); }
.section-cell > img { width: 100%; height: 320px; object-fit: cover; }
.section-cell > div:not(.header-media):not(.header-copy) { padding: clamp(20px, 4vw, 42px); }
.header-grid { align-items: stretch; }
.header-cell { min-height: 0; display: grid; grid-template-rows: auto auto; align-content: end; color: var(--ink); border: 0; border-radius: 0; }
.header-media { position: relative; min-height: 0; overflow: hidden; background: var(--paper); }
.header-section.section-bg-page .header-cell,
.header-section.section-bg-page .header-media { background: transparent; }
.section-cell > .header-media { padding: 0; }
.header-media picture { display: block; width: 100%; }
.header-media img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center center; }
.header-media[style*="--image-height-mode: fixed"] { height: var(--image-height-desktop); }
.header-media[style*="--image-height-mode: fixed"] picture { height: 100%; }
.header-media[style*="--image-height-mode: fixed"] img { width: 100%; height: 100%; object-fit: cover; }
.header-image-fixed .header-media[style*="--image-height-mode: fixed"] img { object-fit: contain; }
.header-image-fixed .header-media { display: grid; place-items: center; }
.header-image-fixed .header-media img { width: 100%; max-width: 100%; object-fit: contain; }
.header-media-full .header-grid { gap: 0; }
.header-media-full .header-grid { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }
.header-media-full .header-media { min-height: 0; }
.header-media-full .header-media img { width: 100%; height: auto; }
.header-media-full.header-image-fixed .header-media img { width: 100%; max-width: 100%; }
.header-media-content:not(.header-text-overlay) .header-cell { min-height: 0; grid-template-rows: auto auto; }
.header-text-overlay .header-cell { position: relative; grid-template-rows: 1fr; overflow: hidden; }
.header-media-full.header-text-overlay .header-cell { max-height: none; }
.header-text-overlay .header-media { grid-row: 1; }
.header-media-full.header-text-overlay .header-media { min-height: 0; }
.header-media-content.header-text-overlay .header-cell { min-height: 0; max-height: none; }
.header-media-content.header-text-overlay .header-media { min-height: 0; }
.header-media-content.header-text-overlay .header-media img { height: auto; }
/* Keep a real positioning area in fixed-height mode. Variant rules above use
   the image's natural height and would otherwise make vertical object-position
   (top / center / bottom) ineffective. */
.header-section .header-media[style*="--image-height-mode: fixed"] img { height: 100%; object-fit: cover; }
.header-section.header-image-fixed .header-media[style*="--image-height-mode: fixed"] img { object-fit: contain; }
.header-section.header-image-height .header-media[style*="--image-height-mode: fixed"] {
  display: flex;
  justify-content: center;
}
.header-section.header-image-height.header-image-position-left .header-media[style*="--image-height-mode: fixed"] { justify-content: flex-start; }
.header-section.header-image-height.header-image-position-right .header-media[style*="--image-height-mode: fixed"] { justify-content: flex-end; }
.header-section.header-image-height .header-media[style*="--image-height-mode: fixed"] picture {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: inherit;
}
.header-section.header-image-height .header-media[style*="--image-height-mode: fixed"] img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}
.header-section.header-image-height .header-media.is-slider[style*="--image-height-mode: fixed"] img:not(:first-child) {
  right: auto;
  left: 50%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
}
.header-section.header-image-height.header-image-position-left .header-media.is-slider[style*="--image-height-mode: fixed"] img:not(:first-child) {
  right: auto;
  left: 0;
  transform: none;
}
.header-section.header-image-height.header-image-position-right .header-media.is-slider[style*="--image-height-mode: fixed"] img:not(:first-child) {
  right: 0;
  left: auto;
  transform: none;
}
.header-text-overlay .header-copy { position: absolute; left: 50%; right: auto; bottom: var(--header-text-box-bottom, 0); z-index: 2; width: min(var(--content-width), calc(100% - 36px)); max-width: 100%; color: var(--white); transform: translateX(-50%); background: transparent; }
.header-text-overlay.header-text-box-position-left .header-copy {
  left: max(18px, calc((100% - var(--content-width)) / 2));
  right: auto;
  transform: none;
}
.header-text-overlay.header-text-box-position-right .header-copy {
  right: max(18px, calc((100% - var(--content-width)) / 2));
  left: auto;
  transform: none;
}
.header-text-overlay.header-text-box-custom .header-copy {
  padding: clamp(18px, 3vw, 34px);
  background: var(--header-text-box-color, var(--white));
  background: color-mix(in srgb, var(--header-text-box-color, var(--white)) var(--header-text-box-opacity, 50%), transparent);
}
.header-text-overlay.header-text-box-white .header-copy { padding: clamp(18px, 3vw, 34px); background: rgba(255, 255, 255, 0.5); }
.header-text-overlay.header-text-box-gray .header-copy { padding: clamp(18px, 3vw, 34px); background: rgba(32, 33, 31, 0.5); }
.header-text-overlay.header-text-box-brand .header-copy { padding: clamp(18px, 3vw, 34px); background: rgba(122, 51, 44, 0.5); }
.header-text-overlay.header-text-box-gray .header-copy h1,
.header-text-overlay.header-text-box-brand .header-copy h1 { font-size: clamp(36px, 5vw, 64px); }
.header-text-overlay.header-text-box-gray .header-copy h2,
.header-text-overlay.header-text-box-brand .header-copy h2 { font-size: clamp(28px, 3.4vw, 46px); }
.header-text-overlay .header-copy h1,
.header-text-overlay .header-copy h2,
.header-text-overlay .header-copy h3,
.header-text-overlay .header-copy h4,
.header-text-overlay .header-copy h5,
.header-text-overlay .header-copy .lead,
.header-text-overlay .header-copy p { color: var(--white); }
.header-text-overlay.header-text-box-white .header-copy,
.header-text-overlay.header-text-box-white .header-copy h1,
.header-text-overlay.header-text-box-white .header-copy h2,
.header-text-overlay.header-text-box-white .header-copy h3,
.header-text-overlay.header-text-box-white .header-copy h4,
.header-text-overlay.header-text-box-white .header-copy h5,
.header-text-overlay.header-text-box-white .header-copy .lead,
.header-text-overlay.header-text-box-white .header-copy p { color: var(--ink); }
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy h1,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy h2,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy h3,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy h4,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy h5,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy .lead,
.header-text-overlay.header-text-box-custom.header-text-box-tone-light .header-copy p { color: var(--ink); }
.header-media.is-slider img:not(:first-child) { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; animation: headerFade 18s infinite; }
.header-media.is-slider img:nth-child(2) { animation-delay: 6s; }
.header-media.is-slider img:nth-child(3) { animation-delay: 12s; }
.header-media.is-slider img:nth-child(n+4) { display: none; }
.header-copy { display: grid; justify-items: start; align-content: end; padding: clamp(20px, 4vw, 42px); }
/* Header-Text immer im Satzspiegel (zentrierte Inhaltsbreite), in beiden
   Varianten. "Text im Bild" (.header-text-overlay) ist bereits zentriert;
   hier wird "Text darunter" behandelt – auch bei vollbreitem Bild. */
.header-media-content:not(.header-text-overlay) .header-copy { width: 100%; padding-inline: 0; }
.header-media-full:not(.header-text-overlay) .header-copy { width: min(var(--content-width), calc(100% - 2 * clamp(18px, 4vw, 58px) - 36px)); margin-inline: auto; padding-inline: 0; }
.header-media-full.header-text-overlay .header-copy { width: min(var(--content-width), calc(100% - 2 * clamp(18px, 4vw, 58px) - 36px)); }
.header-text-center .header-copy { justify-items: center; }
.header-text-right .header-copy { justify-items: end; }
.header-cell h1 { color: var(--ink); }
.header-cell p { color: var(--muted); }
.eyebrow, .section-kicker { display: inline-block; margin-bottom: 16px; color: var(--eyebrow-color); font-family: var(--font-kicker, var(--font-heading)); font-size: var(--font-size-kicker, 12px); font-weight: var(--font-weight-kicker, 700); line-height: var(--font-line-height-kicker, 120%); letter-spacing: var(--font-letter-spacing-kicker, 0); }
.section-kicker { color: var(--eyebrow-color, var(--brand)); }
.section-kicker + h1 { color: var(--font-color-h1, var(--ink)); }
.section-kicker + h2 { color: var(--font-color-h2, var(--ink)); }
.section-kicker + h3 { color: var(--font-color-h3, var(--ink)); }
.section-kicker + h4 { color: var(--font-color-h4, var(--ink)); }
.section-kicker + h5 { color: var(--font-color-h5, var(--ink)); }
.section-kicker + h6 { color: var(--font-color-h6, var(--ink)); }
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: var(--heading-weight); letter-spacing: 0; }
h1 { width: min(800px, 100%); margin-bottom: 24px; font-size: clamp(44px, 7vw, 88px); line-height: 0.98; }
h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 56px); line-height: 1.06; }
h3 { margin-bottom: 10px; font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 22px; }
h6 { font-size: 20px; }
.lead { max-width: 720px; color: rgba(255, 253, 248, 0.9); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.lead { color: var(--muted); }
.section:not(.header-section) h1,
.section:not(.header-section) h2,
.section:not(.header-section) h3,
.section:not(.header-section) h4,
.section:not(.header-section) h5,
.section:not(.header-section) h6,
.section:not(.header-section) .lead {
  width: 100%;
  max-width: none;
}

@keyframes headerFade {
  0%, 28% { opacity: 0; }
  33%, 61% { opacity: 1; }
  66%, 100% { opacity: 0; }
}

.casanova-header-section { color: var(--casanova-text, var(--ink)); }
.casanova-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  min-height: var(--casanova-header-height, 430px);
}
.casanova-header-inner.no-image { grid-template-columns: minmax(0, 1fr); }
.casanova-header-copy { min-width: 0; padding-block: clamp(28px, 5vw, 64px); }
.casanova-header-heading { width: auto; margin: 0 0 clamp(30px, 4vw, 50px); color: var(--casanova-text, var(--ink)); line-height: 1; }
.casanova-header-title {
  display: block;
  margin-bottom: 4px;
  color: var(--casanova-title, var(--casanova-text, var(--ink)));
  font-family: var(--font-h2, var(--font-heading));
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: var(--font-weight-h2, 700);
  line-height: var(--casanova-heading-line-height, 100%);
}
.casanova-header-accent {
  display: flex;
  gap: clamp(8px, 1vw, 16px);
  align-items: center;
  color: var(--casanova-accent, var(--brand));
}
.casanova-header-accent strong {
  color: var(--casanova-accent, var(--brand));
  font-family: var(--font-h2, var(--font-heading));
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: var(--casanova-heading-line-height, 100%);
  letter-spacing: var(--font-letter-spacing-h2, 0);
}
.casanova-header-hash {
  flex: none;
  color: var(--casanova-hash, var(--casanova-accent, var(--brand)));
  font-family: var(--casanova-hash-font, var(--font-additional-text, var(--font-heading))) !important;
  font-size: var(--casanova-hash-size, 120px);
  font-weight: 400;
  line-height: 0.65;
}
.casanova-header-body {
  max-width: 620px;
  color: var(--casanova-text, var(--ink));
  font-family: var(--font-body, var(--font-text));
  font-size: var(--font-size-body, 20px);
  line-height: var(--font-line-height-body, 155%);
}
.casanova-header-body > :last-child { margin-bottom: 0; }
.casanova-header-visual {
  align-self: center;
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.casanova-header-visual img { width: auto; max-width: none; height: var(--casanova-header-height, 430px); object-fit: contain; object-position: center bottom; }

@media (max-width: 860px) {
  .casanova-header-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    min-height: 0;
  }
  .casanova-header-copy { padding-bottom: 10px; }
  .casanova-header-title { font-size: clamp(27px, 8vw, 40px); }
  .casanova-header-heading { margin-bottom: 28px; }
  .casanova-header-accent strong { font-size: clamp(31px, 9vw, 48px); }
  .casanova-header-hash { font-size: var(--casanova-hash-size-mobile, 88px); }
  .casanova-header-visual { height: auto; }
  .casanova-header-visual img { max-width: 100%; height: var(--casanova-header-height-mobile, 320px); }
}

.header-directory-slider-section { padding-top: 0; }
.header-directory-slider { position: relative; overflow: hidden; background: var(--paper); }
.header-directory-slider-media { position: relative; min-height: 0; overflow: hidden; }
.header-directory-slide { position: absolute; inset: 0; z-index: 0; margin: 0; opacity: 0; pointer-events: none; transition: opacity 420ms ease; }
.header-directory-slide:first-child { position: relative; }
.header-directory-slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.header-directory-slide img { display: block; width: 100%; height: 100%; object-fit: var(--slider-image-fit, cover); object-position: var(--slider-image-position, center center); }
.header-directory-slide:first-child img { height: auto; }
.header-directory-slider[style*="--image-height-mode: fixed"] .header-directory-slider-media { height: var(--image-height-desktop); }
.header-directory-slider[style*="--image-height-mode: fixed"] .header-directory-slide:first-child { position: absolute; }
.header-directory-slider[style*="--image-height-mode: fixed"] .header-directory-slide:first-child img { height: 100%; }
.header-directory-slider-copy { position: absolute; z-index: 2; width: min(430px, calc(100% - 80px)); color: var(--white); background: rgba(31, 32, 29, 0.68); backdrop-filter: blur(2px); }
.header-directory-slider-copy-link { position: relative; display: block; min-height: 100%; padding: clamp(20px, 3vw, 34px); color: inherit; }
.header-directory-slider-copy.is-linked .header-directory-slider-copy-link { padding-right: clamp(54px, 5vw, 72px); cursor: pointer; }
.header-directory-slider-copy strong { display: block; color: inherit; font-family: var(--font-heading); font-size: clamp(26px, 3vw, 46px); line-height: 1.05; }
.header-directory-slider-copy strong::after { content: ""; display: block; width: 100%; height: 4px; margin: 16px 0 18px; background: var(--brand); }
.header-directory-slider-copy p:last-child { margin-bottom: 0; }
.header-directory-slider-copy-arrow {
  position: absolute;
  right: clamp(18px, 2.5vw, 28px);
  bottom: clamp(18px, 2.5vw, 28px);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--brand);
}
.header-directory-slider-copy.is-linked:hover { background: rgba(31, 32, 29, 0.78); }
.header-directory-slider-copy-link:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.header-directory-slider.content-left-top .header-directory-slider-copy { top: clamp(32px, 5vw, 72px); left: clamp(32px, 5vw, 72px); }
.header-directory-slider.content-right-top .header-directory-slider-copy { top: clamp(32px, 5vw, 72px); right: clamp(32px, 5vw, 72px); }
.header-directory-slider.content-left-bottom .header-directory-slider-copy { bottom: clamp(72px, 8vw, 110px); left: clamp(32px, 5vw, 72px); }
.header-directory-slider.content-right-bottom .header-directory-slider-copy { right: clamp(32px, 5vw, 72px); bottom: clamp(72px, 8vw, 110px); }
.header-directory-slider.navigation-names.content-left-bottom .header-directory-slider-copy,
.header-directory-slider.navigation-names.content-right-bottom .header-directory-slider-copy { bottom: clamp(92px, 10vw, 130px); }
.header-directory-slider-navigation { position: absolute; z-index: 4; }
.header-directory-slider.navigation-dots .header-directory-slider-navigation { left: 50%; bottom: 22px; display: flex; gap: 10px; transform: translateX(-50%); }
.header-directory-slider.navigation-dots .header-directory-slider-control { width: 13px; height: 13px; padding: 0; border: 2px solid var(--white); border-radius: 50%; background: rgba(31, 32, 29, 0.42); box-shadow: 0 1px 5px rgba(0, 0, 0, 0.24); cursor: pointer; }
.header-directory-slider.navigation-dots .header-directory-slider-control.is-active { border-color: var(--brand); background: var(--brand); }
.header-directory-slider.navigation-names .header-directory-slider-navigation { right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(var(--slider-count), minmax(0, 1fr)); }
.header-directory-slider.navigation-names .header-directory-slider-control { min-width: 0; min-height: 58px; padding: 12px 16px; overflow: hidden; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.16); color: var(--white); background: rgba(31, 32, 29, 0.76); cursor: pointer; font: inherit; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.header-directory-slider.navigation-names .header-directory-slider-control:last-child { border-right: 0; }
.header-directory-slider.navigation-names .header-directory-slider-control.is-active { background: var(--brand); }
.header-directory-slider.navigation-thumbnails { overflow: visible; }
.header-directory-slider.navigation-thumbnails .header-directory-slider-navigation {
  position: static;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.header-directory-slider.navigation-thumbnails .header-directory-slider-control {
  flex: 0 0 calc((100% - 50px) / 6);
  width: calc((100% - 50px) / 6);
  aspect-ratio: 16 / 9;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
  opacity: 0.76;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.header-directory-slider.navigation-thumbnails .header-directory-slider-control img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-directory-slider.navigation-thumbnails .header-directory-slider-control:hover,
.header-directory-slider.navigation-thumbnails .header-directory-slider-control.is-active {
  border-color: var(--brand);
  opacity: 1;
  transform: translateY(-2px);
}
.header-directory-slider-control:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.header-directory-slider-empty { display: grid; gap: 8px; place-items: center; min-height: 260px; padding: 40px; text-align: center; background: var(--paper); }

.self-header-section {
  z-index: 30;
  width: 100%;
  max-width: none;
  height: var(--self-header-height, 210px);
  min-height: var(--self-header-height, 210px);
  padding: 0;
  overflow: visible;
  isolation: isolate;
}
.section.self-header-section {
  padding-inline: 0;
  background-color: var(--triangle-background, var(--page-bg, #ffffff));
}
.section.self-header-section > .self-header-shell {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.self-header-section.is-sticky {
  position: sticky;
  top: 0;
}
.self-header-shell {
  position: relative;
  height: 100%;
  min-height: var(--self-header-height, 210px);
  background-color: var(--triangle-background, var(--page-bg, #ffffff));
}
.self-header-linkbar {
  position: relative;
  z-index: 3;
  min-height: var(--self-header-bar-height, 30px);
  display: grid;
  grid-template-columns: repeat(var(--self-header-link-count, 3), minmax(0, 1fr));
  align-items: center;
  color: #c7c7c7;
  background: #343434;
  font-family: var(--font-header, var(--font-heading));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.self-header-linkbar a {
  min-width: 0;
  padding: 5px clamp(10px, 3vw, 36px);
  color: inherit;
  background: transparent;
  transition: color 160ms ease;
}
.self-header-linkbar a:hover,
.self-header-linkbar a:focus-visible,
.self-header-linkbar a.is-active {
  color: #ffffff;
  background: transparent;
}
.self-header-linkbar a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -3px;
}
.self-header-triangle {
  position: absolute;
  top: var(--self-header-bar-height, 30px);
  left: 50%;
  z-index: 2;
  width: min(calc(var(--self-header-height, 210px) - var(--self-header-bar-height, 30px) + var(--self-header-height, 210px) - var(--self-header-bar-height, 30px)), calc(100vw - 36px));
  height: auto;
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: start center;
  padding: clamp(16px, 2vw, 28px) clamp(58px, 6vw, 92px) clamp(54px, 7vw, 82px);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #ffffff;
  transform: translateX(-50%);
}
.self-header-logo {
  width: 100%;
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #111111;
}
.self-header-logo img {
  width: 100%;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}
.self-header-logo span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

@media (max-width: 760px) {
  body.page-background-pattern-triangles-green,
  body.page-background-pattern-triangles-yellow,
  body.page-background-pattern-triangles-blue {
    --self-header-pattern-offset: var(--self-header-height-mobile, 150px);
  }
  .self-header-section { height: var(--self-header-height-mobile, 150px); min-height: var(--self-header-height-mobile, 150px); }
  .self-header-shell { height: 100%; min-height: var(--self-header-height-mobile, 150px); }
  .self-header-linkbar {
    min-height: var(--self-header-bar-height-mobile, 34px);
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .self-header-linkbar a { padding: 8px 6px; }
  .self-header-triangle {
    top: var(--self-header-bar-height-mobile, 34px);
    width: min(calc(var(--self-header-height-mobile, 150px) - var(--self-header-bar-height-mobile, 34px) + var(--self-header-height-mobile, 150px) - var(--self-header-bar-height-mobile, 34px)), calc(100vw - 24px));
    height: auto;
    padding: 12px 52px 42px;
  }
  .self-header-logo { min-height: 38px; }
  .self-header-logo img { max-width: 120px; max-height: 46px; }
}

.section.self-category-stage-section {
  position: relative;
  z-index: auto;
  padding-inline: 0;
  overflow: visible;
  overflow-x: clip;
}
.section.self-category-stage-section.overlaps-self-header {
  margin-top: calc(var(--section-margin-top, 0px) - var(--self-header-height, 210px));
}

.section.parallax-stage-section {
  padding-inline: 0;
  overflow: visible;
}

.parallax-stage-section.media-width-full > .parallax-stage {
  width: 100%;
  max-width: none;
}
.parallax-stage-section.media-width-content > .parallax-stage {
  width: min(var(--content-width), calc(100% - 36px));
}
.parallax-stage {
  position: relative;
  height: var(--parallax-stage-height, 722px);
  margin-bottom: clamp(58px, 6vw, 86px);
  overflow: visible;
  isolation: isolate;
  background: var(--background-light, #ececec);
}
.parallax-stage-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.parallax-stage-media {
  position: absolute;
  z-index: 0;
  inset: var(--parallax-media-inset, -22%) 0;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  will-change: transform;
}
.parallax-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-stage-copy,
.parallax-stage-thumbnails {
  position: absolute;
  z-index: 2;
  width: min(420px, calc(50% - 72px));
}
.parallax-stage-copy {
  top: 66%;
  width: min(540px, calc(50% - 72px));
  max-width: 540px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background: #fff;
  transform: translateY(-50%);
}
.parallax-stage-copy.position-left,
.parallax-stage-thumbnails.position-left {
  left: max(24px, calc((100% - var(--content-width)) / 2));
}
.parallax-stage-copy.position-right,
.parallax-stage-thumbnails.position-right {
  right: max(24px, calc((100% - var(--content-width)) / 2));
}
.parallax-stage-copy.font-body,
.parallax-stage-copy.font-body :where(h1, h2, h3, h4, h5, p, li, a, span) { font-family: var(--font-body, var(--font-text)); }
.parallax-stage-copy.font-additional,
.parallax-stage-copy.font-additional :where(h1, h2, h3, h4, h5, p, li, a, span) { font-family: var(--font-additional-text, var(--font-body, var(--font-text))); }
.parallax-stage-copy.font-custom,
.parallax-stage-copy.font-custom :where(h1, h2, h3, h4, h5, p, li, a, span) { font-family: var(--parallax-text-font), var(--font-body, var(--font-text)); }
.parallax-stage-copy .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-kicker, var(--font-heading));
  font-size: var(--font-size-kicker, 12px);
  font-weight: var(--font-weight-kicker, 700);
  line-height: var(--font-line-height-kicker, 120%);
}
.parallax-stage-copy h1,
.parallax-stage-copy h2,
.parallax-stage-copy h3,
.parallax-stage-copy h4,
.parallax-stage-copy h5 { margin: 0 0 14px; }
.parallax-stage-subline {
  margin: -4px 0 14px;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1.35;
}
.parallax-stage-copy-body > :first-child { margin-top: 0; }
.parallax-stage-copy-body > :last-child { margin-bottom: 0; }
.parallax-stage-thumbnails {
  top: 100%;
  bottom: auto;
  width: min(588px, calc(50% - 72px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  transform: translateY(-50%);
}
.parallax-stage-thumbnails figure {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1);
  transition: transform 480ms cubic-bezier(.2, .7, .2, 1);
}
.parallax-stage-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 480ms cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .parallax-stage-thumbnails figure:hover {
    z-index: 4;
    transform: scale(1.7);
  }
  .parallax-stage-thumbnails figure:hover img { transform: scale(1.08); }
}

@media (max-width: 860px) {
  .parallax-stage {
    height: var(--parallax-stage-height-mobile, 560px);
  }
  .parallax-stage-copy,
  .parallax-stage-thumbnails {
    width: min(440px, calc(100% - 36px));
    gap: clamp(10px, 2.5vw, 20px);
  }
  .parallax-stage-copy {
    top: 22px;
    padding: 22px;
    transform: none;
  }
  .parallax-stage-copy.position-left,
  .parallax-stage-thumbnails.position-left { left: 18px; right: auto; }
  .parallax-stage-copy.position-right,
  .parallax-stage-thumbnails.position-right { right: 18px; left: auto; }
  .parallax-stage-thumbnails { top: 100%; bottom: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-stage-media { transform: none; will-change: auto; }
  .parallax-stage-thumbnails figure { transition: none; }
  .parallax-stage-thumbnails img { transition: none; }
}
.self-category-stage {
  position: relative;
  min-height: var(--self-category-height, 760px);
  overflow: visible;
}
.self-category-headline-wrap {
  position: relative;
  z-index: 4;
  width: min(760px, 56vw);
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.4vw, 24px);
  padding: clamp(38px, 5vw, 76px) 0 0;
  pointer-events: none;
}
.self-category-stage-section.has-sticky-title .self-category-headline-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
}
.self-category-stage-section.has-sticky-title.is-program-list-active .self-category-headline-wrap {
  visibility: hidden;
  opacity: 0;
}
.self-category-headline {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}
.self-category-headline-graphic {
  width: clamp(18px, 2.2vw, 34px);
  height: auto;
  flex: 0 0 auto;
  margin-top: 0.08em;
  object-fit: contain;
  object-position: left top;
}
.self-category-cutout {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: min(78vw, 1180px);
  height: 100%;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.self-category-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.self-category-copy {
  position: absolute;
  z-index: 5;
  width: min(310px, 26vw);
  color: #ffffff;
}
.self-category-copy.position-left-top { top: 22%; left: 0; }
.self-category-copy.position-left-bottom { bottom: 19%; left: 0; }
.self-category-copy.position-right-top { top: 17%; right: 0; }
.self-category-copy.position-right-bottom { right: 0; bottom: 19%; }
.self-category-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}
.self-category-copy-rule {
  width: 100%;
  height: 1px;
  display: block;
  margin: 10px 0 12px;
  background: currentColor;
}
.self-category-copy-body,
.self-category-copy-body p,
.self-category-copy-body li {
  color: inherit;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}
.self-category-copy-body p:last-child,
.self-category-copy-body ul:last-child,
.self-category-copy-body ol:last-child { margin-bottom: 0; }
.self-category-copy-body ul,
.self-category-copy-body ol {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.self-category-copy-body li {
  position: relative;
  padding-left: 1.15em;
}
.self-category-copy-body li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 0.55em;
  height: 0.95em;
  content: "";
  background-image: var(--self-category-bullet-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.self-category-scroll-link {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 5vw, 58px);
  z-index: 6;
  width: min(210px, 34vw);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: var(--font-button, var(--font-body, var(--font-text)));
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.self-category-scroll-link i {
  width: 26px;
  height: 26px;
  display: block;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
}
.self-category-scroll-link:hover i,
.self-category-scroll-link:focus-visible i { transform: translateY(4px) rotate(45deg); }
.self-category-scroll-link:focus-visible { outline: 2px solid currentColor; outline-offset: 8px; }

@media (max-width: 760px) {
  .section.self-category-stage-section.overlaps-self-header {
    margin-top: calc(var(--section-margin-top, 0px) - var(--self-header-height-mobile, 150px));
  }
  .self-category-stage { min-height: var(--self-category-height-mobile, 640px); }
  .self-category-headline-wrap {
    width: calc(100% - 36px);
    padding: 42px 0 0;
  }
  .self-category-stage-section.has-sticky-title .self-category-headline-wrap { top: 0; }
  .self-category-headline-graphic { width: clamp(16px, 5vw, 24px); }
  .self-category-cutout { width: 116vw; height: 100%; }
  .self-category-copy {
    width: min(250px, calc(100% - 36px));
  }
  .self-category-copy.position-left-top { top: 29%; left: 0; }
  .self-category-copy.position-right-top { top: 29%; right: 0; }
  .self-category-copy.position-left-bottom { bottom: 15%; left: 0; }
  .self-category-copy.position-right-bottom { right: 0; bottom: 15%; }
  .self-category-copy h2 { font-size: 21px; }
  .self-category-copy-body,
  .self-category-copy-body p,
  .self-category-copy-body li { font-size: 14px; }
  .self-category-scroll-link { bottom: 22px; width: 180px; }
}

.section { margin-top: var(--section-margin-top, 0); margin-bottom: var(--section-margin-bottom, 0); padding: var(--section-padding-top, 40px) clamp(18px, 4vw, 58px) var(--section-padding-bottom, 40px); }
.band { background: var(--white); }
.section-bg-paper,
.section-bg-ink,
.section-bg-dark { background: var(--background-dark); }
.section-bg-light { background: var(--background-light); }
.section-bg-white { background: #ffffff; }
.section-bg-page { background: transparent; }
.section-bg-brand { color: var(--white); background: var(--brand); }
.section-bg-accent { background: var(--accent); }
.section-bg-brand h1,
.section-bg-brand h2,
.section-bg-brand h3,
.section-bg-brand h4,
.section-bg-brand h5,
.section-bg-brand .lead,
.section-bg-brand .section-kicker { color: var(--white); }
.text-box-section { padding-top: 0; padding-bottom: 0; }
.text-box-wrap { width: min(var(--content-width), calc(100% - 36px)); margin: 0 auto; }
.text-box-inner { display: grid; justify-items: start; padding: clamp(34px, 5vw, 58px); text-align: left; }
.text-box-is-boxed .text-box-inner { border: 1px solid var(--line); border-radius: 0; background: var(--text-box-bg, var(--white)); }
.text-box-is-plain .text-box-inner { padding-left: 0; padding-right: 0; }
.text-box-align-center .text-box-inner { justify-items: center; text-align: center; }
.text-box-align-right .text-box-inner { justify-items: end; text-align: right; }
.text-box-bg-brand { --text-box-bg: var(--brand); color: var(--white); }
.text-box-bg-accent { --text-box-bg: var(--accent); }
.text-box-bg-ink,
.text-box-bg-paper,
.text-box-bg-dark { --text-box-bg: var(--background-dark); }
.text-box-bg-light { --text-box-bg: var(--background-light); }
.text-box-bg-white { --text-box-bg: var(--white); }
.text-box-bg-brand .section-kicker,
.text-box-bg-brand h1,
.text-box-bg-brand h2,
.text-box-bg-brand h3,
.text-box-bg-brand h4,
.text-box-bg-brand h5,
.text-box-bg-brand .lead { color: var(--white); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: var(--button-radius); cursor: pointer; font-size: 17px; line-height: 1.2; font-weight: var(--button-weight); letter-spacing: var(--button-tracking); text-transform: var(--button-transform); }
.button.primary { color: var(--white); background: var(--brand); }
.button.secondary { border-color: rgba(255, 253, 248, 0.62); color: var(--white); background: transparent; }
.content-card .button.secondary { border-color: var(--line); color: var(--ink); }
.button.text-link,
.content-card .button.text-link,
.content-card-action .button.text-link { min-height: 0; padding: 0; border: 0; border-radius: 0; color: var(--text-link-color, var(--brand)); background: transparent; }
.button.text-link:hover,
.button.text-link:focus-visible { text-decoration: underline; text-underline-offset: 0.18em; }

.content-teaser-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(var(--content-width), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
  align-items: stretch;
}
.content-teaser-inner.is-clickable:focus-within { outline: 3px solid var(--brand); outline-offset: 4px; }
.content-teaser-inner.is-clickable .content-teaser-copy .button::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}
.content-teaser-media { min-width: 0; min-height: 360px; margin: 0; overflow: hidden; }
.content-teaser-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.content-teaser-copy {
  display: flex;
  min-width: 0;
  padding: clamp(34px, 5vw, 76px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--white);
}
.content-teaser-copy h1,
.content-teaser-copy h2,
.content-teaser-copy h3,
.content-teaser-copy h4,
.content-teaser-copy h5 { width: 100%; max-width: none; margin: 0 0 20px; }
.content-teaser-text { width: 100%; margin-bottom: 24px; }
.content-teaser-text > :first-child { margin-top: 0; }
.content-teaser-text > :last-child { margin-bottom: 0; }
.content-teaser-copy .button.secondary { border-color: var(--line); color: var(--ink); }
.content-teaser-inner.without-image .content-teaser-copy { grid-column: 1 / -1; }
.content-teaser-inner.image-right .content-teaser-media { order: 2; }
.content-teaser-inner.image-right .content-teaser-copy { order: 1; }

.card-grid, .gallery-grid { display: grid; grid-template-columns: var(--cms-grid, repeat(var(--cms-layout-total, var(--cms-columns, 1)), minmax(0, 1fr))); grid-template-rows: var(--cms-grid-rows, none); min-height: var(--cms-grid-min-height, 0); gap: 18px; }
.card-grid.has-layout-rows,
.gallery-grid.has-layout-rows { grid-template-columns: minmax(0, 1fr); gap: 0; }
.cms-layout-row { min-width: 0; min-height: 0; display: grid; gap: 18px; }
.card-grid.has-floating-layout,
.gallery-grid.has-floating-layout {
  position: relative;
  display: block;
  min-height: 0;
  height: var(--cms-free-area-height, 600px);
  aspect-ratio: auto;
}
.has-floating-layout > .cms-floating-item {
  position: absolute;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
.has-floating-layout > .cms-floating-item:is(.headline, .kicker, .text-left, .primary, .secondary, .text-link, .line-horizontal, .line-vertical) {
  overflow: visible;
  border: 0;
  background: transparent;
}
.has-floating-layout > .cms-floating-item:is(.headline, .kicker, .text-left, .primary, .secondary, .text-link, .line-horizontal, .line-vertical) > div {
  background: transparent !important;
}
.has-floating-layout > .cms-floating-item:is(.primary, .secondary) > div,
.has-floating-layout > .cms-floating-item:is(.primary, .secondary) .button {
  width: 100%;
}
.has-floating-layout > .cms-floating-item > div {
  padding: 0 !important;
}
.has-floating-layout > .cms-floating-item:is(.line-horizontal, .line-vertical) > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.free-area-line {
  display: block;
  flex: 0 0 auto;
  background: var(--cms-line-color, var(--ink));
}
.free-area-line.line-horizontal { width: 100%; height: var(--cms-line-thickness, 2px); }
.free-area-line.line-vertical { width: var(--cms-line-thickness, 2px); height: 100%; }
.has-floating-layout > .cms-floating-item > figure,
.has-floating-layout > .cms-floating-item > .item-image {
  margin: 0;
}
@media (min-width: 1041px) {
  .has-floating-layout > .cms-floating-item:is(.image, .image-slider) > .item-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto !important;
  }
}
.has-floating-layout > .cms-floating-item h1,
.has-floating-layout > .cms-floating-item h2,
.has-floating-layout > .cms-floating-item h3,
.has-floating-layout > .cms-floating-item h4,
.has-floating-layout > .cms-floating-item h5 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.has-floating-layout > .cms-floating-item.kicker .section-kicker {
  font-size: var(--cms-item-font-size-desktop, var(--font-size-kicker, 12px));
}
.has-floating-layout > .cms-floating-item.text-left .free-area-text-content {
  font-family: var(--font-body, var(--font-text));
  font-size: var(--cms-item-font-size-desktop, var(--font-size-body, 20px));
  font-weight: var(--font-weight-body, 400);
  line-height: var(--font-line-height-body, 155%);
  letter-spacing: var(--font-letter-spacing-body, 0);
}
.gallery-section,
.tiles-section { padding-right: 0; padding-left: 0; }
.gallery-section .gallery-grid { width: min(var(--content-width), calc(100% - 36px)); margin-right: auto; margin-left: auto; }
.suggestion-slider-shell.gallery-slider-shell { --suggestion-visible: var(--gallery-slider-visible-desktop, 3); }
.gallery-section .gallery-slider-shell .gallery-grid {
  display: flex;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.gallery-slider-track { gap: 18px; }
.gallery-slider-card {
  display: flex;
  flex-direction: column;
}
.gallery-slider-card > .gallery-image,
.gallery-slider-card > .gallery-image-card,
.gallery-slider-card > .content-card { width: 100%; }
.section.area-width-media { padding-right: 0; padding-left: 0; }
.section.area-width-media > * { width: 100%; max-width: none; }
.gallery-section .gallery-image { width: 100%; margin: 0; }
.gallery-image-card { min-width: 0; display: flex; flex-direction: column; }
.gallery-image-copy { width: 100%; display: grid; gap: 12px; padding-top: 20px; }
.gallery-image-copy h1,
.gallery-image-copy h2,
.gallery-image-copy h3,
.gallery-image-copy h4,
.gallery-image-copy h5 { width: 100%; max-width: none; margin: 0; }
.gallery-image-copy p:first-child { margin-top: 0; }
.gallery-image-copy p:last-child { margin-bottom: 0; }
.card-grid > :nth-child(odd),
.gallery-grid > :nth-child(odd) { grid-column: span var(--cms-layout-a, 1); }
.card-grid > :nth-child(even),
.gallery-grid > :nth-child(even) { grid-column: span var(--cms-layout-b, 1); }
.content-card, .product-card, .dealer-card, .logo-card { border: 1px solid var(--line); border-radius: 0; overflow: hidden; background: var(--white); }
.content-card { display: flex; flex-direction: column; overflow: hidden; border: 0; border-radius: 0; background: var(--white); clip-path: none; }
.product-card { background: var(--program-card-bg, var(--white)); color: var(--program-card-color, var(--ink)); }
.product-card .product-card-title { margin: 0; color: var(--program-headline-color, var(--brand)); }
.product-card .product-card-title a { color: inherit; }
.product-card p, .product-card div { color: inherit; }
.content-card > img { width: 100%; height: auto; object-fit: cover; }
.item-image { width: 100%; aspect-ratio: var(--item-image-aspect, 4 / 3); margin: 0; overflow: hidden; background: transparent; }
.content-card.image,
.content-card.image-slider { background: transparent; }
.item-image[style*="--item-image-aspect: auto"] { height: var(--item-image-height-desktop); aspect-ratio: auto; }
.item-image img { width: 100%; height: 100%; object-fit: var(--item-image-fit, cover); object-position: var(--item-image-position, center center); }
.content-image-slider { position: relative; }
.content-card > .content-image-slider {
  display: block;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
}
.content-card > .head-text-button {
  display: block;
  min-height: 0;
  padding: 0;
}
.head-text-button { width: 100%; }
.head-text-button-title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--brand);
}
.head-text-button-rule {
  display: block;
  width: 100%;
  height: 2px;
  margin: 14px 0 20px;
  background: var(--brand);
}
.head-text-button-text { width: 100%; }
.head-text-button-text > :first-child { margin-top: 0; }
.head-text-button-text > :last-child { margin-bottom: 0; }
.head-text-button-actions {
  display: grid;
  gap: 18px;
  width: 100%;
  margin-top: 34px;
}
.head-text-button-actions .button {
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
}
.content-image-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 650ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.content-image-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}
.content-image-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--item-image-fit, cover);
  object-position: var(--item-image-position, center center);
}
.content-image-slider-navigation {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.content-image-slider-navigation button { pointer-events: auto; }
.content-image-slider-arrow {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: var(--brand);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.content-image-slider-dots { display: flex; align-items: center; gap: 7px; }
.content-image-slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}
.content-image-slider-dots button.is-active {
  border-color: var(--brand);
  background: var(--brand);
}
.content-image-slider-arrow:focus-visible,
.content-image-slider-dots button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.preview-item-image { width: 100%; aspect-ratio: var(--item-image-aspect, 4 / 3); margin: 0; overflow: hidden; background: var(--paper); }
.preview-item-image[style*="--item-image-aspect: auto"] { height: var(--item-image-height-desktop); aspect-ratio: auto; }
.preview-item-image img { width: 100%; height: 100%; object-fit: var(--item-image-fit, cover); object-position: var(--item-image-position, center center); }
.content-card > div, .product-card > div, .dealer-card { padding: 20px; }
.content-card > div { min-height: 0; flex: 1 1 auto; display: grid; align-content: start; }
.content-card.text-left > div,
.content-card.text-left > div p,
.content-card.text-left > div a,
.content-card.text-left > div strong { color: inherit; }
.content-card p, .product-card p, .dealer-card p, .hint { color: var(--muted); line-height: 1.55; }
.content-card-action { margin: 18px 0 0; display: flex; }
.content-card-action.align-left { justify-content: flex-start; }
.content-card-action.align-center { justify-content: center; }
.content-card-action.align-right { justify-content: flex-end; }
.content-card-action.width-full .button { width: 100%; }
.content-card-action .button.primary { color: var(--white); }
.content-card-action .button.secondary { border-color: var(--line); color: var(--ink); background: transparent; }
.content-card.text-center { text-align: center; }
.content-card.text-right { text-align: right; }
.content-card.image-left, .content-card.image-right { display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); }
.content-card.image-left .item-image, .content-card.image-right .item-image { height: 100%; min-height: 260px; }
.content-card.image-right { grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr); }
.content-card.image-right .item-image { order: 2; }
.content-card.image-right div { order: 1; }
.content-card.badges .quality-badges,
.content-card.badges .quality-badge-grid { padding: 0; }
.quality-badges { display: grid; gap: 28px; }
.quality-badges h1,
.quality-badges h2,
.quality-badges h3,
.quality-badges h4,
.quality-badges h5 { margin: 0; }
.quality-badge-grid { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: flex-start; gap: 22px; }
.quality-badge-grid.badge-align-center { justify-content: center; }
.quality-badge-grid.badge-align-right { justify-content: flex-end; }
.quality-badge-grid.badge-align-justify { justify-content: space-between; }
.quality-badge-grid img { width: auto; max-width: min(190px, 100%); max-height: 280px; object-fit: contain; }
.dealer-card { position: relative; isolation: isolate; background: transparent; cursor: pointer; transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.dealer-card::before { position: absolute; inset: 0; z-index: -1; content: ""; background: var(--dealer-card-background, var(--white)); opacity: var(--dealer-card-background-opacity, 1); pointer-events: none; }
.dealer-card:hover, .dealer-card:focus-visible, .dealer-card.is-active { border-color: var(--brand); box-shadow: 0 14px 34px rgba(25, 23, 20, 0.12); }
.dealer-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.dealer-card.is-active { border-color: var(--brand); background: transparent; box-shadow: 0 14px 34px rgba(25, 23, 20, 0.12); transform: translateY(-1px); }
.dealer-card h5 { margin-top: 10px; margin-bottom: 10px; color: var(--brand); font-family: var(--font-heading); font-size: 22px; font-weight: var(--heading-weight); line-height: 1.25; }

.product-grid { width: min(var(--content-width), 100%); display: grid; grid-template-columns: repeat(var(--program-grid-columns, 4), minmax(0, 1fr)); gap: 18px; }
.program-display-square_hover > .product-card,
.program-display-square_hover > .program-text-tile {
  aspect-ratio: 1;
  min-width: 0;
  overflow: hidden;
  border: 0;
}
.program-square-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--program-hover-color, var(--white));
  background: var(--program-card-bg, var(--white));
  cursor: pointer;
}
.program-square-card-link > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}
.program-square-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 38px);
  color: inherit;
  text-align: center;
  opacity: 0;
  transition: opacity 220ms ease;
}
.program-square-card-overlay::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--program-hover-bg, var(--brand));
  opacity: var(--program-hover-opacity, 1);
}
.program-square-card-overlay > * { position: relative; z-index: 1; color: inherit; }
.program-square-card-overlay > strong { font-family: var(--font-heading); font-size: clamp(18px, 1.8vw, 28px); line-height: 1.1; text-transform: uppercase; }
.program-square-card-overlay > span { font-family: var(--font-body, var(--font-text)); font-size: clamp(15px, 1.2vw, 20px); line-height: 1.35; }
.program-square-card-link.has-hover-text:hover > img,
.program-square-card-link.has-hover-text:focus-visible > img { transform: scale(1.035); }
.program-square-card-link.has-hover-text:hover .program-square-card-overlay,
.program-square-card-link.has-hover-text:focus-visible .program-square-card-overlay { opacity: 1; }
.program-square-card-link:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.program-text-tile {
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 46px);
  color: var(--program-text-tile-color, var(--ink));
  background: var(--program-text-tile-bg, var(--background-light));
  text-align: center;
}
.program-text-tile-content { min-width: 0; color: inherit; }
.program-text-tile-content strong { display: block; margin: 0 0 .35em; color: inherit; font: inherit; }
.program-text-tile-content > div { color: inherit; font: inherit; }
.program-text-tile-content > div > :last-child { margin-bottom: 0; }
.program-text-tile.typography-body { font-family: var(--font-body, var(--font-text)); font-size: var(--font-size-body, 20px); font-weight: var(--font-weight-body, 400); line-height: var(--font-line-height-body, 155%); letter-spacing: var(--font-letter-spacing-body, 0); }
.program-text-tile.typography-kicker { font-family: var(--font-kicker, var(--font-heading)); font-size: var(--font-size-kicker, 16px); font-weight: var(--font-weight-kicker, 700); line-height: var(--font-line-height-kicker, 120%); letter-spacing: var(--font-letter-spacing-kicker, 0); }
.program-text-tile.typography-h1 { font-family: var(--font-h1, var(--font-heading)); font-size: min(var(--font-size-h1, 64px), clamp(30px, 4vw, 58px)); font-weight: var(--font-weight-h1, var(--heading-weight)); line-height: var(--font-line-height-h1, 100%); letter-spacing: var(--font-letter-spacing-h1, 0); }
.program-text-tile.typography-h2 { font-family: var(--font-h2, var(--font-heading)); font-size: min(var(--font-size-h2, 52px), clamp(28px, 3.5vw, 50px)); font-weight: var(--font-weight-h2, var(--heading-weight)); line-height: var(--font-line-height-h2, 105%); letter-spacing: var(--font-letter-spacing-h2, 0); }
.program-text-tile.typography-h3 { font-family: var(--font-h3, var(--font-heading)); font-size: min(var(--font-size-h3, 40px), clamp(24px, 3vw, 42px)); font-weight: var(--font-weight-h3, var(--heading-weight)); line-height: var(--font-line-height-h3, 110%); letter-spacing: var(--font-letter-spacing-h3, 0); }
.program-text-tile.typography-h4 { font-family: var(--font-h4, var(--font-heading)); font-size: min(var(--font-size-h4, 32px), clamp(21px, 2.5vw, 34px)); font-weight: var(--font-weight-h4, var(--heading-weight)); line-height: var(--font-line-height-h4, 115%); letter-spacing: var(--font-letter-spacing-h4, 0); }
.program-text-tile.typography-h5 { font-family: var(--font-h5, var(--font-heading)); font-size: min(var(--font-size-h5, 26px), clamp(18px, 2vw, 28px)); font-weight: var(--font-weight-h5, var(--heading-weight)); line-height: var(--font-line-height-h5, 120%); letter-spacing: var(--font-letter-spacing-h5, 0); }
.program-text-tile.typography-additional { font-family: var(--font-additional-text, var(--font-heading)); font-size: clamp(28px, 3.5vw, 52px); line-height: 1; }
.self-programs-grid {
  width: min(var(--content-width), 100%);
  display: grid;
  grid-template-columns: repeat(var(--self-program-columns-desktop, 4), minmax(0, 1fr));
  gap: var(--self-program-gap, 20px);
}

.program-assortment-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 34px;
  width: min(var(--content-width, 1180px), calc(100% - 40px));
  margin: 12px auto 42px;
}

.program-assortment-filter button {
  appearance: none;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease;
}

.program-assortment-filter.filter-align-left { justify-content: flex-start; }
.program-assortment-filter.filter-align-center { justify-content: center; }
.program-assortment-filter.filter-align-right { justify-content: flex-end; }
.program-assortment-filter.is-equally-distributed { gap: 12px 20px; }
.program-assortment-filter.is-equally-distributed button { flex: 1 1 0; text-align: center; }
.program-assortment-filter.filter-type-body button {
  font-family: var(--font-body, var(--font-text));
  font-size: var(--font-size-body, 20px);
  font-weight: var(--font-weight-body, 400);
  line-height: var(--font-line-height-body, 155%);
  letter-spacing: var(--font-letter-spacing-body, 0);
  text-transform: none;
}
.program-assortment-filter.filter-type-kicker button {
  font-family: var(--font-kicker, var(--font-heading));
  font-size: var(--font-size-kicker, 16px);
  font-weight: var(--font-weight-kicker, 700);
  line-height: var(--font-line-height-kicker, 120%);
  letter-spacing: var(--font-letter-spacing-kicker, 0);
}
.program-assortment-filter.filter-type-h1 button,
.program-assortment-filter.filter-type-h2 button,
.program-assortment-filter.filter-type-h3 button,
.program-assortment-filter.filter-type-h4 button,
.program-assortment-filter.filter-type-h5 button { font-family: var(--font-heading); }
.program-assortment-filter.filter-type-h1 button { font-family: var(--font-h1, var(--font-heading)); font-size: var(--font-size-h1, clamp(44px, 7vw, 88px)); font-weight: var(--font-weight-h1, var(--heading-weight)); line-height: var(--font-line-height-h1, 100%); letter-spacing: var(--font-letter-spacing-h1, 0); }
.program-assortment-filter.filter-type-h2 button { font-family: var(--font-h2, var(--font-heading)); font-size: var(--font-size-h2, clamp(34px, 5vw, 64px)); font-weight: var(--font-weight-h2, var(--heading-weight)); line-height: var(--font-line-height-h2, 105%); letter-spacing: var(--font-letter-spacing-h2, 0); }
.program-assortment-filter.filter-type-h3 button { font-family: var(--font-h3, var(--font-heading)); font-size: var(--font-size-h3, clamp(28px, 4vw, 48px)); font-weight: var(--font-weight-h3, var(--heading-weight)); line-height: var(--font-line-height-h3, 110%); letter-spacing: var(--font-letter-spacing-h3, 0); }
.program-assortment-filter.filter-type-h4 button { font-family: var(--font-h4, var(--font-heading)); font-size: var(--font-size-h4, clamp(23px, 3vw, 34px)); font-weight: var(--font-weight-h4, var(--heading-weight)); line-height: var(--font-line-height-h4, 115%); letter-spacing: var(--font-letter-spacing-h4, 0); }
.program-assortment-filter.filter-type-h5 button { font-family: var(--font-h5, var(--font-heading)); font-size: var(--font-size-h5, clamp(19px, 2vw, 26px)); font-weight: var(--font-weight-h5, var(--heading-weight)); line-height: var(--font-line-height-h5, 120%); letter-spacing: var(--font-letter-spacing-h5, 0); }

.program-assortment-filter button:hover,
.program-assortment-filter button:focus-visible,
.program-assortment-filter button.is-active {
  color: var(--brand);
}

.program-filter-select-groups {
  width: min(var(--content-width, 1180px), calc(100% - 40px));
  margin: 12px auto 42px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.program-filter-module.filter-align-left .program-filter-select-groups { justify-content: flex-start; }
.program-filter-module.filter-align-center .program-filter-select-groups { justify-content: center; }
.program-filter-module.filter-align-right .program-filter-select-groups { justify-content: flex-end; }
.program-filter-module.is-equally-distributed .program-filter-select-group { flex: 1 1 0; }
.program-filter-select-group { display: grid; gap: 8px; min-width: min(280px, 100%); }
.program-filter-select-group > span { font-weight: 700; }
.program-filter-select-group select {
  width: 100%;
  min-height: 48px;
  padding: 10px 38px 10px 14px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--section-background, #fff) 94%, transparent);
  color: inherit;
  font: inherit;
}
.program-filter-select-group select[multiple] { padding-right: 14px; }
.program-filter-select-group option { font-family: var(--font-body, var(--font-text)); font-size: var(--font-size-body, 18px); }
.program-filter-module > .program-assortment-filter + .program-assortment-filter { margin-top: -24px; }
.program-filter-module.filter-type-body { font-family: var(--font-body, var(--font-text)); font-size: var(--font-size-body, 20px); font-weight: var(--font-weight-body, 400); line-height: var(--font-line-height-body, 155%); letter-spacing: var(--font-letter-spacing-body, 0); }
.program-filter-module.filter-type-kicker { font-family: var(--font-kicker, var(--font-heading)); font-size: var(--font-size-kicker, 16px); font-weight: var(--font-weight-kicker, 700); line-height: var(--font-line-height-kicker, 120%); letter-spacing: var(--font-letter-spacing-kicker, 0); }
.program-filter-module.filter-type-h1 { font-family: var(--font-h1, var(--font-heading)); font-size: var(--font-size-h1, clamp(44px, 7vw, 88px)); font-weight: var(--font-weight-h1, var(--heading-weight)); line-height: var(--font-line-height-h1, 100%); letter-spacing: var(--font-letter-spacing-h1, 0); }
.program-filter-module.filter-type-h2 { font-family: var(--font-h2, var(--font-heading)); font-size: var(--font-size-h2, clamp(34px, 5vw, 64px)); font-weight: var(--font-weight-h2, var(--heading-weight)); line-height: var(--font-line-height-h2, 105%); letter-spacing: var(--font-letter-spacing-h2, 0); }
.program-filter-module.filter-type-h3 { font-family: var(--font-h3, var(--font-heading)); font-size: var(--font-size-h3, clamp(28px, 4vw, 48px)); font-weight: var(--font-weight-h3, var(--heading-weight)); line-height: var(--font-line-height-h3, 110%); letter-spacing: var(--font-letter-spacing-h3, 0); }
.program-filter-module.filter-type-h4 { font-family: var(--font-h4, var(--font-heading)); font-size: var(--font-size-h4, clamp(23px, 3vw, 34px)); font-weight: var(--font-weight-h4, var(--heading-weight)); line-height: var(--font-line-height-h4, 115%); letter-spacing: var(--font-letter-spacing-h4, 0); }
.program-filter-module.filter-type-h5 { font-family: var(--font-h5, var(--font-heading)); font-size: var(--font-size-h5, clamp(19px, 2vw, 26px)); font-weight: var(--font-weight-h5, var(--heading-weight)); line-height: var(--font-line-height-h5, 120%); letter-spacing: var(--font-letter-spacing-h5, 0); }

[data-program-filter-item][hidden] { display: none !important; }

@media (max-width: 760px) {
  .program-assortment-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 22px;
    width: 100%;
    margin-bottom: 28px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .program-assortment-filter button { flex: 0 0 auto; }
  .program-assortment-filter.is-equally-distributed button { flex: 0 0 auto; }
  .program-filter-select-groups { width: 100%; padding: 0 20px; flex-direction: column; }
  .program-filter-select-group { width: 100%; }
}
.self-program-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
}
.self-program-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--self-program-card-bg, #ffffff);
  opacity: var(--self-program-card-opacity, .45);
}
.self-program-card-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(30px, 3.2vw, 54px) clamp(14px, 1.8vw, 30px) clamp(12px, 1.4vw, 24px);
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.self-program-card.has-detail-page .self-program-card-media { cursor: pointer; }
.self-program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}
.self-program-card-media:hover img,
.self-program-card-media:focus-visible img { transform: scale(1.035); }
.self-program-card-media:focus-visible {
  outline: 3px solid var(--self-program-title-color, #ffffff);
  outline-offset: -5px;
}
.self-program-card-title {
  position: absolute;
  z-index: 2;
  top: clamp(12px, 1.2vw, 18px);
  left: clamp(14px, 1.3vw, 20px);
  max-width: calc(100% - 28px);
  margin: 0;
  color: var(--self-program-title-color, #ffffff);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  pointer-events: none;
}
.self-program-card-title a {
  color: inherit;
  pointer-events: auto;
}
.self-program-detail-section {
  color: var(--self-program-detail-color, var(--white));
}
.self-program-detail-shell {
  display: grid;
  gap: clamp(28px, 4vw, 58px);
}
.self-program-detail-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.self-program-detail-back img {
  width: 18px;
  height: 31px;
  flex: 0 0 auto;
  object-fit: contain;
}
.self-program-detail-back:hover,
.self-program-detail-back:focus-visible { opacity: .72; }
.self-program-detail-back:focus-visible { outline: 2px solid currentColor; outline-offset: 7px; }
.self-program-detail-content {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}
.self-program-detail-content.has-no-image { grid-template-columns: minmax(0, 760px); }
.self-program-detail-copy { min-width: 0; }
.self-program-detail-title {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(22px, 3vw, 38px);
  color: inherit;
  font-weight: 400;
  text-transform: uppercase;
}
.self-program-detail-body,
.self-program-detail-body p,
.self-program-detail-body li { color: inherit; }
.self-program-detail-body { line-height: 1.55; }
.self-program-detail-body ul,
.self-program-detail-body ol { padding-left: 1.25em; }
.self-program-detail-section.has-custom-bullets .self-program-detail-body ul {
  padding-left: 0;
  list-style: none;
}
.self-program-detail-section.has-custom-bullets .self-program-detail-body ul > li {
  position: relative;
  padding-left: 1.45em;
}
.self-program-detail-section.has-custom-bullets .self-program-detail-body ul > li::before {
  content: "";
  position: absolute;
  top: .32em;
  left: 0;
  width: .9em;
  height: .9em;
  background: var(--self-program-detail-bullet-icon) center / contain no-repeat;
}
.self-program-detail-pdfs {
  display: grid;
  gap: 10px;
  margin-top: clamp(24px, 3.5vw, 42px);
}
.self-program-detail-pdf {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  border-radius: 14px;
  color: inherit;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.self-program-detail-pdf-icon {
  width: 30px;
  height: 40px;
  display: grid;
  place-items: center;
  clip-path: polygon(0 0, 72% 0, 100% 24%, 100% 100%, 0 100%);
  color: currentColor;
  background: rgb(255 255 255 / .28);
  font-size: 9px;
  font-weight: 900;
}
.self-program-detail-pdf-thumbnail {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.self-program-detail-pdf-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.self-program-detail-pdf-name {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.self-program-detail-pdf strong {
  white-space: nowrap;
}
.self-program-detail-pdf:hover,
.self-program-detail-pdf:focus-visible {
  border-color: currentColor;
  background: rgb(255 255 255 / .12);
  transform: translateY(-1px);
}
.self-program-detail-pdf:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.self-program-detail-main {
  min-width: 0;
  min-height: clamp(300px, 36vw, 560px);
  display: grid;
  place-items: center;
  margin: 0;
}
.self-program-detail-main img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
}
.self-program-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 16px);
  padding-top: clamp(18px, 2.5vw, 30px);
  border-top: 1px solid currentColor;
}
.self-program-detail-thumbs button {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 6px;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: .72;
  transition: opacity 150ms ease;
}
.self-program-detail-thumbs button:hover,
.self-program-detail-thumbs button:focus-visible,
.self-program-detail-thumbs button.is-active {
  opacity: 1;
}
.self-program-detail-thumbs button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.self-program-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image-zoom { width: 100%; display: block; padding: 0; overflow: hidden; border: 0; border-radius: 0; background: transparent; cursor: zoom-in; }
.product-image-zoom img,
.product-card > img { width: 100%; height: auto; object-fit: contain; transition: transform 180ms ease; }
.product-image-zoom.item-image { display: block; }
.product-image-zoom.item-image img { height: 100%; object-fit: var(--item-image-fit, contain); object-position: var(--item-image-position, center center); }
.product-image-zoom:hover img,
.product-image-zoom:focus-visible img { transform: scale(1.035); }
.product-image-zoom:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.product-image-frame { position: relative; padding: 0 !important; background: var(--program-card-bg, var(--white)); }
.product-card-title-overlay {
  position: absolute;
  top: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}
.program-title-top-left .product-card-title-overlay { left: 16px; text-align: left; }
.program-title-top-right .product-card-title-overlay { right: 16px; text-align: right; }
.product-pdf-badge { position: absolute; right: 16px; bottom: 16px; z-index: 2; }
.gallery-image { border-radius: 0; box-shadow: none; }
.image-collection-grid {
  width: min(var(--content-width), 100%);
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--image-collection-gap, 40px);
  aspect-ratio: 2.16 / 1;
}
.image-collection-item {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.image-collection-item:first-child { grid-row: 1 / span 2; }
.image-collection-item img {
  width: 100%;
  height: 100%;
  object-fit: var(--item-image-fit, cover);
  object-position: var(--item-image-position, center center);
}
.three-tiles-grid {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  grid-template-rows: repeat(2, auto);
  gap: var(--three-tiles-gap, 40px);
}
.three-tiles-grid.height-square .three-tiles-item-1,
.three-tiles-grid.height-square .three-tiles-item-2 { aspect-ratio: 1 / 1; }
.three-tiles-grid.height-fixed {
  grid-template-rows: repeat(2, var(--three-tiles-small-height, 420px));
}
.three-tiles-item {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.three-tiles-item-3 {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  height: 100%;
}
.three-tiles-grid.height-square .three-tiles-item-3 {
  contain: size;
}
.three-tiles-grid.layout-2-1 {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
.three-tiles-grid.layout-2-1 .three-tiles-item-1 {
  grid-column: 2;
  grid-row: 1;
}
.three-tiles-grid.layout-2-1 .three-tiles-item-2 {
  grid-column: 2;
  grid-row: 2;
}
.three-tiles-grid.layout-2-1 .three-tiles-item-3 {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.three-tiles-item img {
  width: 100%;
  height: 100%;
  object-fit: var(--item-image-fit, cover);
  object-position: var(--item-image-position, center center);
}
.three-tiles-item.is-text {
  display: grid;
}
.three-tiles-copy {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
}
.three-tiles-copy > :first-child { margin-top: 0; }
.three-tiles-copy > :last-child { margin-bottom: 0; }
.three-tiles-copy h1,
.three-tiles-copy h2,
.three-tiles-copy h3,
.three-tiles-copy h4,
.three-tiles-copy h5,
.three-tiles-copy h6,
.three-tiles-copy p,
.three-tiles-copy a,
.three-tiles-copy strong { color: inherit; }
.tiles-grid {
  width: min(var(--content-width), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--tiles-gap, 40px);
}
.tiles-grid > .tiles-item {
  min-width: 0;
  min-height: 0;
  contain: size;
}
.tiles-grid > .tiles-item-1 { flex: 0 0 var(--tiles-top-first, calc(66.666667% - 26.67px)); }
.tiles-grid > .tiles-item-2 { flex: 0 0 var(--tiles-top-second, calc(33.333333% - 13.33px)); }
.tiles-grid > .tiles-item-3 { flex: 0 0 var(--tiles-bottom-first, calc(50% - 20px)); }
.tiles-grid > .tiles-item-4 { flex: 0 0 var(--tiles-bottom-second, calc(50% - 20px)); }
.tiles-grid.tiles-top-small-first > .tiles-item-1,
.tiles-grid.tiles-top-small-second > .tiles-item-2,
.tiles-grid.tiles-top-small-both > .tiles-item-1,
.tiles-grid.tiles-top-small-both > .tiles-item-2,
.tiles-grid.tiles-bottom-small-first > .tiles-item-3,
.tiles-grid.tiles-bottom-small-second > .tiles-item-4,
.tiles-grid.tiles-bottom-small-both > .tiles-item-3,
.tiles-grid.tiles-bottom-small-both > .tiles-item-4 { aspect-ratio: 1 / 1; }
.tiles-item { overflow: hidden; background: var(--paper); }
.tiles-item.is-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.flexible-tiles-grid {
  width: min(var(--content-width), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.flexible-tiles-row {
  display: grid;
  grid-template-columns: minmax(0, var(--flexible-tile-left, 60fr)) minmax(0, var(--flexible-tile-right, 40fr));
  grid-auto-rows: var(--flexible-tile-height-desktop, 360px);
  gap: 40px;
}
.tiles-item.flexible-tiles-item { min-width: 0; min-height: 0; }
.tiles-item.is-text { display: grid; align-content: var(--tile-align-content, center); color: var(--tile-color); background: var(--tile-bg); }
.tiles-copy { display: grid; gap: 22px; padding: var(--tile-padding, 60px); text-align: var(--tile-align, left); }
.tiles-copy h1,
.tiles-copy h2,
.tiles-copy h3,
.tiles-copy h4,
.tiles-copy h5,
.tiles-copy p,
.tiles-copy .tiles-text,
.tiles-copy strong { color: inherit; }
.tiles-copy h1,
.tiles-copy h2,
.tiles-copy h3,
.tiles-copy h4,
.tiles-copy h5 { margin: 0; }
.tiles-certificates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.tiles-certificates img { display: block; width: 100%; height: var(--certificate-height-web, 300px); object-fit: contain; object-position: left top; }
.tiles-copy p { margin: 0 0 18px; }
.tiles-copy p:last-child { margin-bottom: 0; }
.tiles-copy a { color: var(--brand); font-weight: 500; }
.image-text-tiles-section { padding-right: 0; padding-left: 0; }
.image-text-tiles-grid {
  width: min(var(--content-width), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
}
.image-text-tile { min-width: 0; overflow: hidden; background: var(--paper); }
.image-text-tile-link { position: relative; display: block; min-height: 100%; color: var(--white); }
.image-text-tile-media {
  width: 100%;
  aspect-ratio: var(--item-image-aspect, 4 / 3);
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.image-text-tile-media[style*="--item-image-aspect: auto"] {
  height: var(--item-image-height-desktop, 520px);
  aspect-ratio: auto;
}
.image-text-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--item-image-fit, cover);
  object-position: var(--item-image-position, center center);
  transition: transform 0.3s ease;
}

/* Echte Bilder zeigen beim Laden keine vom Theme eingefärbte Platzhalterfläche. */
.header-media:has(img),
.header-directory-slider:has(.header-directory-slide img),
.item-image:has(img),
.image-collection-item:has(img),
.three-tiles-item:has(img),
.tiles-item.is-image:has(img),
.image-text-tile:has(img),
.image-text-tile-media:has(img),
.program-detail-main:has(img),
.program-content-slides:has(img) { background: transparent; }
.image-text-tile-copy {
  position: absolute;
  left: clamp(24px, 4vw, 46px);
  bottom: clamp(24px, 4vw, 46px);
  width: min(330px, calc(100% - 48px));
  padding: clamp(22px, 3vw, 30px);
  color: var(--white);
  background: rgba(30, 28, 25, 0.7);
}
.image-text-tile-copy h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}
.image-text-tile-text,
.image-text-tile-text p { color: inherit; }
.image-text-tile-text p { margin: 0 0 10px; }
.image-text-tile-text p:last-child { margin-bottom: 0; }
.image-text-tile-action {
  min-height: 42px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: inherit;
  font-weight: 700;
}
.image-text-tile-arrow { font-size: 48px; font-weight: 300; line-height: 0.75; }
.image-text-tile-link[href]:hover .image-text-tile-media img { transform: scale(1.025); }
.image-text-tile-link[href]:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.logo-grid { width: min(var(--content-width), 100%); display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-grid:not(.is-slider) { display: flex; flex-wrap: wrap; justify-content: flex-start; }
.logo-grid.logo-align-center:not(.is-slider) { justify-content: center; }
.logo-grid.logo-align-right:not(.is-slider) { justify-content: flex-end; }
.logo-grid:not(.is-slider) .logo-card { flex: 0 1 calc((100% - 72px) / 5); }
.logo-grid .logo-card {
  position: relative;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-color: transparent;
  border-radius: 6px;
  background: transparent;
}
.logo-grid.has-logo-outline .logo-card::before,
.logo-grid.has-logo-hover-background .logo-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.logo-grid.has-logo-outline .logo-card::before {
  z-index: 2;
  border: 1px solid var(--member-logo-outline-color, #b7b7b7);
  opacity: 0.6;
  transition: opacity 160ms ease;
}
.logo-grid.has-logo-outline .logo-card:hover::before,
.logo-grid.has-logo-outline .logo-card:focus-visible::before { opacity: 1; }
.logo-grid.has-logo-hover-background .logo-card::after {
  z-index: 0;
  background: var(--member-logo-hover-background, transparent);
  opacity: 0;
  transition: opacity 160ms ease;
}
.logo-grid.has-logo-hover-background .logo-card:hover::after,
.logo-grid.has-logo-hover-background .logo-card:focus-visible::after { opacity: 0.1; }
.logo-card img { position: relative; z-index: 1; max-height: 48px; width: auto; transition: filter 160ms ease; }
.logo-grid.logo-color-white .logo-card img { filter: brightness(0) invert(1); }
.logo-grid.logo-color-black .logo-card img { filter: brightness(0); }
.logo-grid.logo-color-white.has-logo-outline .logo-card::before { border-color: #fff; }
.logo-grid.logo-color-black.has-logo-outline .logo-card::before { border-color: #000; }
.logo-card[href] { cursor: pointer; }
.logo-card[href]:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.logo-grid.is-slider { display: flex; align-items: center; margin-bottom: 20px; padding-top: var(--member-logo-slider-padding-top, 0); padding-bottom: var(--member-logo-slider-padding-bottom, 0); overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-grid.is-slider.is-dragging { cursor: grabbing; }
.logo-slider-track { display: flex; flex: 0 0 auto; width: max-content; gap: 18px; align-items: center; padding: 3px 0; animation: logoSlide 26s linear infinite; }
.logo-grid.is-slider .logo-card { flex: 0 0 200px; align-self: center; place-items: center; }
.logo-grid.is-slider:hover .logo-slider-track,
.logo-grid.is-slider:focus-within .logo-slider-track { animation-play-state: paused; }
.logo-grid.is-slider.is-dragging .logo-slider-track { animation: none; }

.program-detail,
.article-detail { width: 100%; }
.program-detail {
  margin-top: var(--program-page-margin-top, 0);
  margin-bottom: var(--program-page-margin-bottom, 0);
  padding-top: var(--program-page-padding-top, 0);
  padding-bottom: var(--program-page-padding-bottom, 0);
}
.program-detail .section,
.article-detail.section { width: min(var(--content-width), calc(100% - 40px)); margin-inline: auto; }
.program-detail .section { padding: 0; }
.program-detail .section > * { width: 100%; margin-inline: 0; }
.program-detail-gallery { margin-bottom: clamp(42px, 6vw, 84px); }
.program-detail-main { width: 100%; aspect-ratio: 16 / 9; max-height: 820px; overflow: hidden; background: var(--light); }
.program-detail-main img { width: 100%; height: 100%; object-fit: cover; }
.program-detail-thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-top: 8px; }
.program-detail-thumbs button { padding: 5px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.program-detail-thumbs button.is-active { border-color: var(--brand); }
.program-detail-thumbs img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.program-detail-intro { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.15fr); gap: clamp(36px, 6vw, 90px); align-items: stretch; }
.program-detail-copy { align-self: center; }
.program-detail-copy h1,
.article-detail-content h1 { margin: 6px 0 14px; color: var(--brand); }
.program-detail-rule,
.article-detail-rule { height: 2px; width: 100%; margin: 0 0 18px; background: var(--brand); }
.program-detail-actions { display: grid; gap: 18px; margin-top: 34px; }
.program-detail-actions .button { justify-content: center; width: 100%; padding: 18px 24px; }
.program-detail-feature { position: relative; min-width: 0; }
.program-content-slides { position: relative; height: 100%; min-height: 420px; overflow: hidden; background: var(--light); }
.program-content-track { display: flex; width: 100%; height: 100%; min-height: inherit; transition: transform 650ms cubic-bezier(.22, .61, .36, 1); will-change: transform; }
.program-content-slides img { display: block; flex: 0 0 100%; width: 100%; min-width: 100%; height: auto; min-height: inherit; object-fit: cover; pointer-events: none; }
.program-content-slides img.is-active { pointer-events: auto; }
.program-content-slider-nav { position: absolute; right: 16px; bottom: 16px; left: 16px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.program-content-slider-nav > button { width: 38px; height: 38px; padding: 0; border: 0; background: var(--brand); color: var(--white); font-size: 28px; line-height: 1; cursor: pointer; }
.program-content-slider-dots { display: flex; gap: 7px; }
.program-content-slider-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid var(--white); border-radius: 50%; background: rgba(255, 255, 255, .45); cursor: pointer; }
.program-content-slider-dots button.is-active { border-color: var(--brand); background: var(--brand); }
.program-detail-variants { margin-top: clamp(48px, 7vw, 96px); }
.program-variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
.program-variant-grid figure { position: relative; margin: 0; padding: 6px; border: 1px solid var(--line); overflow: hidden; }
.program-variant-grid img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 360ms ease; }
.program-variant-grid figcaption {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 10px 13px;
  color: var(--white);
  background: rgba(20, 22, 24, .84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -10px) scale(.96);
  transform-origin: 50% 100%;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
.program-variant-grid figcaption::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 7px solid transparent;
  border-top-color: rgba(20, 22, 24, .84);
  transform: translateX(-50%);
}
.program-variant-grid figcaption > :first-child { margin-top: 0; }
.program-variant-grid figcaption > :last-child { margin-bottom: 0; }
.program-variant-grid figure.has-caption:hover img,
.program-variant-grid figure.has-caption:focus img { transform: scale(1.025); }
.program-variant-grid figure.has-caption:hover figcaption,
.program-variant-grid figure.has-caption:focus figcaption { opacity: 1; transform: translate(-50%, 0) scale(1); }
.program-variant-grid figure.has-caption:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.color-samples-section,
.suggestion-slider-section {
  padding-right: 0;
  padding-left: 0;
}
.color-sample-grid {
  display: grid;
  grid-template-columns: repeat(var(--color-sample-columns, 8), minmax(0, 1fr));
  gap: 8px;
  width: min(var(--content-width), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}
.color-samples-section > .section-head { width: min(var(--content-width), calc(100% - 36px)); }
.color-sample-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.color-sample-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 360ms ease;
}
.color-sample-grid figcaption {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 10px 13px;
  color: var(--white);
  background: rgba(20, 22, 24, .84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -10px) scale(.96);
  transform-origin: 50% 100%;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
.color-sample-grid figcaption::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 7px solid transparent;
  border-top-color: rgba(20, 22, 24, .84);
  transform: translateX(-50%);
}
.color-sample-grid figcaption > :first-child { margin-top: 0; }
.color-sample-grid figcaption > :last-child { margin-bottom: 0; }
.color-sample-grid figure.has-caption:hover img,
.color-sample-grid figure.has-caption:focus img { transform: scale(1.025); }
.color-sample-grid figure.has-caption:hover figcaption,
.color-sample-grid figure.has-caption:focus figcaption { opacity: 1; transform: translate(-50%, 0) scale(1); }
.color-sample-grid figure.has-caption:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.articles-section { padding-right: 0; padding-left: 0; }
.articles-section > .section-head,
.article-grid { width: min(var(--content-width), calc(100% - 36px)); margin-right: auto; margin-left: auto; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.article-card { border: 1px solid var(--line); background: var(--white); }
.article-card > a { display: flex; height: 100%; flex-direction: column; color: inherit; text-decoration: none; }
.article-card img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article-card > a > div { display: flex; min-height: 0; flex: 1 1 auto; flex-direction: column; padding: 20px; text-align: var(--article-text-align, left); }
.article-card .article-card-title { margin: 0; color: var(--brand); font-size: var(--article-title-size, 30px); }
.article-card-copy { margin-top: 14px; }
.article-card-copy > :first-child { margin-top: 0; }
.article-card-copy > :last-child { margin-bottom: 0; }
.article-card-more { align-self: flex-end; margin-top: auto; padding-top: 18px; color: var(--text-link-color, var(--brand)); font-weight: 700; }
.articles-section.article-text-align-left .article-card-more { align-self: flex-start; }
.articles-section.article-text-align-center .article-card-more { align-self: center; }
.articles-section.article-text-align-right .article-card-more { align-self: flex-end; }
.article-slider-shell { --suggestion-visible: 3; }
.article-slider-shell .article-grid { width: 100%; margin-right: 0; margin-left: 0; }
.article-slider-shell .article-card {
  flex: 0 0 calc((100% - (var(--suggestion-visible) - 1) * 16px) / var(--suggestion-visible));
  min-width: 0;
}
.article-page-section { padding-right: 0; padding-left: 0; }
.article-page-section-head,
.article-page-showcase,
.article-page-empty { width: min(var(--content-width), calc(100% - 36px)); margin-right: auto; margin-left: auto; }
.article-page-showcase { position: relative; }
.article-page-showcase.has-composed-content { width: 100%; max-width: none; }
.article-page-slides { position: relative; }
.article-page-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  min-height: 460px;
  overflow: hidden;
  background: var(--white);
  animation: articlePageFade 420ms ease both;
}
.article-page-slide[hidden] { display: none; }
.article-page-slide.is-composed-page {
  display: block;
  min-height: 0;
  overflow: visible;
  background: transparent;
}
.article-page-slide.is-composed-page[hidden] { display: none; }
.article-page-composed-content { width: 100%; }
.article-page-image { display: block; min-width: 0; min-height: 360px; overflow: hidden; }
.article-page-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.article-page-image:hover img,
.article-page-image:focus-visible img { transform: scale(1.025); }
.article-page-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(30px, 5vw, 72px); }
.article-page-title { width: 100%; margin-bottom: 22px; color: var(--brand); }
.article-page-body { width: 100%; line-height: 1.6; }
.article-page-body > :first-child { margin-top: 0; }
.article-page-body > :last-child { margin-bottom: 0; }
.article-page-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }
.article-page-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--button-radius, 0);
  color: var(--white);
  background: var(--brand);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.article-page-dots { display: flex; align-items: center; justify-content: center; gap: 9px; }
.article-page-dots button { width: 11px; height: 11px; min-height: 0; padding: 0; border: 1px solid var(--brand); border-radius: 50%; background: transparent; cursor: pointer; }
.article-page-dots button[aria-current="true"] { background: var(--brand); }
.article-page-arrow:focus-visible,
.article-page-dots button:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.article-page-empty { padding: 24px; border: 1px dashed var(--line); color: var(--muted); text-align: center; }
@keyframes articlePageFade { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 780px) {
  .article-page-slide { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .article-page-image { min-height: 0; aspect-ratio: 16 / 10; }
  .article-page-copy { padding: 28px 22px 32px; }
  .article-page-title { margin-bottom: 16px; }
  .article-page-controls { gap: 12px; }
}
.suggestion-slider-head { width: min(var(--content-width), calc(100% - 36px)); }
.suggestion-slider-head h1,
.suggestion-slider-head h2,
.suggestion-slider-head h3,
.suggestion-slider-head h4,
.suggestion-slider-head h5 { margin-bottom: 12px; }
.suggestion-slider-rule {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 0 16px;
  background: var(--brand);
}
.suggestion-slider-head[data-align="center"] .suggestion-slider-rule { margin-right: auto; margin-left: auto; }
.suggestion-slider-head[data-align="right"] .suggestion-slider-rule { margin-left: auto; }
.suggestion-slider-shell {
  position: relative;
  width: min(var(--content-width), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
  --suggestion-visible: 3;
}
.suggestion-slider-viewport { width: 100%; overflow: hidden; }
.suggestion-slider-track {
  display: flex;
  gap: 16px;
  width: 100%;
  transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.suggestion-slider-card {
  flex: 0 0 calc((100% - (var(--suggestion-visible) - 1) * 16px) / var(--suggestion-visible));
  min-width: 0;
  overflow: hidden;
  background: transparent;
}
.suggestion-slider-card > a { display: block; height: 100%; color: inherit; text-decoration: none; }
.suggestion-slider-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease;
}
.suggestion-slider-copy { padding: 18px 0 0; background: transparent; }
.suggestion-slider-copy h3 { margin: 0 0 8px; color: var(--brand); font-size: var(--suggestion-title-size, 30px); }
.suggestion-slider-copy p { margin: 0; }
.suggestion-slider-card > a:hover img,
.suggestion-slider-card > a:focus-visible img { transform: scale(1.025); }
.suggestion-slider-card > a:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.suggestion-slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  transform: translateY(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.suggestion-slider-arrow.is-prev { left: 12px; }
.suggestion-slider-arrow.is-next { right: 12px; }
.suggestion-slider-shell.is-static .suggestion-slider-arrow { display: none; }
.suggestion-slider-arrow:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.article-detail.section { display: grid; grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr); gap: clamp(34px, 5vw, 70px); align-items: start; }
.article-detail-hero { display: block; width: 100%; max-height: 680px; margin-bottom: 42px; object-fit: cover; }
.article-detail-body { width: 100%; }
.article-journal { min-height: 100%; padding-left: clamp(24px, 3vw, 48px); border-left: 2px solid var(--brand); }
.article-journal h2 { margin-top: 0; color: var(--brand); }
.article-journal img { display: block; width: 100%; max-width: 320px; margin: 24px auto; }
.article-journal-download { color: var(--brand); font-weight: 700; }

@keyframes logoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-slider-track { animation: none; }
  .content-image-slider-track { transition: none; }
  .suggestion-slider-track,
  .suggestion-slider-card img { transition: none; }
  .article-page-slide { animation: none; }
  .article-page-image img { transition: none; }
  .program-variant-grid img,
  .program-variant-grid figcaption,
  .color-sample-grid img,
  .color-sample-grid figcaption { transition: none; }
}

.dealer-form { width: min(var(--content-width), calc(100% - 36px)); margin: 0 auto 18px; display: grid; grid-template-columns: minmax(220px, 1fr) 160px auto; gap: 14px; align-items: end; }
.dealer-quick-search-inner { width: min(var(--content-width), calc(100% - 36px)); margin: 0 auto; }
.dealer-quick-search-head { width: 100%; max-width: none; }
.dealer-quick-search-head .section-kicker { color: var(--dealer-quick-color, var(--brand)); }
.dealer-quick-search-title {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.2vw, 18px);
}
.dealer-quick-search-title.align-left { justify-content: flex-start; }
.dealer-quick-search-title.align-center { justify-content: center; }
.dealer-quick-search-title.align-right { justify-content: flex-end; }
.dealer-quick-search-title.headline-h1 { font-size: clamp(44px, 7vw, 88px); }
.dealer-quick-search-title.headline-h2 { font-size: clamp(32px, 4vw, 56px); }
.dealer-quick-search-title.headline-h3 { font-size: 28px; }
.dealer-quick-search-title.headline-h4 { font-size: 24px; }
.dealer-quick-search-title.headline-h5 { font-size: 22px; }
.dealer-quick-search-title-graphic {
  width: auto;
  height: .82em;
  max-width: 1em;
  flex: 0 0 auto;
  margin-top: .08em;
  object-fit: contain;
}
.dealer-quick-search-title > h1,
.dealer-quick-search-title > h2,
.dealer-quick-search-title > h3,
.dealer-quick-search-title > h4,
.dealer-quick-search-title > h5 { width: auto; }
.dealer-quick-search-form {
  width: var(--dealer-quick-width, 100%);
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px 74px;
  margin: var(--dealer-quick-margin, 0 auto);
}
.dealer-quick-search-form > input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--dealer-quick-color, var(--brand));
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
.dealer-quick-search-form > input[type="search"]::placeholder { color: var(--muted); opacity: .58; text-transform: uppercase; }
.dealer-quick-submit,
.dealer-quick-location {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .75);
  border-radius: 0;
  color: #ffffff;
  background: var(--dealer-quick-color, var(--brand));
  cursor: pointer;
}
.dealer-quick-submit svg,
.dealer-quick-location svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.dealer-quick-submit:hover,
.dealer-quick-submit:focus-visible,
.dealer-quick-location:hover,
.dealer-quick-location:focus-visible { filter: brightness(.92); }
.dealer-quick-submit:focus-visible,
.dealer-quick-location:focus-visible,
.dealer-quick-search-form > input[type="search"]:focus-visible { position: relative; z-index: 2; outline: 3px solid var(--accent); outline-offset: 2px; }
.dealer-quick-location[aria-busy="true"] { cursor: wait; opacity: .72; }
.dealer-search .dealer-search-head > h1,
.dealer-search .dealer-search-head > h2,
.dealer-search .dealer-search-head > h3,
.dealer-search .dealer-search-head > h4,
.dealer-search .dealer-search-head > h5,
.dealer-search .dealer-search-copy,
.dealer-search .dealer-search-copy > * {
  width: 100%;
  max-width: none;
}
.dealer-search .dealer-search-head {
  width: min(var(--content-width), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}
.dealer-search .dealer-search-head.has-content {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.dealer-form label span { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 800; }

.contact-form-shell {
  width: min(var(--content-width), calc(100% - 36px));
  margin-inline: auto;
}
.contact-form-head { margin-bottom: clamp(24px, 4vw, 44px); }
.contact-form-head h1,
.contact-form-head h2,
.contact-form-head h3,
.contact-form-head h4,
.contact-form-head h5 { margin-top: 0; }
.contact-form-intro { max-width: 900px; }
.contact-form-head[style*="center"] .contact-form-intro { margin-inline: auto; }
.contact-form-head[style*="right"] .contact-form-intro { margin-left: auto; }
.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(18px, 3vw, 34px);
}
.contact-form-field { min-width: 0; }
.contact-form-field.is-full,
.contact-form-field.is-textarea,
.contact-form-required,
.contact-form-actions { grid-column: 1 / -1; }
.contact-form-field > span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-form-field em { color: var(--brand); font-style: normal; }
.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
.contact-form-field textarea { min-height: 170px; resize: vertical; }
.contact-form-field.is-checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  align-self: end;
  min-height: 52px;
}
.contact-form-field.is-checkbox > span { order: 2; margin: 0; }
.contact-form-field.is-checkbox > input {
  order: 1;
  width: 21px;
  min-height: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  accent-color: var(--brand);
}
.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--brand) 24%, transparent);
  outline-offset: 1px;
  border-color: var(--brand);
}
.contact-form-required { margin: -4px 0 0; color: var(--muted); font-size: 14px; }
.contact-form-actions { display: flex; justify-content: flex-start; }
.contact-form-status {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-left: 4px solid currentColor;
  border-radius: var(--radius);
  background: color-mix(in srgb, currentColor 8%, var(--white));
}
.contact-form-status.is-success { color: #287242; }
.contact-form-status.is-error { color: #a52626; }
.contact-form-status p { margin: 0; }
.contact-form-status ul { margin: 10px 0 0; }
.contact-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 700px) {
  .contact-form { grid-template-columns: minmax(0, 1fr); }
  .contact-form-field.is-half { grid-column: 1 / -1; }
  .contact-form-actions .button { width: 100%; }
}
.dealer-form input, .dealer-form select { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.dealer-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: 24px; align-items: start; }
.dealer-results { display: grid; gap: 14px; }
.dealer-actions { display: flex; gap: 10px; margin-top: 14px; }
.dealer-actions a { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: var(--paper); font-size: 17px; line-height: 1.2; font-weight: 800; }
.dealer-actions a.primary { color: var(--white); border-color: var(--brand); background: var(--brand); }
.dealer-actions a.secondary { color: var(--brand); border-color: var(--brand); background: transparent; }
.map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.map-card iframe,
.map-card .map-consent-blocker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.map-card iframe { z-index: 1; display: block; border: 0; }
.map-card .map-consent-blocker { z-index: 2; }
.empty-state { padding: 20px; border: 1px dashed var(--line); border-radius: 0; color: var(--muted); }

.image-lightbox[hidden] { display: none; }
.image-lightbox { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: clamp(18px, 4vw, 48px); background: rgba(32, 33, 31, 0.82); }
.image-lightbox-dialog { position: relative; width: min(1120px, 100%); display: grid; gap: 14px; }
.image-lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 0; background: var(--white); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36); }
.image-lightbox-caption { margin: 0; color: var(--white); font-weight: 800; text-align: center; }
.image-lightbox-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,0.72); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,0.94); font-size: 0; line-height: 1; box-shadow: 0 12px 30px rgba(0,0,0,0.22); transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.image-lightbox-close::before,
.image-lightbox-close::after { content: ""; position: absolute; width: 17px; height: 2px; border-radius: 999px; background: currentColor; }
.image-lightbox-close::before { transform: rotate(45deg); }
.image-lightbox-close::after { transform: rotate(-45deg); }
.image-lightbox-close:hover,
.image-lightbox-close:focus-visible { background: var(--white); transform: scale(1.04); box-shadow: 0 16px 38px rgba(0,0,0,0.28); }
.image-lightbox-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.cms-ai-image-label {
  position: absolute !important;
  z-index: 12;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  pointer-events: none;
}
.cms-ai-image-label[hidden] { display: none !important; }

.site-footer { flex: 0 0 auto; padding: 48px 0; color: var(--footer-fg); background: var(--footer-bg); }
.site-footer-inner { width: min(var(--content-width), calc(100% - 36px)); display: grid; grid-template-columns: repeat(var(--footer-column-count, 1), minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); align-items: start; margin: 0 auto; }
.site-footer-inner.layout-width-full { width: 100%; padding-right: clamp(18px, 4vw, var(--site-header-padding-x, 58px)); padding-left: clamp(18px, 4vw, var(--site-header-padding-x, 58px)); }
.site-footer strong { color: var(--white); }
.site-footer p { margin: 0; }
.site-footer a { color: inherit; }
.footer-menu-block { text-align: right; }
.footer-links ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; margin: 0; padding: 0; list-style: none; }
.footer-links.is-stacked { text-align: left; }
.footer-links.is-stacked ul { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 12px; }
.footer-links button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; font-weight: inherit; }
.footer-copyright { margin-top: 36px; text-align: left; }
.site-footer-inner.has-compact-footer-menu .footer-menu-block { grid-column: 1 / -1; grid-row: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; text-align: left; }
.site-footer-inner.has-compact-footer-menu.has-footer-details .footer-menu-block { grid-row: 2; }
.site-footer-inner.has-compact-footer-menu .footer-links { grid-column: 2; grid-row: 1; text-align: right; }
.site-footer-inner.has-compact-footer-menu .footer-copyright { grid-column: 1; grid-row: 1; margin-top: 0; }
.footer-copyright > :first-child { margin-top: 0; }
.footer-copyright > :last-child { margin-bottom: 0; }
.footer-contact-block,
.footer-address-block,
.footer-contact-links { display: flex; flex-direction: column; gap: 8px; font-style: normal; }
.footer-contact-block { width: max-content; max-width: 100%; justify-self: end; }
.footer-contact-block .footer-block-title { margin-bottom: 4px; }
.footer-address-block strong { margin-bottom: 4px; }
.footer-address-content { line-height: 1.55; }
.footer-address-content > :first-child { margin-top: 0; }
.footer-address-content > :last-child { margin-bottom: 0; }
.footer-address-content a { color: inherit; }
.footer-logo { display: flex; align-items: flex-start; justify-content: flex-start; margin: 4px 0 8px; }
.footer-logo img { display: block; width: auto; max-width: 100%; max-height: 45px; object-fit: contain; }

.simple-page { padding-top: 86px; }
.legal-page h1 { font-size: clamp(38px, 5vw, 68px); }
.legal-content { width: min(980px, 100%); display: grid; gap: 16px; color: var(--muted); line-height: 1.7; }
.legal-content h2, .legal-content h3 { margin-top: 22px; color: var(--ink); font-family: var(--font-text); font-size: 22px; line-height: 1.25; }
.legal-content h3 { font-size: 18px; }
.legal-content a { color: var(--brand); font-weight: 800; }

.cookie-banner {
  --cookie-graphic-size: 72px;
  position: fixed;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 54px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-banner-graphic {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: grid;
  width: var(--cookie-graphic-size);
  height: var(--cookie-graphic-size);
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cookie-banner-graphic svg { display: block; width: 78%; height: 78%; overflow: visible; }
.cookie-banner-graphic .cookie-shape { fill: var(--ink); stroke: currentColor; stroke-width: 2; }
.cookie-banner-graphic .cookie-bite { fill: var(--white); }
.cookie-banner-graphic .cookie-chip { fill: var(--white); }
.cookie-banner > :first-child { min-width: 0; }
.cookie-banner strong, .cookie-option strong { display: block; margin-bottom: 6px; font-family: var(--font-heading); font-size: 24px; font-weight: var(--heading-weight); }
.cookie-banner p, .cookie-dialog p, .cookie-option p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions .button { min-width: 0; max-width: 100%; white-space: normal; text-align: center; }
.cookie-dialog > .cookie-actions { margin-top: 22px; }
.button.ghost { border-color: var(--line); color: var(--ink); background: transparent; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(32, 33, 31, 0.58);
}

.cookie-dialog {
  position: relative;
  box-sizing: border-box;
  width: min(720px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 36px));
  max-height: min(760px, calc(100dvh - 36px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.switch { display: inline-flex; cursor: pointer; }
.switch input { position: absolute; opacity: 0; }
.switch span { width: 56px; height: 30px; position: relative; border-radius: 999px; background: #e6e1d7; transition: background 160ms ease; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 8px rgba(25, 23, 20, 0.18); transition: transform 160ms ease; }
.switch input:checked + span { background: var(--brand); }
.switch input:checked + span::after { transform: translateX(26px); }

.map-consent-blocker {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(31, 32, 29, 0.9), rgba(31, 32, 29, 0.68));
}

.map-consent-blocker[hidden] { display: none; }
.map-consent-blocker > div { max-width: 520px; padding: 26px; border-radius: 0; background: rgba(32, 33, 31, 0.82); }
.map-consent-blocker strong { display: block; margin-bottom: 10px; font-family: var(--font-heading); font-size: 30px; font-weight: var(--heading-weight); }
.map-consent-blocker p { color: rgba(255, 253, 248, 0.84); line-height: 1.6; }
.map-consent-blocker .button { margin: 6px 8px 0 0; max-width: 100%; white-space: normal; text-align: center; }

@media (max-width: 1040px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid:not(.is-slider) .logo-card { flex-basis: calc((100% - 36px) / 3); }
  .dealer-form, .dealer-layout { grid-template-columns: 1fr; }
  .card-grid.has-floating-layout,
  .gallery-grid.has-floating-layout {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: clamp(16px, 3vw, 24px);
    aspect-ratio: auto;
  }
  .has-floating-layout > .cms-floating-item {
    position: static;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
  }
  .has-floating-layout > .cms-floating-item.is-hidden-mobile {
    display: none;
  }
  .has-floating-layout > .cms-floating-item:is(.headline, .kicker, .text-left) {
    overflow-wrap: anywhere;
  }
  .has-floating-layout > .cms-floating-item.kicker .section-kicker {
    font-size: var(--cms-item-font-size-mobile, var(--font-size-kicker-mobile, var(--font-size-kicker, 12px)));
  }
  .has-floating-layout > .cms-floating-item.text-left .free-area-text-content {
    font-size: var(--cms-item-font-size-mobile, var(--font-size-body-mobile, var(--font-size-body, 20px)));
  }
}

@media (max-width: 860px) {
  .suggestion-slider-shell { --suggestion-visible: 2; }
  .suggestion-slider-shell.gallery-slider-shell { --suggestion-visible: var(--gallery-slider-visible-tablet, 2); }
  .content-teaser-inner { grid-template-columns: minmax(0, 1fr); }
  .content-teaser-inner.image-right .content-teaser-media,
  .content-teaser-inner.image-right .content-teaser-copy { order: initial; }
  .content-teaser-media { min-height: 0; aspect-ratio: 16 / 10; }
  .dealer-quick-search-form { width: 100%; grid-template-columns: minmax(0, 1fr) 54px 54px; }
  .dealer-quick-search-form > input[type="search"],
  .dealer-quick-submit,
  .dealer-quick-location { min-height: 50px; }
  .color-sample-grid {
    grid-template-columns: repeat(var(--color-sample-mobile-columns, 2), minmax(0, 1fr));
  }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% - 4px); left: 18px; right: 18px; display: none; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; gap: 8px; }
  .main-nav a, .main-nav a.highlight { width: 100%; justify-content: flex-start; padding: 0 12px; }
  .card-grid, .gallery-grid,
  .card-grid[data-layout],
  .gallery-grid[data-layout] { grid-template-columns: repeat(var(--cms-mobile-columns, 1), minmax(0, 1fr)); grid-template-rows: none; min-height: 0; }
  .card-grid.has-layout-rows,
  .gallery-grid.has-layout-rows { gap: 18px; }
  .cms-layout-row { display: contents; }
  .card-grid.has-floating-layout,
  .gallery-grid.has-floating-layout {
    display: grid;
    min-height: 0;
    aspect-ratio: auto;
    gap: 18px;
  }
  .has-floating-layout > .cms-floating-item {
    position: static;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
  }
  .card-grid > *,
  .gallery-grid > * { grid-column: auto; }
  .product-grid { grid-template-columns: repeat(var(--program-grid-mobile-columns, 1), minmax(0, 1fr)); }
  .self-programs-grid { grid-template-columns: repeat(var(--self-program-columns-mobile, 2), minmax(0, 1fr)); }
  .self-program-card-media { padding: 34px 10px 10px; }
  .self-program-card-title { top: 11px; left: 12px; font-size: clamp(13px, 3.5vw, 17px); }
  .self-program-detail-shell { gap: 28px; }
  .self-program-detail-content { grid-template-columns: 1fr; gap: 24px; }
  .self-program-detail-main { min-height: min(84vw, 460px); }
  .self-program-detail-pdf { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .self-program-detail-pdf-icon { width: 28px; height: 36px; }
  .self-program-detail-pdf-thumbnail { width: 34px; height: 34px; }
  .self-program-detail-pdf strong { grid-column: 2; width: fit-content; }
  .self-program-detail-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .content-card.image-left, .content-card.image-right { grid-template-columns: 1fr; }
  .content-card.image-right .item-image, .content-card.image-right div { order: initial; }
  .item-image[style*="--item-image-aspect: auto"],
  .preview-item-image[style*="--item-image-aspect: auto"] { height: var(--item-image-height-mobile); }
  .tiles-grid,
  .flexible-tiles-grid { width: min(var(--content-width), calc(100% - 36px)); grid-template-columns: 1fr; gap: 18px; }
  .tiles-grid { display: grid; }
  .tiles-grid > .tiles-item {
    min-height: 280px;
    flex-basis: auto;
    contain: none;
    aspect-ratio: auto;
  }
  .tiles-grid > .tiles-item.is-text:not(.is-certificates):not(.is-background-only) {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .tiles-grid > .tiles-item.is-background-only { display: none; }
  .flexible-tiles-grid { zoom: 1; }
  .flexible-tiles-row { grid-template-columns: 1fr; grid-auto-rows: var(--flexible-tile-height-mobile, 260px); gap: 18px; }
  .image-text-tiles-grid { grid-template-columns: 1fr; }
  .image-text-tile-media[style*="--item-image-aspect: auto"] { height: var(--item-image-height-mobile, 380px); }
  .image-text-tile-copy {
    left: 20px;
    bottom: 20px;
    width: min(330px, calc(100% - 40px));
  }
  .image-collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .image-collection-item,
  .image-collection-item:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .three-tiles-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
  }
  .three-tiles-grid.height-fixed { grid-template-rows: none; }
  .three-tiles-item,
  .three-tiles-item-3,
  .three-tiles-grid.layout-2-1 .three-tiles-item-1,
  .three-tiles-grid.layout-2-1 .three-tiles-item-2,
  .three-tiles-grid.layout-2-1 .three-tiles-item-3 {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .three-tiles-grid.height-square .three-tiles-item-3 { contain: none; }
  .three-tiles-item.is-background-only { display: none; }
  .tiles-item,
  .tiles-item-1,
  .tiles-item-4 { grid-column: auto; }
  .tiles-item { min-height: 280px; }
  .tiles-copy { padding: min(var(--tile-padding, 60px), 34px); }
  .tiles-certificates img { width: auto; max-width: 100%; height: auto; object-fit: initial; }
  .site-header { padding-top: var(--site-header-padding-y-mobile, 14px); padding-bottom: var(--site-header-padding-y-mobile, 14px); }
  .site-header.is-scrolled {
    padding-top: var(--site-header-padding-y-mobile, 14px);
    padding-bottom: var(--site-header-padding-y-mobile, 14px);
  }
  .brand img { width: var(--site-logo-width-mobile, 132px); max-width: 44vw; }
  .site-header.is-scrolled .brand img {
    width: var(--site-logo-width-mobile, 132px);
  }
  .section.header-section,
  .section.header-media-full.header-section { padding-top: 0; }
  .header-cell { min-height: 0; }
  .header-section .header-media { width: 100%; max-width: none; }
  .header-media[style*="--image-height-mode: fixed"] { height: var(--image-height-mobile); }
  .header-directory-slider[style*="--image-height-mode: fixed"] .header-directory-slider-media { height: var(--image-height-mobile); }
  .header-directory-slider-copy { width: min(360px, calc(100% - 36px)); }
  .header-directory-slider-copy-link { padding: 20px; }
  .header-directory-slider-copy.is-linked .header-directory-slider-copy-link { padding-right: 54px; }
  .header-directory-slider-copy strong { font-size: clamp(24px, 7vw, 34px); }
  .header-directory-slider.content-left-top .header-directory-slider-copy,
  .header-directory-slider.content-right-top .header-directory-slider-copy { top: 18px; right: auto; left: 18px; }
  .header-directory-slider.content-left-bottom .header-directory-slider-copy,
  .header-directory-slider.content-right-bottom .header-directory-slider-copy { right: auto; bottom: 62px; left: 18px; }
  .header-directory-slider.navigation-names.content-left-bottom .header-directory-slider-copy,
  .header-directory-slider.navigation-names.content-right-bottom .header-directory-slider-copy { bottom: 62px; }
  .header-directory-slider.navigation-names .header-directory-slider-navigation {
    right: auto;
    bottom: 18px;
    left: 50%;
    display: flex;
    gap: 10px;
    overflow: visible;
    transform: translateX(-50%);
  }
  .header-directory-slider.navigation-names .header-directory-slider-control {
    flex: none;
    width: 13px;
    min-width: 0;
    height: 13px;
    min-height: 0;
    padding: 0;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: rgba(31, 32, 29, 0.42);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.24);
  }
  .header-directory-slider.navigation-names .header-directory-slider-control.is-active {
    border-color: var(--brand);
    background: var(--brand);
  }
  .header-directory-slider.navigation-names .header-directory-slider-control span { display: none; }
  .header-directory-slider.navigation-thumbnails .header-directory-slider-navigation {
    left: auto;
    transform: none;
  }
  .header-directory-slider.navigation-thumbnails .header-directory-slider-control {
    flex-basis: 112px;
    width: 112px;
  }
  .header-section .header-media img,
  .header-section.header-image-fixed .header-media img { width: 100%; max-width: 100%; height: auto; object-fit: contain; }
  .header-media-full .header-media { min-height: 0; }
  .header-media-full .header-media img { height: auto; }
  .header-media-full.header-text-overlay .header-cell { max-height: none; }
  .header-media-full.header-text-overlay .header-media { min-height: 0; }
  .header-media-content.header-text-overlay .header-media { min-height: 0; }
  .header-media-content.header-text-overlay .header-media img { height: auto; }
  .header-text-overlay .header-cell { max-height: none; grid-template-rows: auto auto; overflow: visible; }
  .header-text-overlay .header-media { grid-row: auto; }
  .header-text-overlay .header-copy { position: static; width: 100%; max-height: none; color: var(--ink); transform: none; overflow: visible; }
  .header-text-overlay.header-text-box-gray .header-copy,
  .header-text-overlay.header-text-box-brand .header-copy { padding: 22px; background: var(--white); }
  .header-text-overlay.header-text-box-custom .header-copy { padding: 22px; }
  .header-text-overlay.header-text-box-white .header-copy { padding: 22px; background: rgba(255, 255, 255, 0.5); }
  .header-text-overlay .header-copy h1,
  .header-text-overlay .header-copy h2,
  .header-text-overlay .header-copy h3,
  .header-text-overlay .header-copy h4,
  .header-text-overlay .header-copy h5,
  .header-text-overlay .header-copy .lead,
  .header-text-overlay .header-copy p { color: var(--ink); }
  .header-text-overlay .header-copy .section-kicker,
  .header-text-overlay .header-copy .eyebrow { color: var(--eyebrow-color, var(--brand)); }
  .header-text-overlay.header-text-box-gray .header-copy h1,
  .header-text-overlay.header-text-box-brand .header-copy h1 { font-size: clamp(34px, 10vw, 52px); }
  .header-text-overlay.header-text-box-gray .header-copy h2,
  .header-text-overlay.header-text-box-brand .header-copy h2 { font-size: clamp(26px, 8vw, 40px); }
  .header-section .header-media[style*="--image-height-mode: fixed"] img { height: 100%; object-fit: cover; }
  .header-section.header-image-fixed .header-media[style*="--image-height-mode: fixed"] img { object-fit: contain; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .site-footer-inner.has-compact-footer-menu .footer-menu-block,
  .site-footer-inner.has-compact-footer-menu.has-footer-details .footer-menu-block { grid-column: auto; grid-row: auto; display: flex; flex-direction: column; align-items: stretch; }
  .site-footer-inner.has-compact-footer-menu .footer-links,
  .site-footer-inner.has-compact-footer-menu .footer-copyright { grid-column: auto; grid-row: auto; text-align: left; }
  .site-footer-inner.has-compact-footer-menu .footer-copyright { margin-top: 36px; }
  .footer-menu-block { text-align: left; }
  .footer-links ul { justify-content: flex-start; }
  .footer-contact-block { width: 100%; justify-self: start; }
  .footer-logo { justify-content: flex-start; }
  .footer-logo img { max-height: 36px; }
}

@media (hover: none) {
  .program-square-card-overlay {
    justify-content: flex-end;
    padding-top: 35%;
    opacity: 1;
  }
  .program-square-card-overlay::before {
    background: linear-gradient(transparent 20%, var(--program-hover-bg, var(--brand)) 78%);
  }
}

@media (max-width: 620px) {
  .suggestion-slider-shell { --suggestion-visible: 1; }
  .suggestion-slider-shell.gallery-slider-shell { --suggestion-visible: 1; }
  .actions .button, .dealer-form .button { width: 100%; }
  .logo-grid { grid-template-columns: 1fr; }
  .logo-grid:not(.is-slider) .logo-card { flex-basis: 100%; }
  .gallery-image { width: 100%; }
  .tiles-item { min-height: 230px; }
  .tiles-grid > .tiles-item { min-height: 230px; }
  .flexible-tiles-row { grid-auto-rows: var(--flexible-tile-height-mobile, 260px); }
  .tiles-copy { padding: min(var(--tile-padding, 60px), 26px); }
  .header-media-full .header-media { min-height: 0; }
  .header-media-full .header-media img { height: auto; }
  .header-media-full.header-text-overlay .header-cell { max-height: none; }
  .header-media-full.header-text-overlay .header-media { min-height: 0; }
  .header-media-content.header-text-overlay .header-media { min-height: 0; }
  .header-media-content.header-text-overlay .header-media img { height: auto; }
  .header-section .header-media[style*="--image-height-mode: fixed"] img { height: 100%; object-fit: cover; }
  .header-section.header-image-fixed .header-media[style*="--image-height-mode: fixed"] img { object-fit: contain; }
  .header-text-overlay.header-text-box-gray .header-copy,
  .header-text-overlay.header-text-box-brand .header-copy { padding: 18px; }
  .header-text-overlay.header-text-box-custom .header-copy { padding: 18px; }
  .header-text-overlay.header-text-box-white .header-copy { padding: 18px; }
  .header-text-overlay .header-copy h1,
  .header-text-overlay .header-copy h2 { margin-bottom: 10px; }
  .header-text-overlay .header-copy .lead { font-size: 16px; line-height: 1.45; }
  .map-card iframe,
  .map-card .map-consent-blocker { height: 100%; min-height: 0; }
  .cookie-banner {
    --cookie-graphic-size: 60px;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 16px;
    padding: 44px 18px 18px;
  }
  .cookie-banner strong, .cookie-option strong { font-size: 21px; }
  .cookie-banner > .cookie-actions { grid-template-columns: 1fr; }
  .cookie-actions, .cookie-actions .button { width: 100%; }
  .cookie-modal { padding: 10px; }
  .cookie-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 24px 18px 18px;
  }
  .cookie-dialog h2 { padding-right: 38px; }
  .cookie-dialog > .cookie-actions { flex-direction: column; }
  .cookie-option { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding: 15px; }
}

@media (max-width: 900px) {
  .program-detail-intro,
  .article-detail.section { grid-template-columns: 1fr; }
  .program-detail-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .program-content-slides { min-height: clamp(300px, 65vw, 560px); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-journal { padding: 32px 0 0; border-left: 0; border-top: 2px solid var(--brand); }
}

@media (max-width: 600px) {
  .program-detail .section,
  .article-detail.section { width: min(var(--content-width), calc(100% - 24px)); }
  .program-detail-main { aspect-ratio: 4 / 3; }
  .article-grid { grid-template-columns: 1fr; }
}

/* Social-Media-Kanäle */
.social-share-section {
  padding: 36px 0;
  color: var(--ink);
  background: transparent;
}

.social-share-inner {
  width: min(var(--content-width), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.social-share-align-right .social-share-inner { text-align: right; }
.social-share-align-right .social-share-links { justify-content: flex-end; }

.social-share-inner h2 {
  margin: 0 0 12px;
  font-family: var(--font-body, var(--font-text));
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.social-share-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.social-share-links a {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.social-share-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 620px) {
  .social-share-section { padding: 30px 0; }
  .social-share-inner { width: min(var(--content-width), calc(100% - 24px)); }
  .social-share-links a { width: 22px; height: 22px; }
}
