/*
Theme Name: Hörakustik Leitert
Author: Hörakustik Leitert
Description: Custom theme for the local Hörakustik Leitert WordPress rebuild.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
Text Domain: leitert
*/

:root {
  --leitert-green: #8bad00;
  --leitert-green-dark: #6f8c00;
  --leitert-green-brand: #8bad00;
  --leitert-green-soft: #f6f8ee;
  --leitert-yellow-line: #f2c230;
  --leitert-yellow-subtle: rgba(242, 194, 48, 0.42);
  --leitert-focus: #4f6500;
  --leitert-card-border: rgba(139, 173, 0, 0.36);
  --leitert-card-border-strong: rgba(139, 173, 0, 0.62);
  --leitert-soft-gradient: linear-gradient(180deg, rgba(246, 248, 238, 0.98) 0%, rgba(246, 248, 238, 0.74) 58%, #ffffff 100%);
  --leitert-ink: #202020;
  --leitert-muted: #626262;
  --leitert-grey: #70706e;
  --leitert-line: #e8e8df;
  --leitert-white: #ffffff;
  --leitert-shadow: 0 18px 54px rgba(28, 31, 24, 0.08);
  --leitert-page-pad: clamp(22px, 5vw, 72px);
  --leitert-section-pad: clamp(54px, 7vw, 92px);
  --leitert-radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--leitert-white);
  color: var(--leitert-ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  top: 14px;
  left: 14px;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 18px;
  border: 3px solid var(--leitert-focus);
  border-radius: var(--leitert-radius);
  background: var(--leitert-white);
  color: var(--leitert-ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.site-main:focus {
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--leitert-grey);
  color: var(--leitert-white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 14px var(--leitert-page-pad);
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.site-brand__name {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.site-brand__claim {
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.86;
}

.site-brand__logo {
  width: clamp(190px, 22vw, 280px);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
}

.site-nav__desktop-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.site-nav__desktop-links a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.site-nav__desktop-links a:hover,
.site-nav__desktop-links a:focus,
.site-nav__desktop-links a.is-active,
.site-nav__desktop-links a[aria-current="page"] {
  color: var(--leitert-green);
}

.site-nav__desktop-links a.is-active,
.site-nav__desktop-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.site-nav__links {
  position: absolute;
  top: calc(100% + 1px);
  right: var(--leitert-page-pad);
  display: none;
  width: min(380px, calc(100vw - (var(--leitert-page-pad) * 2)));
  max-height: calc(100vh - 118px);
  gap: 4px;
  margin: 0;
  padding: 14px;
  overflow-y: auto;
  list-style: none;
  background: var(--leitert-grey);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--leitert-radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  z-index: 60;
}

.site-nav.is-open .site-nav__links {
  display: grid;
}

.site-nav__links a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--leitert-radius);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--leitert-green);
  cursor: pointer;
}

.site-nav__menu-cta {
  display: none;
}

.site-nav__toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-nav.is-open .site-nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-nav.is-open .site-nav__toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.button,
.site-nav__cta,
.hero-actions a,
.appointment-box a,
.reviews-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--leitert-radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-nav__cta,
.button--primary,
.hero-actions .button--primary,
.appointment-box .button--primary {
  background: var(--leitert-green);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(139, 173, 0, 0.25);
}

.button--secondary,
.hero-actions .button--secondary,
.reviews-action .button--secondary {
  background: #ffffff;
  color: var(--leitert-green-dark);
  border-color: #cad9a4;
}

.button:hover,
.site-nav__cta:hover,
.hero-actions a:hover,
.appointment-box a:hover,
.reviews-action a:hover {
  transform: translateY(-2px);
}

.button svg,
.site-nav__cta svg,
.hero-actions a svg,
.appointment-box a svg,
.reviews-action a svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-main {
  overflow: hidden;
}

.hero {
  background: #ffffff;
  padding: clamp(42px, 6vw, 76px) var(--leitert-page-pad) clamp(46px, 6vw, 84px);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leitert-green);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 10px;
  color: var(--leitert-muted);
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: 0;
}

.hero h2 {
  margin: 0 0 20px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.22;
  font-weight: 400;
}

.hero__intro {
  max-width: 650px;
  margin: 0 0 30px;
  color: #222222;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: grid;
  width: min(100%, 650px);
  gap: 14px;
}

.hero-actions .button {
  width: 100%;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 28px;
}

.trust-chip {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #262626;
  font-size: 13px;
  line-height: 1.4;
}

.trust-chip svg,
.contact-card svg,
.service-card svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__image {
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: var(--leitert-green-soft);
  box-shadow: var(--leitert-shadow);
}

.hero__image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.hero__caption {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px 20px;
  background: #ffffff;
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.hero__caption-person {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--leitert-muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero__caption-person strong {
  color: var(--leitert-green-dark);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.2;
}

.hero__caption-person:nth-child(2) {
  justify-items: end;
  text-align: right;
}

.quick-contact {
  display: none;
}

.contact-strip {
  padding: 30px var(--leitert-page-pad);
  border-top: 1px solid var(--leitert-line);
  border-bottom: 1px solid var(--leitert-line);
  background: #ffffff;
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 46px);
}

.contact-card {
  display: flex;
  gap: 14px;
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-card p {
  margin: 0;
  color: #353535;
  font-size: 14px;
  line-height: 1.55;
}

.contact-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: var(--leitert-section-pad) var(--leitert-page-pad);
  border-top: 1px solid var(--leitert-line);
}

.section--soft {
  background:
    var(--leitert-soft-gradient),
    var(--leitert-green-soft);
}

.section--white {
  background: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.section h2,
.section-heading h2 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 350;
}

.section p {
  margin: 0 0 17px;
}

.section .eyebrow,
.person-section .eyebrow,
.page-hero .eyebrow {
  color: var(--leitert-green);
}

.page-hero {
  padding: clamp(58px, 8vw, 112px) var(--leitert-page-pad) clamp(42px, 5vw, 70px);
  background: #ffffff;
}

.page-hero__inner {
  max-width: 940px;
}

.page-hero--full-inner .page-hero__inner {
  max-width: none;
  width: 100%;
}

.page-hero--split .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  max-width: none;
}

.page-hero h1 {
  margin: 0 0 20px;
  color: var(--leitert-muted);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.12;
  font-weight: 350;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #242424;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.8;
}

.page-hero__inner p:not(.eyebrow) {
  max-width: none;
  width: 100%;
}

.page-hero:not(.page-hero--split) .page-hero__inner,
.page-hero:not(.page-hero--split) h1,
.page-hero:not(.page-hero--split) p:not(.eyebrow) {
  width: 100%;
  max-width: none;
}

.page-hero p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 14px;
}

.page-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: var(--leitert-green-soft);
  box-shadow: var(--leitert-shadow);
}

.page-hero__image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.highlight-box,
.appointment-box,
.reviews-widget {
  background: #ffffff;
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
  padding: clamp(26px, 3vw, 42px);
}

.appointment-box {
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.highlight-box h2,
.appointment-box h3 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section--full-heading .section-heading {
  max-width: none;
  width: 100%;
}

.section-heading p {
  color: #2f2f2f;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.service-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: inset 3px 0 0 var(--leitert-yellow-subtle);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: inset 3px 0 0 var(--leitert-yellow-subtle), 0 18px 46px rgba(28, 31, 24, 0.1);
}

.service-card h3 {
  margin: 18px 0 10px;
  color: var(--leitert-green);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}

.service-card p {
  color: #252525;
  font-size: 14px;
}

.service-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.home-services-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 68px);
}

.home-feature-row {
  display: grid;
  gap: 0;
}

.home-feature-module {
  display: grid;
  grid-template-columns: minmax(52px, 0.12fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(30px, 4.6vw, 56px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.home-feature-module:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-feature-module__icon {
  display: flex;
  justify-content: flex-start;
  padding-top: 8px;
}

.home-feature-module__icon svg {
  width: 44px;
  height: 44px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-feature-module__icon .leitert-hdo-hoersystem-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0;
  object-fit: contain;
  color: var(--leitert-green);
}

.home-feature-module__icon .leitert-hdo-hoersystem-icon svg,
.leistungen-page .service-feature-module__icon .leitert-hdo-hoersystem-icon svg,
.leistungen-page .service-card-light--hearing-optimization .service-card-light__icon .leitert-hdo-hoersystem-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.home-feature-module h3 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--leitert-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 350;
}

.home-feature-module p {
  max-width: 740px;
  color: #252525;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.76;
}

.home-feature-module a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--leitert-yellow-subtle);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.home-feature-module a:hover,
.home-feature-module a:focus {
  color: var(--leitert-green);
  text-decoration-color: currentColor;
}

.home-feature-module a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.seo-topic-card {
  display: block;
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.seo-topic-card:hover,
.seo-topic-card:focus {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #d7e2b9;
  box-shadow: 0 18px 46px rgba(28, 31, 24, 0.1);
}

.seo-topic-card svg {
  width: 34px;
  height: 34px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-topic-card h3 {
  margin: 18px 0 10px;
  color: var(--leitert-green);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.seo-topic-card p {
  margin: 0 0 18px;
  color: #252525;
  font-size: 15px;
  line-height: 1.72;
}

.seo-topic-card span {
  color: var(--leitert-green-dark);
  font-weight: 800;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.service-detail-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.service-detail-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: #ffffff;
  box-shadow: var(--leitert-shadow);
}

.service-detail-card__media {
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: var(--leitert-green-soft);
}

.service-detail-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail-card svg {
  width: 36px;
  height: 36px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-card h3 {
  margin: 18px 0 10px;
  color: var(--leitert-green);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
  font-weight: 500;
}

.service-detail-card p {
  margin: 0 0 14px;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.service-detail-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.leistungen-page .page-hero--editorial {
  padding-bottom: clamp(58px, 7vw, 96px);
}

.leistungen-page .services-hero .page-hero__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: end;
}

.leistungen-page .services-hero__content {
  max-width: 790px;
}

.leistungen-page .services-hero__image {
  justify-self: end;
  width: 81%;
  max-width: 81%;
  margin-left: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.leistungen-page .services-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.leistungen-page .editorial-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.leistungen-page .editorial-lead {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.leistungen-page .editorial-lead--narrow {
  max-width: 760px;
}

.leistungen-page .editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.82;
}

.leistungen-page .service-feature-row {
  display: grid;
  gap: 0;
}

.leistungen-page .service-feature-module {
  display: grid;
  grid-template-columns: minmax(52px, 0.12fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(32px, 5vw, 62px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.leistungen-page .service-feature-module:first-child {
  padding-top: 0;
  border-top: 0;
}

.leistungen-page .service-feature-module__icon {
  display: flex;
  justify-content: flex-start;
  padding-top: 8px;
  color: var(--leitert-green);
}

.leistungen-page .service-feature-module__icon svg {
  width: 44px;
  height: 44px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistungen-page .service-feature-module__icon .leitert-hdo-hoersystem-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
  color: var(--leitert-green);
}

.leistungen-page .service-feature-module__icon .leitert-hdo-hoersystem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leistungen-page .service-feature-module__content {
  max-width: 920px;
}

.leistungen-page .service-feature-module--with-image .service-feature-module__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(182px, 266px);
  column-gap: clamp(72px, 8vw, 132px);
  align-items: center;
  min-width: 0;
}

.leistungen-page .service-feature-module--with-image .service-feature-module__image {
  justify-self: end;
  align-self: center;
  width: 266px;
  max-width: 266px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 clamp(60px, 7vw, 150px) 0 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.leistungen-page .service-feature-module--with-image .service-feature-module__image img {
  display: block;
  width: 100%;
  max-width: 266px;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.leistungen-page .service-feature-module h3 {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--leitert-ink);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.12;
  font-weight: 350;
}

.leistungen-page .service-feature-module p {
  max-width: 780px;
}

.leistungen-page .service-feature-module__intro {
  color: #242424;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
}

.leistungen-page .service-feature-module__note {
  max-width: 720px;
  margin: clamp(20px, 3vw, 30px) 0 0;
  padding: 0 0 0 clamp(16px, 2vw, 22px);
  border-left: 2px solid rgba(139, 173, 0, 0.52);
}

.leistungen-page .service-feature-module__note strong,
.leistungen-page .service-card-light__note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--leitert-green-dark);
  font-size: 15px;
  line-height: 1.35;
}

.leistungen-page .service-card-light__note strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.leistungen-page .service-card-light__note strong::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--leitert-yellow-subtle);
}

.leistungen-page .service-feature-module__note p,
.leistungen-page .service-card-light__note p {
  margin: 0;
  color: #303030;
  font-size: 15px;
  line-height: 1.72;
}

.leistungen-page .service-feature-module__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: clamp(20px, 3vw, 30px);
}

.leistungen-page .service-feature-module__links a,
.leistungen-page .service-card-light > a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--leitert-yellow-subtle);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.leistungen-page .service-card-light > a {
  margin-top: auto;
}

.leistungen-page .service-feature-module__links a:hover,
.leistungen-page .service-feature-module__links a:focus,
.leistungen-page .service-card-light > a:hover,
.leistungen-page .service-card-light > a:focus {
  color: var(--leitert-green);
  text-decoration-color: currentColor;
}

.leistungen-page .service-feature-module__links a:focus-visible,
.leistungen-page .service-card-light > a:focus-visible,
.leistungen-page .editorial-cta .button:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.leistungen-page .services-light-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.leistungen-page .service-card-light {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.leistungen-page .service-card-light:hover,
.leistungen-page .service-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
  transform: translateY(-2px);
}

.leistungen-page .service-card-light__icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.leistungen-page .service-card-light__icon svg {
  width: 34px;
  height: 34px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistungen-page .service-card-light--hearing-optimization .service-card-light__icon .leitert-hdo-hoersystem-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--leitert-green);
}

.leistungen-page .service-card-light--hearing-optimization .service-card-light__icon .leitert-hdo-hoersystem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leistungen-page .service-card-light h3 {
  margin: 20px 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.24;
  font-weight: 450;
}

.leistungen-page .service-card-light p {
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.leistungen-page .service-card-light__note {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 194, 48, 0.28);
}

.leistungen-page .trust-editorial__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.leistungen-page .trust-editorial__item {
  padding-top: 18px;
  border-top: 2px solid rgba(139, 173, 0, 0.38);
}

.leistungen-page .trust-editorial__item h3 {
  margin: 0 0 10px;
  color: var(--leitert-ink);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.28;
  font-weight: 500;
}

.leistungen-page .trust-editorial__item p {
  color: #303030;
  font-size: 15px;
  line-height: 1.72;
}

.leistungen-page .editorial-cta {
  background: #ffffff;
}

.leistungen-page .editorial-cta__content {
  max-width: 760px;
}

.leistungen-page .editorial-cta h2 {
  color: var(--leitert-ink);
}

.leistungen-page .editorial-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.process-grid h2 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 350;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.06);
}

.process-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leitert-green);
  color: #ffffff;
  font-weight: 800;
}

.process-step strong {
  display: block;
  margin-bottom: 4px;
}

.process-step p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.65;
}

.hearing-page-actions {
  margin-top: 30px;
}

.hearing-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  padding-bottom: 12px;
}

.hearing-type-card-local {
  min-width: 240px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.05);
}

.hearing-type-card-local__image {
  display: grid;
  min-height: 210px;
  margin: 0;
  place-items: center;
  background: #ffffff;
}

.hearing-type-card-local__image img {
  width: 100%;
  height: 210px;
  padding: 20px;
  object-fit: contain;
}

.hearing-type-card-local h3 {
  margin: 18px 20px 10px;
  color: var(--leitert-green);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 500;
}

.hearing-type-card-local p {
  margin: 0 20px 22px;
  color: #252525;
  font-size: 14px;
  line-height: 1.7;
}

.product-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(139, 173, 0, 0.2), rgba(112, 112, 110, 0.08)),
    var(--leitert-green-soft);
  color: var(--leitert-green-dark);
  text-align: center;
  font-weight: 800;
}

.product-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-placeholder--large {
  min-height: 320px;
  border-radius: var(--leitert-radius);
}

.model-grid {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
}

.model-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: center;
  padding: clamp(28px, 3vw, 44px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.model-card__image {
  display: grid;
  min-height: 320px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: #ffffff;
}

.model-card__image img {
  width: 100%;
  height: 320px;
  padding: clamp(20px, 3vw, 34px);
  object-fit: contain;
}

.model-card--alt {
  background: #ffffff;
}

.model-card h3 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.2;
  font-weight: 350;
}

.model-card p {
  margin: 0 0 15px;
  color: #242424;
  font-size: 16px;
  line-height: 1.78;
}

.brand-box {
  max-width: 980px;
  padding: clamp(28px, 3vw, 42px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.hearing-brand-section .brand-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  width: 100%;
  max-width: none;
}

.brand-box__copy {
  max-width: 1120px;
}

.brand-box__actions {
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.brand-box p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.82;
}

.hearing-overview-page .hearing-overview-hero .page-hero__inner,
.hearing-overview-page .section-heading,
.hearing-overview-page .hearing-family-grid,
.hearing-overview-page .hearing-accessory-grid,
.hearing-overview-page .hearing-more-topics__list,
.hearing-overview-page .hearing-overview-cta {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.hearing-overview-page .section-heading {
  max-width: none;
}

.hearing-overview-page .hearing-overview-hero .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 5vw, 84px);
}

.hearing-overview-page .hearing-overview-hero__content {
  justify-self: start;
  text-align: left;
}

.hearing-overview-page .hearing-overview-hero__image {
  justify-self: end;
  align-self: center;
  width: min(100%, 620px);
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hearing-overview-page .hearing-overview-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hearing-overview-page .hearing-more-topics {
  padding-top: clamp(54px, 6vw, 88px);
}

.hearing-overview-page .hearing-more-topics .section-heading {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.hearing-overview-page .hearing-more-topics__list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(34px, 5vw, 70px);
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.hearing-overview-page .hearing-more-topics__link {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px;
  align-items: center;
  min-height: clamp(86px, 8vw, 154px);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 40px);
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(111, 151, 0, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--leitert-green-dark) !important;
  font-size: clamp(22px, 1.75vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transform: none !important;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.hearing-overview-page .hearing-more-topics__link::before {
  content: none !important;
}

.hearing-overview-page .hearing-more-topics__link::after {
  justify-self: end;
  color: var(--leitert-green-dark);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  content: "\2192" !important;
}

.hearing-overview-page .hearing-more-topics__link:hover,
.hearing-overview-page .hearing-more-topics__link:focus {
  background: rgba(111, 151, 0, 0.055) !important;
  border-color: rgba(111, 151, 0, 0.32) !important;
  box-shadow: none !important;
  text-decoration: none;
}

.hearing-overview-page .hearing-more-topics__link:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.hearing-overview-page .hearing-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  margin-top: clamp(28px, 4vw, 46px);
}

.hearing-overview-page .hearing-topic-tile {
  display: flex;
  min-height: 100%;
  padding: clamp(26px, 3vw, 38px);
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hearing-overview-page .hearing-topic-tile:hover,
.hearing-overview-page .hearing-topic-tile:focus {
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 14px 34px rgba(28, 31, 24, 0.07);
  transform: translateY(-2px);
}

.hearing-overview-page .hearing-topic-tile:focus-visible,
.hearing-overview-page .hearing-accessory-card:focus-within {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.hearing-overview-page .hearing-topic-tile h3,
.hearing-overview-page .hearing-accessory-card h3 {
  margin: 0 0 12px;
  color: var(--leitert-green);
}

.hearing-overview-page .hearing-topic-tile p,
.hearing-overview-page .hearing-accessory-card p {
  margin: 0;
  color: var(--leitert-muted);
}

.hearing-overview-page .hearing-topic-tile span {
  display: inline-flex;
  margin-top: 20px;
  color: var(--leitert-green-dark);
  font-weight: 800;
}

.hearing-overview-page .hearing-accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 46px);
}

.hearing-overview-page .hearing-accessory-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.05);
}

.hearing-overview-page .hearing-accessory-card figure {
  display: grid;
  place-items: center;
  min-height: 0;
  height: clamp(190px, 15vw, 230px);
  margin: 0;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(111, 151, 0, 0.055);
}

.hearing-overview-page .hearing-accessory-card img {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 150px;
  object-fit: contain;
}

.hearing-overview-page .hearing-accessory-card > div {
  padding: clamp(22px, 2.2vw, 28px);
}

.hearing-overview-page .hearing-accessory-card:nth-child(1) img,
.hearing-overview-page .hearing-accessory-card:nth-child(3) img {
  max-width: 170px;
  max-height: 138px;
}

.hearing-overview-page .hearing-accessory-card:nth-child(2) img,
.hearing-overview-page .hearing-accessory-card:nth-child(4) img {
  max-width: 205px;
  max-height: 160px;
}

.hearing-overview-page .hearing-overview-cta {
  margin-top: clamp(34px, 5vw, 58px);
}

.paed-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

.paed-gallery__item {
  min-height: 180px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.paed-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.paed-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-box svg {
  width: 38px;
  height: 38px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paed-info-box-local {
  width: 100%;
  margin-bottom: 34px;
}

.paed-info-box-local h3,
.warning-card h3 {
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.28;
  font-weight: 400;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
}

.timeline-item strong {
  color: var(--leitert-green);
  font-size: 18px;
  line-height: 1.35;
}

.timeline-item p {
  margin: 0;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.warning-card {
  width: 100%;
  margin-top: 34px;
  padding: clamp(26px, 3vw, 38px);
  background: #ffffff;
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.warning-card p {
  margin: 0;
  color: #252525;
}

.page-inline-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: var(--leitert-green-soft);
  box-shadow: var(--leitert-shadow);
}

.page-inline-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.practice-preview .section-heading {
  max-width: none;
  width: 100%;
}

.practice-gallery {
  display: flex;
  align-items: start;
  gap: clamp(18px, 2vw, 30px);
  margin-inline: calc(var(--leitert-page-pad) * -1);
  padding-inline: var(--leitert-page-pad);
  padding-bottom: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--leitert-page-pad);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(139, 173, 0, 0.62) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.practice-gallery::-webkit-scrollbar {
  height: 5px;
}

.practice-gallery::-webkit-scrollbar-track {
  margin-inline: var(--leitert-page-pad);
  background: transparent;
  border-radius: 999px;
}

.practice-gallery::-webkit-scrollbar-thumb {
  background: rgba(139, 173, 0, 0.62);
  border-radius: 999px;
}

.practice-gallery--loop {
  overflow: hidden;
  scrollbar-width: none;
}

.practice-gallery--loop::-webkit-scrollbar {
  display: none;
}

.practice-gallery__track {
  display: flex;
  align-items: start;
  gap: clamp(18px, 2vw, 30px);
  width: max-content;
  animation: leitert-practice-gallery-loop 34s linear infinite;
  will-change: transform;
}

.practice-gallery--loop:hover .practice-gallery__track,
.practice-gallery--loop:focus-within .practice-gallery__track {
  animation-play-state: paused;
}

@keyframes leitert-practice-gallery-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(9px, 1vw, 15px)), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .practice-gallery__track {
    animation: none;
  }
}

.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(340px, 31vw, 560px);
  scroll-snap-align: start;
  min-height: 0;
  margin: 0;
  overflow: visible;
  border-radius: var(--leitert-radius);
  background: transparent;
  box-shadow: none;
}

.practice-card--wide {
  grid-row: auto;
  min-height: 0;
}

.practice-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--leitert-radius);
}

.practice-card--exterior img {
  object-position: center 52%;
}

.practice-card--waiting img {
  object-position: center;
}

.practice-card--fitting img {
  object-position: center 48%;
}

.practice-card--entrance img {
  object-position: center;
}

.practice-card--climate img {
  object-position: center 46%;
}

.practice-card figcaption {
  position: static;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--leitert-green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.practice-intro {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.prevention-sign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.prevention-sign-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.05);
}

.prevention-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--leitert-green);
  color: #ffffff;
  font-weight: 800;
}

.prevention-sign-card h3 {
  margin: 0 0 12px;
  color: var(--leitert-green);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 500;
}

.prevention-sign-card p {
  margin: 0 0 14px;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.prevention-sign-card .prevention-tip {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--leitert-line);
  color: #373737;
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.health-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px 18px;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  color: #252525;
  font-weight: 700;
  line-height: 1.35;
}

.health-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.source-note {
  margin: 24px 0 0;
  color: #626262;
  font-size: 13px;
  line-height: 1.55;
}

.dementia-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
  padding: clamp(28px, 4vw, 54px);
  background: #ffffff;
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.dementia-card h2 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 350;
}

.dementia-card p {
  margin: 0 0 16px;
}

.source-note--in-card {
  margin-top: 22px;
}

.prevention-list-box {
  padding: clamp(24px, 3vw, 38px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
}

.prevention-list-box h3 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.25;
  font-weight: 400;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #252525;
  font-weight: 700;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--leitert-green);
  content: "✓";
  font-weight: 900;
}

.online-test-hero-local .page-hero__inner {
  align-items: stretch;
}

.online-test-card {
  align-self: center;
  padding: clamp(28px, 3vw, 42px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.online-test-card h2 {
  margin: 0 0 24px;
  color: var(--leitert-green);
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.2;
  font-weight: 400;
}

.online-requirements {
  display: grid;
  gap: 18px;
}

.online-requirement {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--leitert-line);
}

.online-requirement:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.online-requirement > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--leitert-green);
  color: #ffffff;
  font-weight: 900;
}

.online-requirement strong {
  display: block;
  margin-bottom: 4px;
  color: #202020;
  font-size: 17px;
  line-height: 1.35;
}

.online-requirement p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}

.online-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.online-step-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.05);
}

.online-step-card h3 {
  margin: 0 0 12px;
  color: var(--leitert-green);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.online-step-card p {
  margin: 0;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.legal-page {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 52px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--leitert-green);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  font-weight: 400;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page p {
  margin: 0 0 8px;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.legal-page ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.legal-page li {
  margin: 0 0 4px;
}

.legal-page__stand {
  margin-bottom: 24px;
  color: var(--leitert-muted);
  font-weight: 800;
}

.legal-page a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.legal-page--plain {
  max-width: none;
}

.legal-page__pre {
  margin: 0;
  color: #252525;
  font: inherit;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.editable-content {
  max-width: 980px;
}

.editable-content--seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 0 clamp(28px, 4vw, 64px);
  align-items: start;
  width: 100%;
  max-width: none;
}

.editable-content > * {
  max-width: 820px;
}

.editable-content--seo > * {
  grid-column: 1 / -1;
  max-width: min(860px, 100%);
}

.editable-content--seo .seo-intro {
  grid-column: 1;
  max-width: none;
  margin-bottom: 34px;
}

.editable-content--seo h2 {
  margin-top: 42px;
}

.editable-content--seo h2:first-child {
  margin-top: 0;
}

.editable-content--seo ul,
.editable-content--seo ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.editable-content--seo li {
  margin-bottom: 8px;
}

.editable-content--seo .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.editable-content--seo .wp-block-button__link {
  border-radius: var(--leitert-radius);
  background: var(--leitert-green);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.editable-content--seo .seo-intro {
  color: #242424;
  font-size: 19px;
  line-height: 1.82;
}

.editable-content--seo .seo-content-image {
  grid-column: 2;
  max-width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  background: var(--leitert-green-soft);
  box-shadow: var(--leitert-shadow);
}

.editable-content--seo .seo-content-image img {
  width: 100%;
  max-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  object-fit: contain;
}

.editable-content--seo .seo-content-image figcaption {
  padding: 0 clamp(20px, 4vw, 44px) clamp(18px, 3vw, 28px);
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.55;
}

.editable-content--seo .seo-highlight,
.editable-content--seo .seo-faq,
.editable-content--seo .seo-link-box {
  max-width: none;
  margin: 30px 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-yellow-subtle);
  border-radius: var(--leitert-radius);
}

.editable-content--seo .seo-highlight h2,
.editable-content--seo .seo-highlight h3,
.editable-content--seo .seo-faq h2,
.editable-content--seo .seo-link-box h2 {
  margin-top: 0;
}

.editable-content--seo .seo-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  margin: 28px 0;
}

.editable-content--seo .seo-check-grid > div {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.editable-content--seo .seo-check-grid h3 {
  margin: 0 0 8px;
  color: var(--leitert-green);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.editable-content--seo .seo-check-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.editable-content--seo .seo-link-box ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 0;
}

.editable-content--seo .seo-link-box a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.editable-content > .alignwide {
  max-width: 1180px;
}

.editable-content > .alignfull {
  max-width: none;
  margin-right: calc(-1 * var(--leitert-page-pad));
  margin-left: calc(-1 * var(--leitert-page-pad));
}

.editable-content h2,
.editable-content h3,
.editable-content h4 {
  margin: 34px 0 14px;
  color: var(--leitert-green);
  line-height: 1.25;
  font-weight: 400;
}

.editable-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.editable-content h3 {
  font-size: clamp(23px, 2.3vw, 32px);
}

.editable-content p,
.editable-content li {
  color: #252525;
  font-size: 17px;
  line-height: 1.82;
}

.editable-content a {
  color: var(--leitert-green-dark);
  font-weight: 800;
}

.editable-content img {
  border-radius: var(--leitert-radius);
}

.editable-content .wp-block-image,
.editable-content .wp-block-gallery,
.editable-content .wp-block-columns {
  margin-top: 30px;
  margin-bottom: 30px;
}

.editable-content .wp-block-button__link {
  min-height: 50px;
  padding: 14px 20px;
  background: var(--leitert-green);
  border-radius: var(--leitert-radius);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.contact-hero-card,
.location-card,
.contact-form-card {
  padding: clamp(28px, 3vw, 42px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.contact-hero-card h2,
.location-card h2,
.contact-form-card h3 {
  margin: 0 0 16px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
  font-weight: 400;
}

.contact-hero-card p,
.location-card p,
.contact-form-card p {
  margin: 0 0 16px;
  color: #252525;
}

.contact-hero-card a,
.value-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: stretch;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.map-card iframe[hidden],
[data-external-media][hidden] {
  display: none;
}

.consent-placeholder {
  display: grid;
  height: 100%;
  min-height: 520px;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(139, 173, 0, 0.16), rgba(112, 112, 110, 0.08)),
    var(--leitert-green-soft);
  text-align: center;
}

.consent-placeholder[hidden] {
  display: none;
}

.consent-placeholder > div {
  max-width: 460px;
}

.consent-placeholder svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consent-placeholder h3 {
  margin: 0 0 12px;
  color: var(--leitert-green);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.consent-placeholder p {
  margin: 0 0 22px;
  color: #252525;
}

.location-card {
  background: #ffffff;
}

.parking-box {
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
}

.parking-box h3 {
  margin: 0 0 10px;
  color: var(--leitert-green);
  font-size: 20px;
}

.parking-box ul {
  margin: 0;
  padding-left: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.contact-form-grid h2 {
  margin: 0 0 18px;
  color: var(--leitert-green);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 350;
}

.form-note {
  padding: 16px 18px;
  background: #ffffff;
  border-left: 4px solid var(--leitert-green);
  font-weight: 700;
}

.privacy-note {
  padding: 14px 16px;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  color: #333333;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form-card {
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form p {
  margin: 0;
}

.contact-form__required-note,
.contact-form__hint {
  margin: 0;
  color: var(--leitert-muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-form__required-note {
  font-weight: 700;
}

.contact-form__field {
  display: grid;
  gap: 7px;
}

.contact-form label,
.contact-form__privacy {
  color: #252525;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  color: #202020;
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--leitert-green);
  outline: 3px solid var(--leitert-focus);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #b44120;
  box-shadow: 0 0 0 3px rgba(180, 65, 32, 0.12);
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px 16px;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  font-weight: 500;
}

.contact-form__privacy input {
  margin-top: 4px;
  accent-color: var(--leitert-green);
}

.contact-form__privacy .contact-form__hint {
  grid-column: 2;
}

.contact-form__privacy-link {
  grid-column: 2;
  justify-self: start;
}

.contact-form__privacy a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-form .button {
  width: 100%;
}

.form-message {
  padding: 14px 16px;
  border-radius: var(--leitert-radius);
  font-weight: 800;
  line-height: 1.5;
}

.form-message p,
.form-message ul {
  margin: 0;
}

.form-message ul {
  padding-left: 20px;
}

.form-message:focus {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.form-message--success {
  background: var(--leitert-green-soft);
  border: 1px solid #cad9a4;
  color: var(--leitert-green-dark);
}

.form-message--error {
  background: #fff4f0;
  border: 1px solid #efc4b6;
  color: #8f2f16;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 5vw, 86px);
}

.why-points {
  display: grid;
  gap: 16px;
}

.why-point {
  padding: 22px 24px;
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-yellow-subtle);
}

.why-point strong {
  display: block;
  margin-bottom: 6px;
}

.editorial-section {
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.editorial-lead {
  max-width: 880px;
}

.editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.78;
}

.home-trust-editorial {
  background:
    var(--leitert-soft-gradient),
    var(--leitert-green-soft);
}

.home-trust-editorial .why-grid {
  align-items: start;
}

.home-trust-points {
  gap: clamp(18px, 2vw, 24px);
}

.home-trust-points .why-point {
  padding: 0 0 0 clamp(18px, 2vw, 24px);
  background: transparent;
  border-left: 2px solid rgba(139, 173, 0, 0.45);
  box-shadow: none;
}

.home-trust-points .why-point strong {
  color: var(--leitert-green-dark);
}

.person-section {
  padding: var(--leitert-section-pad) var(--leitert-page-pad);
  border-top: 1px solid var(--leitert-line);
  background: #ffffff;
}

.person-section--soft {
  background:
    var(--leitert-soft-gradient),
    var(--leitert-green-soft);
}

.person-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}

.person-grid--reverse .person-image {
  order: 2;
}

.person-grid--reverse .person-copy {
  order: 1;
}

.person-image {
  margin: 0;
}

.person-image img,
.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(139, 173, 0, 0.18), rgba(112, 112, 110, 0.08)),
    var(--leitert-green-soft);
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-align: center;
}

.person-copy {
  max-width: 780px;
}

.person-copy h2 {
  margin: 0 0 20px;
  color: var(--leitert-green);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 350;
}

.person-copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #242424;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.82;
}

.about-page .about-hero {
  padding-bottom: clamp(54px, 6vw, 86px);
}

.about-page .about-hero .page-hero__inner {
  max-width: min(980px, 100%);
}

.about-page .about-hero h1 {
  max-width: 900px;
}

.about-page .about-hero p:not(.eyebrow) {
  max-width: 760px;
}

.about-page .about-person-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.about-page .about-person-module {
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: min(1280px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin-right: auto;
  margin-left: auto;
}

.about-page .person-grid--reverse.about-person-module {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.36fr);
}

.about-page .about-person-module__image {
  width: 100%;
  max-width: clamp(190px, 18vw, 280px);
}

.about-page .person-grid--reverse .about-person-module__image {
  justify-self: end;
}

.about-page .about-person-module__image img,
.about-page .about-person-module__image .image-placeholder {
  aspect-ratio: 4 / 5;
  border: 0;
  outline: 0;
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.about-page .about-person-module__copy {
  max-width: 850px;
}

.about-page .about-person-module__copy h2 {
  color: var(--leitert-ink);
  font-size: clamp(34px, 4vw, 56px);
}

.about-page .about-person-module__copy p:not(.eyebrow) {
  max-width: 820px;
}

.about-page .about-editorial-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.about-page .about-editorial-section .editorial-lead {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.about-page .about-editorial-section .editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.about-page .about-values-grid {
  gap: clamp(20px, 3vw, 34px);
}

.about-page .about-card-light {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.about-page .about-card-light::before,
.about-page .about-card-light::after {
  content: none;
}

.about-page .about-card-light:hover,
.about-page .about-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
  transform: translateY(-2px);
}

.about-page .about-card-light svg {
  width: 34px;
  height: 34px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .about-card-light h3 {
  margin: 20px 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.24;
  font-weight: 500;
}

.about-page .about-card-light p {
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.about-page .about-editorial-cta .editorial-cta__content {
  max-width: 780px;
}

.about-page .about-editorial-cta h2 {
  color: var(--leitert-ink);
}

.about-page .about-editorial-cta p:not(.eyebrow) {
  max-width: 660px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.about-page .about-editorial-cta__note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 140, 0, 0.16);
}

.about-page .about-editorial-cta__note strong {
  color: var(--leitert-green-dark);
}

.paedakustik-page .paedakustik-hero {
  padding-bottom: clamp(54px, 6.5vw, 90px);
}

.paedakustik-page .paedakustik-hero .page-hero__inner {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
}

.paedakustik-page .paedakustik-hero__content {
  max-width: 790px;
}

.paedakustik-page .paedakustik-hero__image {
  justify-self: end;
  width: min(100%, 440px);
  margin: 0;
  box-shadow: none;
}

.paedakustik-page .paedakustik-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}

.paedakustik-page .editorial-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.paedakustik-page .editorial-lead {
  max-width: 880px;
}

.paedakustik-page .editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.paedakustik-page .paedakustik-editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: start;
  gap: clamp(32px, 6vw, 96px);
  width: 100%;
  max-width: min(1280px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin-right: auto;
  margin-left: auto;
}

.paedakustik-page .paedakustik-care-highlight {
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 34px 0 34px 34px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(139, 181, 0, 0.65);
  border-radius: 0;
  box-shadow: none;
  justify-self: start;
  align-self: start;
}

.paedakustik-page .paedakustik-overview-highlight {
  margin-top: 0;
  justify-self: start;
  align-self: start;
}

.paedakustik-page .paedakustik-care-highlight__icon {
  margin-bottom: 18px;
  color: var(--leitert-green);
}

.paedakustik-page .paedakustik-care-highlight__icon svg {
  width: 36px;
  height: 36px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paedakustik-page .paedakustik-care-highlight h3 {
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.paedakustik-page .paedakustik-care-highlight p {
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.78;
}

.paedakustik-page .paedakustik-guide-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 68px);
}

.paedakustik-page .paedakustik-care-intro {
  display: block;
  max-width: min(1280px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin: 0 auto clamp(34px, 5vw, 68px);
}

.paedakustik-page .paedakustik-guide-section .paedakustik-care-intro__content {
  margin-bottom: 0;
  justify-self: start;
}

.paedakustik-page .paedakustik-guide {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: min(1280px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin-right: auto;
  margin-left: auto;
}

.paedakustik-page .paedakustik-guide__item {
  display: grid;
  grid-template-columns: minmax(48px, 0.1fr) minmax(0, 1fr);
  gap: clamp(18px, 3.4vw, 46px);
  padding: clamp(28px, 4.2vw, 52px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.paedakustik-page .paedakustik-guide__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.paedakustik-page .paedakustik-guide__icon {
  padding-top: 7px;
  color: var(--leitert-green);
}

.paedakustik-page .paedakustik-guide__icon svg {
  width: 42px;
  height: 42px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paedakustik-page .paedakustik-guide__item h3 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--leitert-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 350;
}

.paedakustik-page .paedakustik-guide__item p {
  max-width: 740px;
  margin: 0;
  color: #252525;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.76;
}

.paedakustik-page .paedakustik-development .section-heading {
  margin-bottom: clamp(30px, 4vw, 50px);
}

.paedakustik-page .paedakustik-card-light {
  position: relative;
  width: 100%;
  max-width: min(1120px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin-right: auto;
  margin-left: auto;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.paedakustik-page .paedakustik-card-light::before,
.paedakustik-page .paedakustik-card-light::after {
  content: none;
}

.paedakustik-page .paedakustik-card-light:hover,
.paedakustik-page .paedakustik-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.paedakustik-page .paedakustik-card-light h3 {
  margin: 0 0 14px;
  color: var(--leitert-green-dark);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.24;
  font-weight: 500;
}

.paedakustik-page .paedakustik-card-light p {
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.paedakustik-page .paedakustik-card-light p:last-child {
  margin-bottom: 0;
}

.paedakustik-page .paedakustik-timeline {
  gap: 0;
  width: 100%;
  max-width: min(1120px, calc(100vw - (2 * var(--leitert-page-pad))));
  margin: clamp(28px, 4vw, 46px) auto 0;
}

.paedakustik-page .paedakustik-timeline .timeline-item {
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  padding: clamp(20px, 3vw, 32px) 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
  border-radius: 0;
}

.paedakustik-page .paedakustik-timeline .timeline-item:first-child {
  border-top: 0;
}

.paedakustik-page .paedakustik-timeline .timeline-item strong {
  color: var(--leitert-green-dark);
  font-size: clamp(17px, 1.4vw, 20px);
}

.paedakustik-page .paedakustik-timeline .timeline-item p {
  color: #303030;
  font-size: 15px;
  line-height: 1.75;
}

.paedakustik-page .warning-card {
  margin-top: clamp(28px, 4vw, 46px);
}

.paedakustik-page .paedakustik-editorial-cta {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.92), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.paedakustik-page .paedakustik-editorial-cta .editorial-cta__content {
  max-width: 780px;
}

.paedakustik-page .paedakustik-editorial-cta h2 {
  color: var(--leitert-ink);
}

.paedakustik-page .paedakustik-editorial-cta p:not(.eyebrow) {
  max-width: 660px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.paedakustik-page .paedakustik-editorial-cta__note {
  margin: 22px 0 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 140, 0, 0.16);
}

.paedakustik-page .paedakustik-editorial-cta__note h3 {
  margin: 0 0 8px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.paedakustik-page .paedakustik-editorial-cta__note p {
  margin: 0;
}

.prevention-page .prevention-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.prevention-page .prevention-hero .page-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  align-items: end;
  gap: clamp(34px, 5vw, 82px);
}

.prevention-page .prevention-hero__content {
  max-width: 790px;
}

.prevention-page .prevention-hero h1 {
  max-width: 820px;
}

.prevention-page .prevention-hero p:not(.eyebrow) {
  max-width: 720px;
}

.prevention-page .prevention-hero__image {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  min-height: 420px;
  border-radius: 10px;
  box-shadow: none;
}

.prevention-page .prevention-hero__image img,
.prevention-page .prevention-hero__image .image-placeholder {
  height: 100%;
  min-height: 420px;
  border-radius: 10px;
}

.prevention-page .editorial-section,
.prevention-page .prevention-editorial-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.prevention-page .editorial-lead {
  max-width: 880px;
}

.prevention-page .editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.prevention-page .prevention-sign-guide {
  display: grid;
  gap: 0;
  margin-top: clamp(34px, 5vw, 68px);
}

.prevention-page .prevention-guide__item {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(0, 1fr);
  gap: clamp(18px, 3.4vw, 48px);
  padding: clamp(28px, 4.2vw, 54px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.prevention-page .prevention-guide__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.prevention-page .prevention-number {
  width: auto;
  height: auto;
  margin: 4px 0 0;
  place-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--leitert-green);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
  font-weight: 800;
}

.prevention-page .prevention-guide__item h3 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--leitert-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 350;
}

.prevention-page .prevention-guide__item p {
  max-width: 760px;
  margin: 0 0 14px;
  color: #252525;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.76;
}

.prevention-page .prevention-tip {
  max-width: 680px;
  margin-top: 20px;
  padding: 0 0 0 clamp(16px, 2vw, 22px);
  border-left: 2px solid rgba(139, 173, 0, 0.48);
}

.prevention-page .prevention-tip strong {
  color: var(--leitert-green-dark);
}

.prevention-page .prevention-image-split,
.prevention-page .prevention-editorial-split,
.prevention-page .prevention-recommendation {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.prevention-page .prevention-editorial-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  align-items: start;
}

.prevention-page .prevention-recommendation {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  align-items: start;
}

.prevention-page .prevention-inline-image {
  background: transparent;
  box-shadow: none;
}

.prevention-page .prevention-inline-image img,
.prevention-page .prevention-inline-image .image-placeholder {
  min-height: 360px;
  border-radius: var(--leitert-radius);
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.05);
}

.prevention-page .prevention-advice-note {
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  border-left: 2px solid rgba(139, 173, 0, 0.5);
}

.prevention-page .prevention-advice-note svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prevention-page .prevention-advice-note h2 {
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.prevention-page .prevention-advice-note p {
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.78;
}

.prevention-page .prevention-card-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.prevention-page .prevention-health-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.prevention-page .prevention-card-light {
  position: relative;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.prevention-page .prevention-card-light::before,
.prevention-page .prevention-card-light::after {
  content: none;
}

.prevention-page .prevention-card-light:hover,
.prevention-page .prevention-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.prevention-page .health-item.prevention-card-light {
  min-height: 82px;
  padding: 18px 20px;
  color: #252525;
}

.prevention-page .health-item.prevention-card-light svg {
  color: var(--leitert-green);
}

.prevention-page .health-item.prevention-card-light svg::before,
.prevention-page .health-item.prevention-card-light svg::after {
  content: none;
}

.prevention-page .prevention-list-box.prevention-card-light {
  padding: clamp(28px, 3vw, 42px);
  border-left-width: 1.5px;
}

.prevention-page .prevention-list-box h3 {
  color: var(--leitert-green-dark);
}

.prevention-page .check-list li::before {
  color: var(--leitert-green);
}

.prevention-page .source-note {
  max-width: 760px;
}

.prevention-page .prevention-editorial-cta {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.92), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.prevention-page .prevention-editorial-cta.leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.prevention-page .prevention-editorial-cta .editorial-cta__content {
  max-width: 780px;
}

.prevention-page .prevention-editorial-cta h2 {
  color: var(--leitert-ink);
}

.prevention-page .prevention-editorial-cta p:not(.eyebrow) {
  max-width: 660px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.prevention-page .prevention-editorial-cta__note {
  margin: 22px 0 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 140, 0, 0.16);
}

.prevention-page .prevention-editorial-cta__note h3 {
  margin: 0 0 8px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.prevention-page .prevention-editorial-cta__note p {
  margin: 0;
}

.prevention-page .prevention-editorial-cta .button:focus-visible,
.prevention-page .prevention-list-box a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.prevention-page .prevention-list-box a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-page .contact-info-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.contact-page .contact-info-grid {
  gap: clamp(20px, 3vw, 34px);
}

.contact-page .contact-card-light {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.contact-page .contact-card-light::before,
.contact-page .contact-card-light::after {
  content: none;
}

.contact-page .contact-card-light:hover,
.contact-page .contact-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.contact-page .contact-card-light svg {
  width: 34px;
  height: 34px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-card-light h2,
.contact-page .contact-card-light h3 {
  margin: 20px 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.24;
  font-weight: 500;
}

.contact-page .contact-opening-card,
.contact-page .contact-form-card {
  background: #ffffff;
}

.contact-page .contact-opening-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .contact-opening-card h2,
.contact-page .contact-form-card h3 {
  margin-top: 0;
}

.contact-page .contact-opening-card h2 {
  margin-bottom: clamp(18px, 1.8vw, 24px);
  font-size: clamp(28px, 2.45vw, 36px);
}

.contact-page .contact-card-light.contact-opening-card p {
  margin-bottom: clamp(18px, 1.8vw, 24px);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.contact-page .contact-card-light.contact-opening-card p:last-child {
  margin-bottom: 0;
}

.contact-page .contact-card-light p {
  color: #252525;
  font-size: 15px;
  line-height: 1.75;
}

.contact-page .contact-card-light a,
.contact-page .contact-location-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--leitert-yellow-subtle);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.contact-page .contact-card-light a:hover,
.contact-page .contact-card-light a:focus,
.contact-page .contact-location-card a:hover,
.contact-page .contact-location-card a:focus {
  color: var(--leitert-green);
  text-decoration-color: currentColor;
}

.contact-page .contact-location-card a.button--primary {
  color: #ffffff;
  text-decoration: none;
  text-decoration-color: transparent;
}

.contact-page .contact-location-card a.button--primary:hover,
.contact-page .contact-location-card a.button--primary:focus {
  color: #ffffff;
  background: var(--leitert-green-dark);
  text-decoration: none;
}

.contact-page .contact-card-light a:focus-visible,
.contact-page .contact-location-card a:focus-visible,
.contact-page .contact-editorial-cta .button:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.contact-page .contact-map-section {
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.contact-page .contact-map-grid {
  align-items: center;
}

.contact-page .contact-map-card {
  border: 1.5px solid var(--leitert-card-border);
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.05);
}

.contact-page .consent-placeholder {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.92), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.contact-page .consent-placeholder h3 {
  color: var(--leitert-green-dark);
}

.contact-page .contact-location-card {
  padding: clamp(24px, 3vw, 38px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.contact-page .contact-location-card h2,
.contact-page .contact-message-layout h2 {
  color: var(--leitert-ink);
}

.contact-page .contact-location-card h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 350;
}

.contact-page .parking-box,
.contact-page .form-note {
  padding: 0 0 0 clamp(16px, 2vw, 22px);
  background: transparent;
  border-left: 2px solid rgba(139, 173, 0, 0.48);
}

.contact-page .parking-box {
  margin: 24px 0;
}

.contact-page .parking-box h3 {
  color: var(--leitert-green-dark);
}

.contact-page .contact-message-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.contact-page .form-note {
  display: inline-block;
  margin-top: 18px;
  color: var(--leitert-green-dark);
}

.contact-page .contact-form__privacy {
  background: rgba(246, 248, 238, 0.72);
  border-color: rgba(111, 140, 0, 0.16);
}

.contact-page .contact-editorial-cta {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.92), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.contact-page .contact-editorial-cta .editorial-cta__content {
  max-width: 780px;
}

.contact-page .contact-editorial-cta h2 {
  color: var(--leitert-ink);
}

.contact-page .contact-editorial-cta p:not(.eyebrow) {
  max-width: 680px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.contact-page .contact-editorial-cta .hearing-page-actions {
  margin-top: 28px;
}

.contact-page .contact-editorial-cta.leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.gehoerschutz-page .gehoerschutz-hero {
  min-height: 0;
  padding-top: clamp(64px, 6vw, 96px);
  padding-bottom: clamp(56px, 5vw, 80px);
}

.gehoerschutz-page .editorial-lead,
.gehoerschutz-page .gehoerschutz-process__list {
  width: 100%;
  max-width: none;
}

.gehoerschutz-page .gehoerschutz-hero .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 118px);
  width: 100%;
  max-width: none;
}

.gehoerschutz-page .gehoerschutz-hero__copy {
  width: 100%;
  min-width: 0;
  text-align: left;
}

.gehoerschutz-page .gehoerschutz-hero__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-self: end;
  width: min(100%, 470px);
  gap: clamp(16px, 2vw, 26px);
}

.gehoerschutz-page .gehoerschutz-hero__image {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
}

.gehoerschutz-page .gehoerschutz-hero h1 {
  max-width: 820px;
  color: var(--leitert-muted);
  font-size: clamp(38px, 4.8vw, 64px);
}

.gehoerschutz-page .gehoerschutz-hero p:not(.eyebrow) {
  max-width: none;
  color: #30342e;
}

.gehoerschutz-page .gehoerschutz-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  width: 100%;
  margin-top: clamp(28px, 4vw, 46px);
}

.gehoerschutz-page .gehoerschutz-product-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.gehoerschutz-page .gehoerschutz-product-card:hover,
.gehoerschutz-page .gehoerschutz-product-card:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.gehoerschutz-page .hearing-protection-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 2.5vw, 36px);
  width: 100%;
  margin-top: clamp(32px, 4vw, 52px);
}

.gehoerschutz-page .hearing-protection-product-gallery__item {
  margin: 0;
}

.gehoerschutz-page .hearing-protection-product-gallery__image {
  display: block;
  width: 100%;
  max-width: 170px;
  max-height: 170px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.gehoerschutz-page .hearing-protection-product-gallery__caption {
  margin-top: 12px;
  color: var(--leitert-green-dark);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.gehoerschutz-page .gehoerschutz-product-card h3,
.gehoerschutz-page .gehoerschutz-process__item h3 {
  margin: 0 0 10px;
  color: var(--leitert-green-dark);
}

.gehoerschutz-page .gehoerschutz-product-card p,
.gehoerschutz-page .gehoerschutz-process__item p {
  margin: 0;
  color: #30342e;
  line-height: 1.7;
}

.gehoerschutz-page .gehoerschutz-process__list {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: clamp(26px, 4vw, 42px);
}

.gehoerschutz-page .gehoerschutz-process__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3vw, 30px) 0;
}

.gehoerschutz-page .gehoerschutz-process__item > div {
  padding-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid rgba(111, 151, 0, 0.18);
}

.gehoerschutz-page .gehoerschutz-process__item:first-child > div {
  padding-top: 0;
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.gehoerschutz-page .gehoerschutz-process__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  z-index: -1;
  width: 1px;
  background: rgba(111, 151, 0, 0.22);
  content: "";
}

.gehoerschutz-page .gehoerschutz-process__item:first-child::before {
  top: clamp(22px, 3vw, 30px);
}

.gehoerschutz-page .gehoerschutz-process__item:last-child::before {
  bottom: calc(100% - clamp(22px, 3vw, 30px) - 44px);
}

.gehoerschutz-page .gehoerschutz-process__number {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(111, 151, 0, 0.25);
  border-radius: 50%;
  color: #141414;
  font-weight: 800;
}

.gehoerschutz-page .gehoerschutz-cta .editorial-cta__content {
  border: 0;
  box-shadow: none;
}

.gehoerschutz-page .gehoerschutz-cta .button:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.online-hearing-test-page .online-hearing-test-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.online-hearing-test-page .online-hearing-test-hero .page-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

.online-hearing-test-page .online-hearing-test-hero__content {
  max-width: 800px;
}

.online-hearing-test-page .online-hearing-test-hero h1 {
  max-width: 820px;
}

.online-hearing-test-page .online-hearing-test-hero p:not(.eyebrow) {
  max-width: 730px;
}

.online-hearing-test-page .editorial-section,
.online-hearing-test-page .online-hearing-test-editorial-section {
  border-top-color: rgba(111, 140, 0, 0.14);
}

.online-hearing-test-page .editorial-lead {
  max-width: 880px;
}

.online-hearing-test-page .editorial-lead p:not(.eyebrow) {
  max-width: 760px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.online-hearing-test-page .online-hearing-test-card-light {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.online-hearing-test-page .online-hearing-test-card-light::before,
.online-hearing-test-page .online-hearing-test-card-light::after {
  content: none;
}

.online-hearing-test-page .online-hearing-test-card-light:hover,
.online-hearing-test-page .online-hearing-test-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.online-hearing-test-page .online-hearing-test-requirements {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.online-hearing-test-page .online-hearing-test-requirements h2 {
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: var(--leitert-green-dark);
  font-size: clamp(28px, 2.1vw, 34px);
  line-height: 1.2;
  font-weight: 500;
}

.online-hearing-test-page .online-requirements {
  display: grid;
  gap: 0;
}

.online-hearing-test-page .online-requirement {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding: clamp(18px, 1.7vw, 24px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.online-hearing-test-page .online-requirement:first-child {
  border-top: 0;
}

.online-hearing-test-page .online-requirement:last-child {
  padding-bottom: clamp(18px, 1.7vw, 24px);
}

.online-hearing-test-page .online-requirement > span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--leitert-green);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.online-hearing-test-page .online-requirement > span::before,
.online-hearing-test-page .online-requirement > span::after {
  content: none;
}

.online-hearing-test-page .online-requirement strong {
  display: block;
  color: var(--leitert-green-dark);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.35;
  font-weight: 700;
}

.online-hearing-test-page .online-requirement p {
  margin: 6px 0 0;
  color: #303030;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}

.online-hearing-test-page .online-hearing-test-editorial-split,
.online-hearing-test-page .online-hearing-test-image-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.online-hearing-test-page .online-hearing-test-editorial-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.52fr);
  gap: clamp(34px, 5vw, 82px);
}

.online-hearing-test-page .online-hearing-test-image-split {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
}

.online-hearing-test-page .online-hearing-test-note {
  width: 100%;
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  justify-self: start;
}

.online-hearing-test-page .online-hearing-test-note svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.online-hearing-test-page .online-hearing-test-note h2 {
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.online-hearing-test-page .online-hearing-test-note p {
  margin: 0 0 18px;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.78;
}

.online-hearing-test-page .online-hearing-test-guide-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 68px);
}

.online-hearing-test-page .online-hearing-test-guide {
  display: grid;
  gap: 0;
}

.online-hearing-test-page .online-hearing-test-guide__item {
  display: grid;
  grid-template-columns: minmax(54px, 0.12fr) minmax(0, 1fr);
  gap: clamp(18px, 3.4vw, 48px);
  padding: clamp(28px, 4.2vw, 54px) 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.online-hearing-test-page .online-hearing-test-guide__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.online-hearing-test-page .online-hearing-test-number {
  margin-top: 4px;
  color: var(--leitert-green);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1;
  font-weight: 800;
}

.online-hearing-test-page .online-hearing-test-guide__item h3 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--leitert-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.14;
  font-weight: 350;
}

.online-hearing-test-page .online-hearing-test-guide__item p {
  max-width: 760px;
  margin: 0;
  color: #252525;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.76;
}

.online-hearing-test-page .online-hearing-test-inline-image {
  background: transparent;
  box-shadow: none;
}

.online-hearing-test-page .online-hearing-test-inline-image img,
.online-hearing-test-page .online-hearing-test-inline-image .image-placeholder {
  min-height: 360px;
  border-radius: var(--leitert-radius);
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.05);
}

.online-hearing-test-page .online-hearing-test-editorial-cta {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.92), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.online-hearing-test-page .online-hearing-test-editorial-cta .editorial-cta__content {
  max-width: 780px;
}

.online-hearing-test-page .online-hearing-test-editorial-cta h2 {
  color: var(--leitert-ink);
}

.online-hearing-test-page .online-hearing-test-editorial-cta p:not(.eyebrow) {
  max-width: 680px;
  color: #2f2f2f;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}

.online-hearing-test-page .online-hearing-test-editorial-cta .hearing-page-actions {
  margin-top: 28px;
}

.online-hearing-test-page .online-hearing-test-note .button:focus-visible,
.online-hearing-test-page .online-hearing-test-editorial-cta .button:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.value-card {
  min-height: 100%;
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.value-card svg {
  width: 38px;
  height: 38px;
  color: var(--leitert-green);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 18px 0 10px;
  color: var(--leitert-green);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.value-card p {
  color: #252525;
  font-size: 15px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 34px);
}

.news-card {
  overflow: hidden;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.05);
}

.news-card__media {
  display: block;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
}

.news-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card__placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  gap: 10px;
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-align: center;
}

.news-card__placeholder svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-card__content {
  padding: clamp(22px, 2.2vw, 30px);
}

.instagram-news-section {
  padding-top: clamp(42px, 6vw, 72px);
}

.instagram-feed-shell {
  width: 100%;
}

.instagram-feed-shell #sb_instagram,
.instagram-feed-shell .sbi {
  width: 100% !important;
  padding: 0 !important;
}

.instagram-feed-shell #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px) !important;
  opacity: 1 !important;
}

.instagram-feed-shell .sbi_item {
  width: 100% !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.instagram-feed-shell .sbi_item.leitert-instagram-hidden {
  display: none !important;
}

.instagram-feed-shell .sbi_photo_wrap {
  overflow: hidden;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 14px 38px rgba(28, 31, 24, 0.05);
}

.instagram-feed-shell .sbi_photo {
  aspect-ratio: 1 / 1;
  height: auto !important;
  min-height: 0 !important;
  position: relative;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.instagram-feed-shell .sbi_photo > img {
  display: none !important;
}

.instagram-feed-shell .sbi_photo::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(28, 31, 24, 0), rgba(28, 31, 24, 0.72));
  pointer-events: none;
  z-index: 1;
}

.instagram-feed-shell .sbi_photo .sbi-screenreader {
  position: absolute !important;
  inset: auto 16px 16px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: hidden !important;
  color: #fff;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 700;
  line-height: 1.35 !important;
  min-height: 1.35em !important;
  text-indent: 0 !important;
  white-space: normal !important;
  display: block !important;
  max-height: 2.7em !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.instagram-feed-shell #sbi_load {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 28px !important;
  text-align: center !important;
  flex-wrap: wrap !important;
}

.instagram-feed-shell .sbi_load_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  padding: 14px 28px !important;
  border: 1px solid rgba(139, 173, 0, 0.42) !important;
  border-radius: var(--leitert-radius) !important;
  background: #ffffff !important;
  color: var(--leitert-green-dark) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.instagram-feed-shell .sbi_load_btn[hidden] {
  display: none !important;
}

.instagram-feed-shell .sbi_load_btn:hover,
.instagram-feed-shell .sbi_load_btn:focus {
  border-color: var(--leitert-green) !important;
  background: var(--leitert-green-soft) !important;
  color: var(--leitert-green-dark) !important;
}

.instagram-feed-shell .sbi_follow_btn {
  display: inline-flex !important;
  margin: 0 !important;
}

.instagram-feed-shell .sbi_follow_btn a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  padding: 14px 28px !important;
  border-radius: var(--leitert-radius) !important;
  background: var(--leitert-green) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(139, 173, 0, 0.22) !important;
}

.instagram-feed-shell .sbi_follow_btn a:hover,
.instagram-feed-shell .sbi_follow_btn a:focus {
  background: var(--leitert-green-dark) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .instagram-feed-shell #sbi_images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-feed-shell #sbi_load {
    align-items: stretch !important;
  }

  .instagram-feed-shell .sbi_load_btn,
  .instagram-feed-shell .sbi_follow_btn,
  .instagram-feed-shell .sbi_follow_btn a {
    width: 100% !important;
  }
}

.instagram-feed-setup {
  max-width: 760px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.instagram-feed-setup h2 {
  margin: 0 0 14px;
  color: var(--leitert-green);
}

.news-seo-section {
  border-top: 1px solid rgba(139, 173, 0, 0.14);
}

.news-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.news-seo-card {
  padding: clamp(24px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 10px 28px rgba(28, 31, 24, 0.045);
}

.news-seo-card h3 {
  margin: 0 0 14px;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.news-seo-card p {
  margin: 0 0 18px;
  color: #252525;
  font-size: 15px;
  line-height: 1.78;
}

.news-seo-card a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration-color: var(--leitert-yellow-subtle);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.news-seo-card a:hover,
.news-seo-card a:focus {
  color: var(--leitert-green);
  text-decoration-color: currentColor;
}

.news-card time,
.single-news__meta {
  display: block;
  margin-bottom: 10px;
  color: var(--leitert-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 12px;
  color: var(--leitert-green);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.24;
  font-weight: 500;
}

.news-card h2 a,
.news-card__link {
  color: inherit;
  text-decoration: none;
}

.news-card p {
  margin: 0 0 18px;
  color: #252525;
  font-size: 15px;
  line-height: 1.72;
}

.news-card__link {
  color: var(--leitert-green-dark);
  font-weight: 800;
}

.empty-news {
  max-width: 760px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--leitert-green-soft);
  border-left: 4px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.empty-news h2 {
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 400;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 54px);
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  background: #ffffff;
  color: var(--leitert-green-dark);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.news-pagination .page-numbers.current {
  background: var(--leitert-green);
  color: #ffffff;
  border-color: var(--leitert-green);
}

.single-news__hero {
  padding-bottom: 34px;
}

.single-news__image {
  max-width: min(1040px, calc(100% - (2 * var(--leitert-page-pad))));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--leitert-radius);
  box-shadow: var(--leitert-shadow);
}

.single-news__image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-news__content {
  max-width: 820px;
}

.single-news__content > * {
  max-width: 100%;
}

.single-news__content h2,
.single-news__content h3 {
  margin: 34px 0 14px;
  color: var(--leitert-green);
  line-height: 1.25;
  font-weight: 400;
}

.single-news__content p,
.single-news__content li {
  color: #252525;
  font-size: 17px;
  line-height: 1.82;
}

.single-news__content a {
  color: var(--leitert-green-dark);
  font-weight: 800;
}

.single-news__back {
  margin-top: 36px;
}

.prices-page .prices-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
  background: #ffffff;
}

.prices-page .prices-hero .page-hero__inner {
  max-width: min(1560px, 100%);
}

.prices-page .hearing-prices-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  width: 100%;
}

.prices-page .hearing-prices-hero__content {
  width: 100%;
  min-width: 0;
}

.prices-page .hearing-prices-hero__image {
  width: min(100%, 416px);
  margin: 0;
  justify-self: end;
}

.prices-page .hearing-prices-hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.prices-page .prices-hero h1 {
  max-width: 880px;
}

.prices-page .prices-hero p:not(.eyebrow) {
  max-width: 760px;
}

.prices-page .prices-editorial-section {
  padding: 0;
  border-top: 0;
}

.prices-page .prices-content,
.prices-page .prices-content > * {
  max-width: none;
}

.prices-page .hearing-prices-band {
  width: 100%;
  max-width: none;
  padding-right: var(--leitert-page-pad);
  padding-left: var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.prices-page .hearing-prices-band > * {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.prices-page .hearing-prices-band.leitert-surface--white {
  background: #ffffff;
  background-image: none;
}

.prices-page .hearing-prices-band.leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

.prices-page .prices-editorial-intro {
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(40px, 6vw, 76px);
}

.prices-page .editorial-lead {
  max-width: none;
}

.prices-page .editorial-lead p:not(.eyebrow),
.prices-page .prices-content p {
  max-width: none;
  color: #2f2f2f;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.82;
}

.prices-page .prices-content h2 {
  max-width: none;
  margin: 0 0 16px;
  color: var(--leitert-green-dark);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.12;
  font-weight: 350;
}

.prices-page .prices-guide {
  display: grid;
  gap: clamp(1.25rem, 2.6vw, 2rem);
  margin-top: clamp(30px, 4vw, 52px);
}

.prices-page .prices-guide__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
  align-items: start;
}

.prices-page .prices-guide__item:not(:last-child)::before {
  position: absolute;
  top: 34px;
  bottom: calc(-1 * clamp(1.25rem, 2.6vw, 2rem) - 34px);
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.16), rgba(111, 140, 0, 0.1));
  content: "";
}

.prices-page .prices-guide__item:last-child::before {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, rgba(33, 33, 33, 0.16), rgba(111, 140, 0, 0.1));
  content: "";
}

.prices-page .prices-guide__item > div {
  padding: clamp(1.15rem, 2.5vw, 1.55rem) 0 clamp(1.2rem, 2.5vw, 1.65rem);
  border-bottom: 1px solid rgba(111, 151, 0, 0.16);
}

.prices-page .prices-guide__item:last-child > div {
  border-bottom: 0;
}

.prices-page .prices-guide__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1.5px solid var(--leitert-yellow-subtle);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(28, 31, 24, 0.04);
}

.prices-page .prices-guide__item ul,
.prices-page .prices-test-editorial ul {
  max-width: none;
  margin: 16px 0 22px;
  padding-left: 1.2rem;
}

.prices-page .prices-editorial-block,
.prices-page .prices-summary-section,
.prices-page .prices-class-section,
.prices-page .prices-test-section,
.prices-page .prices-related-section {
  padding: clamp(46px, 6vw, 82px) var(--leitert-page-pad);
}

.prices-page .prices-note {
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 46px);
  padding: 0 0 0 clamp(18px, 2vw, 26px);
  border-left: 2px solid rgba(139, 173, 0, 0.5);
}

.prices-page .prices-note h3 {
  margin: 0 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.24;
  font-weight: 500;
}

.prices-page .prices-note p {
  margin-bottom: 12px;
}

.prices-page .prices-note--quiet {
  margin: clamp(28px, 4vw, 46px) 0 0;
}

.prices-page .prices-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.prices-page .prices-card-grid--classes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prices-page .prices-card-light {
  position: relative;
  min-height: 100%;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.prices-page .prices-card-light:hover,
.prices-page .prices-card-light:focus-within {
  background: #ffffff;
  border-color: var(--leitert-card-border-strong);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.prices-page .prices-card-light h3 {
  margin: 0 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.24;
  font-weight: 500;
}

.prices-page .prices-card-light p {
  margin-bottom: 12px;
  color: #252525;
  font-size: 15px;
  line-height: 1.72;
}

.prices-page .prices-card-light p:last-child {
  margin-bottom: 0;
}

.prices-page .prices-test-editorial {
  max-width: none;
}

.prices-page .prices-editorial-cta {
  margin: 0;
}

.prices-page .prices-editorial-cta .editorial-cta__content {
  max-width: none;
}

.prices-page .prices-editorial-cta .hearing-page-actions {
  margin-top: 28px;
}

.prices-page .prices-related-section h2 {
  margin-bottom: 24px;
}

.prices-page .prices-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.prices-page .prices-related-grid a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  color: var(--leitert-green-dark);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.prices-page .prices-related-grid a:hover,
.prices-page .prices-related-grid a:focus {
  border-color: var(--leitert-card-border-strong);
}

.prices-page .prices-related-grid a::before,
.prices-page .prices-related-grid a::after {
  content: none;
}

.prices-page .prices-editorial-cta .button:focus-visible,
.prices-page .prices-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.hearing-test-page .hearing-test-hero {
  padding-top: clamp(58px, 6.5vw, 96px);
  padding-bottom: clamp(44px, 5vw, 74px);
}

.hearing-test-page .hearing-test-hero .page-hero__inner,
.hearing-test-page .hearing-test-hero h1,
.hearing-test-page .hearing-test-hero p:not(.eyebrow),
.hearing-test-page .hearing-test-content,
.hearing-test-page .editorial-lead,
.hearing-test-page .editorial-lead p:not(.eyebrow) {
  max-width: none;
}

.hearing-test-page .hearing-test-hero h1 {
  max-width: none;
}

.hearing-test-page .hearing-test-hero p:not(.eyebrow) {
  max-width: none;
}

.hearing-test-page .hearing-test-editorial-section {
  padding: 0;
}

.hearing-test-page .hearing-test-content {
  display: block;
}

.hearing-test-page .hearing-test-editorial-intro,
.hearing-test-page .hearing-test-guide-section,
.hearing-test-page .hearing-test-card-section,
.hearing-test-page .hearing-test-editorial-block,
.hearing-test-page .hearing-test-related-section {
  width: 100%;
  max-width: none;
  padding: clamp(46px, 6vw, 82px) var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.hearing-test-page .hearing-test-editorial-intro {
  padding-top: clamp(48px, 6vw, 86px);
}

.hearing-test-page .hearing-test-content h2 {
  max-width: 1100px;
  margin: 0 0 16px;
  color: var(--leitert-green);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.12;
  font-weight: 350;
}

.hearing-test-page .hearing-test-content p,
.hearing-test-page .hearing-test-content li {
  max-width: none;
  color: #2f2f2f;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.82;
}

.hearing-test-page .hearing-test-steps {
  display: grid;
  gap: clamp(20px, 2.6vw, 30px);
  margin-top: clamp(32px, 4.5vw, 58px);
}

.hearing-test-page .hearing-test-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
}

.hearing-test-page .hearing-test-step:not(:last-child)::before {
  position: absolute;
  top: 72px;
  bottom: calc(-1 * clamp(20px, 2.6vw, 30px));
  left: 35px;
  width: 2px;
  background: linear-gradient(180deg, rgba(111, 140, 0, 0.22), rgba(111, 140, 0, 0.06));
  content: "";
}

.hearing-test-page .hearing-test-step__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1.5px solid var(--leitert-yellow-subtle);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(28, 31, 24, 0.04);
}

.hearing-test-page .hearing-test-step__marker span {
  color: #111111;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.hearing-test-page .hearing-test-step__content {
  min-width: 0;
  padding: clamp(22px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.hearing-test-page .hearing-test-step__eyebrow {
  margin: 0 0 10px;
  color: var(--leitert-green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hearing-test-page .hearing-test-step h3 {
  margin: 0 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.22;
  font-weight: 500;
}

.hearing-test-page .hearing-test-step ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hearing-test-page .hearing-test-step li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #333333;
  font-size: 15px;
  line-height: 1.55;
}

.hearing-test-page .hearing-test-step li::before,
.hearing-test-page .hearing-test-bullet-list__item::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--leitert-green);
  content: "";
}

.hearing-test-page .hearing-test-bullet-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: clamp(28px, 4vw, 46px) 0 0;
  padding: 0;
  list-style: none;
}

.hearing-test-page .hearing-test-bullet-list__item {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: clamp(22px, 2.6vw, 30px) clamp(20px, 2.2vw, 26px);
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  font-weight: 650;
}

.hearing-test-page .hearing-test-bullet-list__item::before {
  display: none;
}

.hearing-test-page .hearing-test-editorial-block .editorial-lead {
  max-width: 1040px;
}

.hearing-test-page .hearing-test-editorial-cta {
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding-inline: var(--leitert-page-pad);
}

.hearing-test-page .hearing-test-editorial-cta .editorial-cta__content {
  width: 100%;
  max-width: none;
}

.hearing-test-page .hearing-test-related-section h2 {
  margin-bottom: 24px;
}

.hearing-test-page .hearing-test-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.hearing-test-page .hearing-test-related-grid a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--leitert-card-border);
  border-radius: var(--leitert-radius);
  color: var(--leitert-green-dark);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.hearing-test-page .hearing-test-related-grid a:hover,
.hearing-test-page .hearing-test-related-grid a:focus {
  border-color: var(--leitert-card-border-strong);
  box-shadow: inset 3px 0 0 var(--leitert-yellow-subtle), 0 12px 30px rgba(28, 31, 24, 0.065);
}

.hearing-test-page .hearing-test-related-grid a::before,
.hearing-test-page .hearing-test-related-grid a::after {
  content: none;
}

.hearing-test-page .hearing-test-editorial-cta .button:focus-visible,
.hearing-test-page .hearing-test-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.highlight-box,
.reviews-widget,
.home-card-light,
.seo-topic-card,
.leistungen-page .service-card-light,
.about-page .about-card-light,
.paedakustik-page .paedakustik-card-light,
.prevention-page .prevention-card-light,
.online-hearing-test-page .online-hearing-test-card-light,
.prices-page .prices-card-light,
.prices-page .prices-related-grid a {
  border-color: var(--leitert-card-border);
}

.highlight-box:hover,
.highlight-box:focus-within,
.home-card-light:hover,
.home-card-light:focus-within,
.seo-topic-card:hover,
.seo-topic-card:focus,
.leistungen-page .service-card-light:hover,
.leistungen-page .service-card-light:focus-within,
.about-page .about-card-light:hover,
.about-page .about-card-light:focus-within,
.paedakustik-page .paedakustik-card-light:hover,
.paedakustik-page .paedakustik-card-light:focus-within,
.prevention-page .prevention-card-light:hover,
.prevention-page .prevention-card-light:focus-within,
.online-hearing-test-page .online-hearing-test-card-light:hover,
.online-hearing-test-page .online-hearing-test-card-light:focus-within,
.prices-page .prices-card-light:hover,
.prices-page .prices-card-light:focus-within,
.prices-page .prices-related-grid a:hover,
.prices-page .prices-related-grid a:focus {
  border-color: var(--leitert-card-border-strong);
}

.home-feature-module a,
.leistungen-page .service-feature-module__links a,
.leistungen-page .service-card-light > a,
.hearing-overview-page .hearing-topic-tile span,
.seo-topic-card span {
  text-decoration: underline;
  text-decoration-color: var(--leitert-yellow-subtle);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.home-feature-module a:hover,
.home-feature-module a:focus,
.leistungen-page .service-feature-module__links a:hover,
.leistungen-page .service-feature-module__links a:focus,
.leistungen-page .service-card-light > a:hover,
.leistungen-page .service-card-light > a:focus,
.hearing-overview-page .hearing-topic-tile:hover span,
.hearing-overview-page .hearing-topic-tile:focus span,
.seo-topic-card:hover span,
.seo-topic-card:focus span {
  text-decoration-color: currentColor;
}

.leistungen-page .service-card-light__note {
  border-top-color: rgba(139, 173, 0, 0.18);
}

.leistungen-page .service-card-light__note strong::before {
  background: var(--leitert-yellow-subtle);
}

.reviews {
  background: #ffffff;
}

.reviews__grid,
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}

.stars {
  color: var(--leitert-green);
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-widget {
  min-height: 190px;
  border: 1px dashed #cfd8b1;
  color: #4d4d4d;
}

.reviews-widget--live {
  min-height: 0;
  border-style: solid;
}

.reviews-widget--trustindex {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reviews-widget--trustindex .ti-widget {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.reviews-widget--trustindex .ti-widget-container,
.reviews-widget--trustindex .ti-reviews-container,
.reviews-widget--trustindex .ti-reviews-container-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.reviews-widget--trustindex .ti-reviews-container {
  overflow: hidden !important;
}

.reviews-widget--trustindex .ti-reviews-container-wrapper {
  display: flex !important;
  overflow: visible !important;
  transition: transform 0.42s ease !important;
  will-change: transform;
}

.reviews-widget--trustindex .ti-review-item {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.reviews-widget--trustindex .ti-inner {
  min-height: 220px;
}

.reviews-widget--trustindex .ti-controls {
  display: none !important;
}

.reviews-widget--trustindex .ti-next,
.reviews-widget--trustindex .ti-prev {
  display: none !important;
}

.reviews-widget--trustindex .ti-controls-line {
  position: relative !important;
  display: block !important;
  width: min(180px, 52%) !important;
  height: 4px !important;
  margin: 18px auto 0 !important;
  overflow: hidden !important;
  background: #e5e5e5 !important;
  border-radius: 999px !important;
}

.reviews-widget--trustindex .ti-controls-line .dot {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: var(--leitert-review-progress-width, 10%) !important;
  height: 100% !important;
  margin: 0 !important;
  background: var(--leitert-green) !important;
  border-radius: 999px !important;
  transform: translateX(var(--leitert-review-progress-left, 0%)) !important;
  transition: transform 0.42s ease, width 0.42s ease !important;
}

.highlight-box,
.appointment-box,
.reviews-widget:not(.reviews-widget--trustindex),
.home-card-light,
.contact-hero-card,
.location-card,
.contact-form-card {
  border-color: var(--leitert-card-border);
}

.brand-box,
.timeline-item,
.warning-card,
.prevention-list-box,
.online-test-card,
.editable-content--seo .seo-highlight,
.editable-content--seo .seo-faq,
.editable-content--seo .seo-link-box {
  border-left-color: var(--leitert-yellow-subtle);
}

.service-card,
.seo-topic-card,
.hearing-type-card-local,
.health-card,
.value-card,
.news-card {
  border-color: var(--leitert-card-border);
  box-shadow: inset 3px 0 0 var(--leitert-yellow-subtle);
}

.service-card:hover,
.service-card:focus-within,
.seo-topic-card:hover,
.seo-topic-card:focus,
.hearing-type-card-local:hover,
.hearing-type-card-local:focus-within,
.news-card:hover,
.news-card:focus-within {
  border-color: var(--leitert-card-border-strong);
  box-shadow: inset 3px 0 0 var(--leitert-yellow-subtle), 0 18px 46px rgba(28, 31, 24, 0.1);
}

.site-footer {
  background: var(--leitert-grey);
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(42px, 6vw, 74px) var(--leitert-page-pad);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer__logo {
  width: min(280px, 100%);
  max-height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer-social-block {
  margin-top: 22px;
}

.site-footer__social {
  min-width: 0;
}

.footer-social-block h3 {
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
  background: var(--leitert-green);
  border-color: var(--leitert-green);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-cookie-settings {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--leitert-page-pad);
  background: rgba(0, 0, 0, 0.16);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
}

.cookie-banner[hidden] {
  display: none;
}

.scroll-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(54px, 3vw, 64px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--leitert-green);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top-button svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: var(--leitert-green-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.scroll-top-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  background: var(--leitert-green-dark);
}

.scroll-top-button[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(32, 32, 32, 0.58);
}

.cookie-banner__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(760px, calc(100vw - 48px));
  max-height: min(86vh, 680px);
  overflow-y: auto;
  margin: 0;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
}

.cookie-banner__copy h2 {
  margin: 0 0 10px;
  color: var(--leitert-green);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 400;
}

.cookie-banner__copy p {
  margin: 0 0 12px;
  color: #252525;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner__copy a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.cookie-banner__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 11px 12px;
  background: var(--leitert-green-soft);
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #c9c9c2;
  box-shadow: inset 0 0 0 1px rgba(32, 32, 32, 0.08);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.cookie-toggle::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  content: "";
  transition: transform 0.18s ease;
}

.cookie-toggle__input:checked ~ .cookie-toggle {
  background: var(--leitert-green);
  box-shadow: inset 0 0 0 1px rgba(111, 140, 0, 0.18);
}

.cookie-toggle__input:checked ~ .cookie-toggle::before {
  transform: translateX(20px);
}

.cookie-toggle__input:focus-visible ~ .cookie-toggle {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 3px;
}

.cookie-toggle__input:disabled ~ .cookie-toggle {
  cursor: not-allowed;
  opacity: 0.78;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  margin-bottom: 3px;
  color: #202020;
  font-size: 14px;
  line-height: 1.35;
}

.cookie-option small {
  color: #4c4c4c;
  font-size: 12px;
  line-height: 1.35;
}

.cookie-option--locked {
  opacity: 0.82;
}

.cookie-service-list {
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.cookie-banner__details {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--leitert-line);
  border-radius: var(--leitert-radius);
}

.cookie-banner__details h3 {
  margin: 0;
  color: #202020;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.cookie-service-list summary {
  padding: 11px 13px;
  color: #202020;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
}

.cookie-service-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0 13px 13px;
  list-style: none;
}

.cookie-service-list li {
  display: grid;
  gap: 2px;
}

.cookie-service-list span,
.cookie-service-list small {
  display: block;
}

.cookie-service-list span {
  color: var(--leitert-green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.cookie-service-list small {
  color: #4c4c4c;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: end;
  gap: 10px;
}

.cookie-banner__actions .button {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 14px;
}



/* Kundenwunsch: Hörsystem-Detailseiten */
.section--akku-overview .editable-content--seo .seo-intro {
  margin-bottom: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section--akku-overview .editable-content--seo .hearing-build-grid,
.section--akku-overview .editable-content--seo .hearing-benefit-grid {
  margin-bottom: 0;
}

.section--akku-overview .editable-content--seo .hearing-build-grid {
  margin-top: 30px;
}

.section--akku-overview .editable-content--seo .hearing-build-card,
.section--akku-overview .editable-content--seo .hearing-benefit-card,
.section--akku-overview .editable-content--seo .seo-faq,

.hdo-page .hdo-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.hdo-page .hdo-hero .page-hero__inner {
  max-width: 980px;
}

.hdo-page .hdo-hero h1 {
  max-width: 880px;
}

.hdo-page .hdo-hero p:not(.eyebrow) {
  max-width: 760px;
}

.hdo-page .hdo-editorial-section {
  padding-top: 0;
  padding-bottom: 0;
}

.hdo-page .hdo-content {
  display: block;
  max-width: none;
}

.hdo-page .hdo-content > * {
  max-width: none;
}

.hdo-page .akku-page-band {
  padding: clamp(58px, 7vw, 96px) var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.hdo-page .akku-page-band:first-child {
  border-top: 0;
}

.hdo-page .akku-page-band--tint {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.9), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.hdo-page .akku-page-band__inner {
  max-width: 1180px;
}

.hdo-page .akku-page-band__inner > h2,
.hdo-page .akku-page-band__inner > p,
.hdo-page .seo-intro {
  max-width: 840px;
}

.hdo-page .seo-intro {
  margin-bottom: 26px;
  color: #242424;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.78;
}

.hdo-page .hdo-build-grid,
.hdo-page .hdo-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  max-width: 1120px;
  margin-top: clamp(30px, 4vw, 48px);
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.hdo-page .hdo-card-light {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.72);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.hdo-page .hdo-card-light::before,
.hdo-page .hdo-card-light::after {
  content: none;
}

.hdo-page .hdo-card-light:hover,
.hdo-page .hdo-card-light:focus-within {
  background: #ffffff;
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.hdo-page .hdo-card-light figure {
  display: grid;
  place-items: center;
  min-height: clamp(150px, 15vw, 198px);
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.6), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid rgba(111, 140, 0, 0.12);
}

.hdo-page .hdo-card-light figure img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: clamp(138px, 13vw, 178px);
  object-fit: contain;
}

.hdo-page .hdo-card-light .hearing-build-card__content {
  padding: 28px 32px;
  text-align: left;
}

.hdo-page .hdo-card-light h3 {
  color: var(--leitert-green-dark);
}

.hdo-page .hdo-card-light ul {
  display: grid;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hdo-page .hdo-card-light li {
  position: relative;
  margin: 0;
  padding-left: 1.05rem;
  line-height: 1.5;
}

.hdo-page .hdo-card-light li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.74;
}

.hdo-page .hdo-feature-list-editorial {
  display: grid;
  max-width: 900px;
  gap: 0;
  margin: clamp(24px, 3vw, 38px) 0 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.hdo-page .hdo-feature-item {
  position: relative;
  min-height: 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 140, 0, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.hdo-page .hdo-feature-item:last-child {
  border-bottom: 0;
}

.hdo-page .hdo-feature-item__heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 6px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.hdo-page .hdo-feature-item__heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.78;
}

.hdo-page .hdo-feature-item p {
  max-width: 680px;
  padding-left: calc(0.45rem + 0.65rem);
  margin: 0;
}

.hdo-page .hdo-advice-section .seo-highlight {
  max-width: 780px;
  margin: clamp(28px, 4vw, 46px) 0 0;
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.hdo-page .hdo-advice-section .seo-highlight h2 {
  color: var(--leitert-ink);
}

.hdo-page .hdo-advice-section .seo-highlight .wp-block-buttons {
  margin-top: 24px;
}

.hdo-page .hdo-related-section .hearing-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.hdo-page .hdo-related-section .hearing-related-grid a {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.7);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.hdo-page .hdo-related-section .hearing-related-grid a::before,
.hdo-page .hdo-related-section .hearing-related-grid a::after {
  content: none;
}

.hdo-page .hdo-related-section .hearing-related-grid a:hover,
.hdo-page .hdo-related-section .hearing-related-grid a:focus {
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.hdo-page .hdo-advice-section .wp-block-button__link:focus-visible,
.hdo-page .hdo-related-section .hearing-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.hdo-page .editable-content--seo .hdo-card-light {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.72);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.hdo-page .editable-content--seo .hdo-card-light figure {
  min-height: clamp(150px, 15vw, 198px);
}

.hdo-page .editable-content--seo .hdo-card-light figure img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: clamp(132px, 12vw, 168px);
  object-fit: contain;
}

.hdo-page .editable-content--seo .hdo-card-light:hover,
.hdo-page .editable-content--seo .hdo-card-light:focus-within {
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.hdo-page .editable-content--seo .hdo-advice-section .seo-highlight {
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  box-shadow: none;
}

.ido-page .ido-hero {
  background: var(--leitert-white);
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.ido-page .ido-hero .page-hero__inner {
  max-width: 980px;
}

.ido-page .ido-hero h1 {
  max-width: 880px;
}

.ido-page .ido-hero p:not(.eyebrow) {
  max-width: 760px;
}

.ido-page .ido-editorial-section {
  background: var(--leitert-white);
  padding-top: 0;
  padding-bottom: 0;
}

.ido-page .ido-content {
  display: block;
  max-width: none;
}

.ido-page .ido-content > * {
  max-width: none;
}

.ido-page .akku-page-band {
  padding: clamp(58px, 7vw, 96px) var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.1);
}

.ido-page .akku-page-band:first-child {
  border-top: 0;
}

.ido-page .akku-page-band--white {
  background: var(--leitert-white);
}

.ido-page .akku-page-band--tint {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.98) 0%, rgba(246, 248, 238, 0.74) 58%, var(--leitert-white) 100%),
    var(--leitert-green-soft);
}

.ido-page .akku-page-band__inner {
  max-width: 1180px;
}

.ido-page .akku-page-band__inner > h2,
.ido-page .akku-page-band__inner > p {
  max-width: 840px;
}

.ido-page .ido-build-grid,
.ido-page .ido-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
  margin-top: clamp(30px, 4vw, 48px);
  margin-bottom: 0;
}

.ido-page .ido-card-light {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.72);
  border-radius: var(--leitert-radius);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.ido-page .ido-card-light::before,
.ido-page .ido-card-light::after {
  content: none;
}

.ido-page .ido-card-light:hover,
.ido-page .ido-card-light:focus-within {
  background: #ffffff;
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.ido-page .ido-card-light figure {
  display: grid;
  place-items: center;
  min-height: clamp(150px, 15vw, 198px);
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.6), rgba(255, 255, 255, 0.98));
  border-bottom: 1px solid rgba(111, 140, 0, 0.12);
}

.ido-page .ido-card-light figure img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: clamp(132px, 12vw, 168px);
  object-fit: contain;
}

.ido-page .ido-card-light figure.hearing-build-card__image-pair {
  min-height: clamp(150px, 15vw, 198px);
}

.ido-page .ido-card-light figure.hearing-build-card__image-pair img {
  max-width: 43%;
  max-height: clamp(110px, 10vw, 145px);
  transform: none;
}

.ido-page .ido-build-grid .ido-card-light {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
}

.ido-page .ido-build-grid .hearing-build-card__content {
  padding: clamp(28px, 2.9vw, 32px);
}

.ido-page .ido-overview-section .ido-build-grid .hearing-build-card--iic figure.hearing-build-card__image-pair,
.ido-page .ido-overview-section .ido-build-grid .hearing-build-card--cic figure.hearing-build-card__image-pair {
  height: clamp(168px, 16vw, 208px);
  min-height: clamp(168px, 16vw, 208px);
  box-sizing: border-box;
}

.ido-page .ido-build-grid .ido-card-light figure.hearing-build-card__image-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  min-height: clamp(168px, 16vw, 208px);
  padding: clamp(18px, 2.6vw, 26px);
}

.ido-page .ido-build-grid .ido-card-light figure.hearing-build-card__image-pair img {
  flex: 0 1 42%;
  max-width: min(42%, 178px);
  max-height: clamp(126px, 11vw, 158px);
  object-fit: contain;
}

.ido-page .ido-build-grid .hearing-build-card--iic figure.hearing-build-card__image-pair img {
  flex-basis: 27.6%;
  max-width: min(27.6%, 117px);
  max-height: clamp(82px, 7.2vw, 104px);
}

.ido-page .ido-build-grid .hearing-build-card--cic figure.hearing-build-card__image-pair img {
  flex-basis: 69%;
  max-width: min(69%, 293px);
  max-height: clamp(158px, 14.4vw, 187px);
  transform: none;
}

.ido-page .ido-accessory-grid .hearing-build-card__content {
  padding: 28px 32px;
}

.ido-page .ido-card-light h3 {
  color: var(--leitert-green-dark);
}

.ido-page .ido-card-light ul {
  display: grid;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.ido-page .ido-card-light li {
  position: relative;
  margin: 0;
  padding-left: 1.05rem;
  line-height: 1.5;
}

.ido-page .ido-card-light li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.74;
}

.ido-page .ido-feature-list-editorial {
  display: grid;
  max-width: 900px;
  gap: 0;
  margin: clamp(24px, 3vw, 38px) 0 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.ido-page .ido-feature-item {
  position: relative;
  min-height: 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 140, 0, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.ido-page .ido-feature-item:last-child {
  border-bottom: 0;
}

.ido-page .ido-feature-item__heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 6px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.ido-page .ido-feature-item__heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.78;
}

.ido-page .ido-feature-item p {
  max-width: 680px;
  padding-left: calc(0.45rem + 0.65rem);
  margin: 0;
}

.ido-page .ido-advice-section .seo-highlight {
  max-width: 780px;
  margin: 0 0 clamp(36px, 5vw, 64px);
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.ido-page .ido-advice-section .seo-highlight h2 {
  color: var(--leitert-ink);
}

.ido-page .ido-advice-section .seo-highlight .wp-block-buttons {
  margin-top: 24px;
}

.ido-page .ido-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.ido-page .ido-related-grid a {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.7);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.ido-page .ido-related-grid a::before,
.ido-page .ido-related-grid a::after {
  content: none;
}

.ido-page .ido-related-grid a:hover,
.ido-page .ido-related-grid a:focus {
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.ido-page .ido-advice-section .wp-block-button__link:focus-visible,
.ido-page .ido-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.ido-page .editable-content--seo .ido-card-light {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.72);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.ido-page .editable-content--seo .ido-card-light:hover,
.ido-page .editable-content--seo .ido-card-light:focus-within {
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.ido-page .editable-content--seo .ido-card-light figure img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: clamp(132px, 12vw, 168px);
  object-fit: contain;
}

.ido-page .editable-content--seo .ido-card-light figure.hearing-build-card__image-pair img {
  max-width: 43%;
  max-height: clamp(110px, 10vw, 145px);
  transform: none;
}

.page-id-67 .ido-page .section--akku-overview .akku-page-band:first-child .ido-build-grid .ido-card-light figure.hearing-build-card__image-pair img {
  max-width: 43%;
  max-height: clamp(110px, 10vw, 145px);
  transform: none;
}

.ido-page .ido-build-grid .ido-card-light figure.hearing-build-card__image-pair img {
  flex: 0 1 42%;
  max-width: min(42%, 178px);
  max-height: clamp(126px, 11vw, 158px);
  object-fit: contain;
}

.ido-page .ido-build-grid .hearing-build-card--iic figure.hearing-build-card__image-pair img {
  flex-basis: 27.6%;
  max-width: min(27.6%, 117px);
  max-height: clamp(82px, 7.2vw, 104px);
}

.ido-page .ido-build-grid .hearing-build-card--cic figure.hearing-build-card__image-pair img {
  flex-basis: 69%;
  max-width: min(69%, 293px);
  max-height: clamp(158px, 14.4vw, 187px);
  transform: none;
}

.page-id-67 .ido-page .section--akku-overview .akku-page-band:first-child .ido-build-grid .hearing-build-card--cic figure.hearing-build-card__image-pair img {
  flex-basis: 69%;
  max-width: min(69%, 293px);
  max-height: clamp(158px, 14.4vw, 187px);
  transform: none;
}

.ido-page .editable-content--seo .ido-advice-section .seo-highlight {
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  box-shadow: none;
}

.hdo-info-page .hdo-info-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.hdo-info-page .hdo-info-hero .page-hero__inner {
  max-width: 980px;
}

.hdo-info-page .hdo-info-hero h1 {
  max-width: 900px;
}

.hdo-info-page .hdo-info-hero p:not(.eyebrow) {
  max-width: 760px;
}

.hdo-info-page .hdo-info-editorial-section {
  padding-top: 0;
  padding-bottom: 0;
}

.hdo-info-page .hdo-info-content {
  display: block;
  max-width: none;
}

.hdo-info-page .hdo-info-content > * {
  max-width: none;
}

.hdo-info-page .hdo-info-content h2 {
  color: var(--leitert-green-dark);
}

.hdo-info-page .akku-page-band {
  padding: clamp(58px, 7vw, 96px) var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.hdo-info-page .akku-page-band:first-child {
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.hdo-info-page .akku-page-band--tint {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.9), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.hdo-info-page .hdo-info-benefits-section,
.hdo-info-page .hdo-info-advice-section {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.9), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.hdo-info-page .hdo-info-requirements-section {
  background: #ffffff;
}

.hdo-info-page .akku-page-band__inner {
  max-width: 1180px;
}

.hdo-info-page .akku-page-band__inner > h2,
.hdo-info-page .akku-page-band__inner > p,
.hdo-info-page .seo-intro {
  max-width: 840px;
}

.hdo-info-page .seo-intro {
  margin-bottom: 26px;
  color: #242424;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.78;
}

.hdo-info-page .hdo-info-feature-list {
  display: grid;
  max-width: 900px;
  gap: 0;
  margin: clamp(24px, 3vw, 38px) 0 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.hdo-info-page .hdo-info-feature-item {
  display: block;
  grid-template-columns: none;
  position: relative;
  min-height: 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 140, 0, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.hdo-info-page .hdo-info-feature-item:last-child {
  border-bottom: 0;
}

.hdo-info-page .hdo-info-feature-item:hover,
.hdo-info-page .hdo-info-feature-item:focus-within {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hdo-info-page .hdo-info-feature-item__heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 6px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.hdo-info-page .hdo-info-feature-item__heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.78;
}

.hdo-info-page .hdo-info-feature-item p {
  max-width: 680px;
  padding-left: calc(0.45rem + 0.65rem);
  margin: 0;
}

.hdo-info-page .hdo-info-advice-section .seo-highlight {
  max-width: 780px;
  margin: clamp(30px, 4.2vw, 52px) 0 clamp(36px, 5vw, 64px);
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.hdo-info-page .hdo-info-advice-section .seo-highlight h2 {
  color: var(--leitert-green-dark);
}

.hdo-info-page .hdo-info-advice-section .seo-highlight .wp-block-buttons {
  margin-top: 24px;
}

.hdo-info-page .hdo-info-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
  gap: 0;
  margin-top: 28px;
  margin-bottom: clamp(12px, 3vw, 28px);
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.hdo-info-page .hdo-info-related-grid a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 20px clamp(8px, 2vw, 24px);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 151, 0, 0.18);
  box-shadow: none;
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.hdo-info-page .hdo-info-related-grid a::before {
  content: none;
}

.hdo-info-page .hdo-info-related-grid a::after {
  content: "\2192";
}

.hdo-info-page .hdo-info-related-grid a:hover,
.hdo-info-page .hdo-info-related-grid a:focus {
  background: rgba(111, 151, 0, 0.055);
  border-color: rgba(111, 151, 0, 0.32);
  box-shadow: none;
  transform: none;
}

.hdo-info-page .hdo-info-advice-section .wp-block-button__link:focus-visible,
.hdo-info-page .hdo-info-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.ido-info-page .ido-info-hero {
  padding-bottom: clamp(56px, 6.8vw, 94px);
}

.ido-info-page .ido-info-hero .page-hero__inner {
  max-width: 980px;
}

.ido-info-page .ido-info-hero h1 {
  max-width: 900px;
}

.ido-info-page .ido-info-hero p:not(.eyebrow) {
  max-width: 760px;
}

.ido-info-page .ido-info-editorial-section {
  padding-top: 0;
  padding-bottom: 0;
}

.ido-info-page .ido-info-content {
  display: block;
  max-width: none;
}

.ido-info-page .ido-info-content > * {
  max-width: none;
}

.ido-info-page .akku-page-band {
  padding: clamp(58px, 7vw, 96px) var(--leitert-page-pad);
  border-top: 1px solid rgba(111, 140, 0, 0.14);
}

.ido-info-page .akku-page-band:first-child {
  border-top: 0;
}

.ido-info-page .akku-page-band--tint {
  background:
    linear-gradient(180deg, rgba(246, 248, 238, 0.9), rgba(255, 255, 255, 0.96)),
    var(--leitert-green-soft);
}

.ido-info-page .akku-page-band__inner {
  max-width: 1180px;
}

.ido-info-page .akku-page-band__inner > h2,
.ido-info-page .akku-page-band__inner > p,
.ido-info-page .seo-intro {
  max-width: 840px;
}

.ido-info-page .seo-intro {
  margin-bottom: 26px;
  color: #242424;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.78;
}

.ido-info-page .ido-info-feature-list {
  display: grid;
  max-width: 900px;
  gap: 0;
  margin: clamp(24px, 3vw, 38px) 0 0;
  border-top: 1px solid rgba(111, 140, 0, 0.18);
}

.ido-info-page .ido-info-feature-item {
  display: block;
  grid-template-columns: none;
  position: relative;
  min-height: 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(111, 140, 0, 0.14);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}

.ido-info-page .ido-info-feature-item:last-child {
  border-bottom: 0;
}

.ido-info-page .ido-info-feature-item:hover,
.ido-info-page .ido-info-feature-item:focus-within {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.ido-info-page .ido-info-feature-item__heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 6px;
  color: var(--leitert-green-dark);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.ido-info-page .ido-info-feature-item__heading::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--leitert-green);
  opacity: 0.78;
}

.ido-info-page .ido-info-feature-item p {
  max-width: 680px;
  padding-left: calc(0.45rem + 0.65rem);
  margin: 0;
}

.ido-info-page .ido-info-advice-section .seo-highlight {
  max-width: 780px;
  margin: clamp(30px, 4.2vw, 52px) 0 clamp(36px, 5vw, 64px);
  padding: clamp(20px, 3vw, 34px) 0 clamp(18px, 2vw, 28px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.ido-info-page .ido-info-advice-section .seo-highlight h2 {
  color: var(--leitert-ink);
}

.ido-info-page .ido-info-advice-section .seo-highlight .wp-block-buttons {
  margin-top: 24px;
}

.ido-info-page .ido-info-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.ido-info-page .ido-info-related-grid a {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.7);
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
  color: var(--leitert-green-dark);
}

.ido-info-page .ido-info-related-grid a::before,
.ido-info-page .ido-info-related-grid a::after {
  content: none;
}

.ido-info-page .ido-info-related-grid a:hover,
.ido-info-page .ido-info-related-grid a:focus {
  border-color: rgba(242, 194, 48, 0.92);
  box-shadow: 0 12px 30px rgba(28, 31, 24, 0.065);
}

.ido-info-page .ido-info-advice-section .wp-block-button__link:focus-visible,
.ido-info-page .ido-info-related-grid a:focus-visible {
  outline: 3px solid var(--leitert-focus);
}

.hdo-info-page .hdo-info-hero .page-hero__inner,
.ido-info-page .ido-info-hero .page-hero__inner {
  max-width: none;
}

.hdo-info-page .hdo-info-hero h1,
.ido-info-page .ido-info-hero h1 {
  max-width: 1120px;
}

.hdo-info-page .hdo-info-hero p:not(.eyebrow),
.ido-info-page .ido-info-hero p:not(.eyebrow) {
  max-width: 920px;
}

.hdo-info-page .akku-page-band__inner,
.ido-info-page .akku-page-band__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hdo-info-page .akku-page-band__inner > h2,
.hdo-info-page .akku-page-band__inner > p,
.hdo-info-page .seo-intro,
.ido-info-page .akku-page-band__inner > h2,
.ido-info-page .akku-page-band__inner > p,
.ido-info-page .seo-intro {
  max-width: 980px;
}

.hdo-info-page .hdo-info-feature-list,
.ido-info-page .ido-info-feature-list {
  width: 100%;
  max-width: 1120px;
}

.hdo-info-page .hdo-info-feature-item p,
.ido-info-page .ido-info-feature-item p {
  max-width: 920px;
}

.hdo-info-page .hearing-info-cta,
.ido-info-page .hearing-info-cta {
  width: 100%;
  max-width: 900px;
  margin: clamp(34px, 4.5vw, 58px) 0 clamp(44px, 5vw, 70px);
  padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 38px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.hdo-info-page .hearing-info-cta h2,
.ido-info-page .hearing-info-cta h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.22;
  font-weight: 500;
}

.hdo-info-page .hearing-info-cta p,
.ido-info-page .hearing-info-cta p {
  max-width: 800px;
  margin: 0;
}

.hdo-info-page .hearing-info-cta .wp-block-buttons,
.ido-info-page .hearing-info-cta .wp-block-buttons {
  width: 100%;
  max-width: 420px;
  margin-top: 24px;
}

.hdo-info-page .hearing-info-cta .wp-block-button,
.ido-info-page .hearing-info-cta .wp-block-button {
  width: 100%;
}

.hdo-info-page .hearing-info-cta .wp-block-button__link,
.ido-info-page .hearing-info-cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  background: var(--leitert-green);
  border: 1.5px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(111, 151, 0, 0.16);
}

.hdo-info-page .hearing-info-cta .wp-block-button__link:hover,
.hdo-info-page .hearing-info-cta .wp-block-button__link:focus,
.ido-info-page .hearing-info-cta .wp-block-button__link:hover,
.ido-info-page .hearing-info-cta .wp-block-button__link:focus {
  background: var(--leitert-green-dark);
  border-color: var(--leitert-green-dark);
}

.hdo-info-page .hdo-info-related-grid,
.ido-info-page .ido-info-related-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100%;
  max-width: none;
  margin-top: 28px;
  margin-bottom: clamp(12px, 3vw, 28px);
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.hdo-info-page .hdo-info-related-grid a,
.ido-info-page .ido-info-related-grid a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px;
  align-items: center;
  min-height: clamp(76px, 6.8vw, 118px);
  padding: clamp(20px, 2.5vw, 28px) clamp(12px, 2vw, 28px);
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(111, 151, 0, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--leitert-green-dark) !important;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 800;
  line-height: 1.24;
  text-decoration: none;
  transform: none !important;
}

.hdo-info-page .hdo-info-related-grid a::before,
.ido-info-page .ido-info-related-grid a::before {
  content: none !important;
}

.hdo-info-page .hdo-info-related-grid a::after,
.ido-info-page .ido-info-related-grid a::after {
  justify-self: end;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
  content: "\2192" !important;
}

.hdo-info-page .hdo-info-related-grid a:hover,
.hdo-info-page .hdo-info-related-grid a:focus,
.ido-info-page .ido-info-related-grid a:hover,
.ido-info-page .ido-info-related-grid a:focus {
  background: rgba(111, 151, 0, 0.055) !important;
  border-color: rgba(111, 151, 0, 0.32) !important;
  box-shadow: none !important;
  text-decoration: none;
}

.hdo-page .hdo-advice-section .seo-highlight,
.ido-page .ido-advice-section .seo-highlight {
  width: 100%;
  max-width: 900px;
  margin: clamp(34px, 4.5vw, 58px) 0 clamp(44px, 5vw, 70px);
  padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 38px) clamp(20px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(139, 173, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

.hdo-page .hdo-advice-section .seo-highlight h2,
.ido-page .ido-advice-section .seo-highlight h2 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--leitert-green);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.22;
  font-weight: 500;
}

.hdo-page .hdo-advice-section .seo-highlight p,
.ido-page .ido-advice-section .seo-highlight p {
  max-width: 800px;
  margin: 0;
}

.hdo-page .hdo-advice-section .seo-highlight .wp-block-buttons,
.ido-page .ido-advice-section .seo-highlight .wp-block-buttons {
  width: 100%;
  max-width: 420px;
  margin-top: 24px;
}

.hdo-page .hdo-advice-section .seo-highlight .wp-block-button,
.ido-page .ido-advice-section .seo-highlight .wp-block-button {
  width: 100%;
}

.hdo-page .hdo-advice-section .seo-highlight .wp-block-button__link,
.ido-page .ido-advice-section .seo-highlight .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  background: var(--leitert-green);
  border: 1.5px solid var(--leitert-green);
  border-radius: var(--leitert-radius);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(111, 151, 0, 0.16);
}

.hdo-page .hdo-advice-section .seo-highlight .wp-block-button__link:hover,
.hdo-page .hdo-advice-section .seo-highlight .wp-block-button__link:focus,
.ido-page .ido-advice-section .seo-highlight .wp-block-button__link:hover,
.ido-page .ido-advice-section .seo-highlight .wp-block-button__link:focus {
  background: var(--leitert-green-dark);
  border-color: var(--leitert-green-dark);
}

.hdo-page .hdo-related-section .hearing-related-grid,
.ido-page .ido-related-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100%;
  max-width: none;
  margin-top: 28px;
  margin-bottom: clamp(12px, 3vw, 28px);
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.hdo-page .hdo-related-section .hearing-related-grid a,
.ido-page .ido-related-grid a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px;
  align-items: center;
  min-height: clamp(76px, 6.8vw, 118px);
  padding: clamp(20px, 2.5vw, 28px) clamp(12px, 2vw, 28px);
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(111, 151, 0, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--leitert-green-dark) !important;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 800;
  line-height: 1.24;
  text-decoration: none;
  transform: none !important;
}

.hdo-page .hdo-related-section .hearing-related-grid a::before,
.ido-page .ido-related-grid a::before {
  content: none !important;
}

.hdo-page .hdo-related-section .hearing-related-grid a::after,
.ido-page .ido-related-grid a::after {
  justify-self: end;
  color: var(--leitert-green-dark);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
  content: "\2192" !important;
}

.hdo-page .hdo-related-section .hearing-related-grid a:hover,
.hdo-page .hdo-related-section .hearing-related-grid a:focus,
.ido-page .ido-related-grid a:hover,
.ido-page .ido-related-grid a:focus {
  background: rgba(111, 151, 0, 0.055) !important;
  border-color: rgba(111, 151, 0, 0.32) !important;
  box-shadow: none !important;
  text-decoration: none;
}

.hearing-detail-page .hearing-detail-hero {
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.hearing-detail-page .hearing-detail-hero .page-hero__inner,
.hearing-detail-page .hearing-detail-content {
  max-width: 880px;
}

.hearing-detail-page .hearing-detail-hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--leitert-muted);
  font-size: clamp(36px, 4.4vw, 58px);
}

.hearing-detail-page .hearing-detail-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #2f342b;
  font-size: clamp(17px, 1.2vw, 19px);
}

.hearing-detail-page .hearing-detail-content-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(54px, 7vw, 88px);
}

.hearing-detail-page .hearing-detail-content {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.hearing-detail-page .hearing-detail-section {
  max-width: 760px;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(111, 151, 0, 0.16);
}

.hearing-detail-page .hearing-detail-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.hearing-detail-page .hearing-detail-section h2 {
  margin: 0 0 12px;
  color: var(--leitert-green-dark);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.18;
}

.hearing-detail-page .hearing-detail-section p {
  max-width: 700px;
  margin: 0;
  color: #30342e;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.75;
}

.hearing-detail-page .hearing-detail-section p + p {
  margin-top: 12px;
}

.hearing-detail-page .hearing-detail-cta {
  max-width: 820px;
  margin-top: clamp(4px, 1vw, 10px);
  padding: clamp(24px, 4vw, 36px);
  background: rgba(246, 248, 238, 0.78);
  border: 1.5px solid rgba(242, 194, 48, 0.5);
  border-radius: 8px;
  box-shadow: none;
}

.hearing-detail-page .hearing-detail-cta h2 {
  margin-bottom: 10px;
}

.hearing-detail-page .hearing-detail-cta .wp-block-buttons {
  margin-top: 22px;
}

.hearing-detail-page .hearing-detail-cta .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hearing-detail-page .hearing-detail-cta .wp-block-button__link:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .hearing-detail-page .hearing-detail-content-section {
    padding-top: 30px;
  }

  .hearing-detail-page .hearing-detail-content {
    gap: 28px;
  }

  .hearing-detail-page .hearing-detail-cta {
    padding: 24px 20px;
  }
}

.gehoerschutz-page .gehoerschutz-hero {
  padding-top: clamp(64px, 6vw, 96px);
  padding-bottom: clamp(56px, 5vw, 80px);
  min-height: 0;
}

.gehoerschutz-page .editorial-lead,
.gehoerschutz-page .gehoerschutz-process__list {
  max-width: 900px;
}

.gehoerschutz-page .gehoerschutz-hero .page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(460px, 1fr);
  column-gap: clamp(100px, 9vw, 160px);
  align-items: center;
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
}

.gehoerschutz-page .gehoerschutz-hero__copy {
  position: relative;
  left: min(0px, calc((1575px - (100vw - (2 * var(--leitert-page-pad)))) / 2));
  width: 100%;
  max-width: 660px;
  justify-self: start;
  min-width: 0;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.gehoerschutz-page .gehoerschutz-hero__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  width: 100%;
  max-width: 450px;
  justify-self: end;
  align-self: center;
  margin-left: 0;
  margin-right: clamp(120px, 10vw, 190px);
}

.gehoerschutz-page .gehoerschutz-hero__image {
  display: block;
  width: 100%;
  max-width: 207px;
  height: auto;
  object-fit: contain;
}

.gehoerschutz-page .gehoerschutz-hero h1 {
  max-width: 820px;
  color: var(--leitert-muted);
  font-size: clamp(38px, 4.8vw, 64px);
}

.gehoerschutz-page .gehoerschutz-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #30342e;
}

.gehoerschutz-page .gehoerschutz-intro .editorial-lead {
  max-width: 820px;
}

.gehoerschutz-page .gehoerschutz-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  max-width: 1180px;
  margin-top: clamp(28px, 4vw, 46px);
}

.gehoerschutz-page .gehoerschutz-product-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(242, 194, 48, 0.66);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 31, 24, 0.04);
}

.gehoerschutz-page .hearing-protection-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.5vw, 36px);
  align-items: start;
  max-width: 1180px;
  margin-top: clamp(32px, 4vw, 52px);
}

.gehoerschutz-page .hearing-protection-product-gallery__item {
  margin: 0;
}

.gehoerschutz-page .hearing-protection-product-gallery__image {
  display: block;
  width: 100%;
  max-width: 170px;
  height: auto;
  max-height: 170px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
}

.gehoerschutz-page .hearing-protection-product-gallery__caption {
  margin-top: 12px;
  color: var(--leitert-green-dark);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.gehoerschutz-page .gehoerschutz-product-card h3,
.gehoerschutz-page .gehoerschutz-process__item h3 {
  margin: 0 0 10px;
  color: var(--leitert-green-dark);
}

.gehoerschutz-page .gehoerschutz-product-card p,
.gehoerschutz-page .gehoerschutz-process__item p {
  margin: 0;
  color: #30342e;
  line-height: 1.7;
}

.gehoerschutz-page .gehoerschutz-process__list {
  display: grid;
  gap: 0;
  margin-top: clamp(26px, 4vw, 42px);
  position: relative;
}

.gehoerschutz-page .gehoerschutz-process__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  padding: clamp(22px, 3vw, 30px) 0;
  position: relative;
  z-index: 1;
}

.gehoerschutz-page .gehoerschutz-process__item > div {
  padding-bottom: clamp(22px, 3vw, 30px);
  border-bottom: 1px solid rgba(111, 151, 0, 0.18);
}

.gehoerschutz-page .gehoerschutz-process__item:first-child > div {
  padding-top: 0;
  border-top: 1px solid rgba(111, 151, 0, 0.18);
}

.gehoerschutz-page .gehoerschutz-process__item::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(111, 151, 0, 0.22);
  z-index: -1;
}

.gehoerschutz-page .gehoerschutz-process__item:first-child::before {
  top: clamp(22px, 3vw, 30px);
}

.gehoerschutz-page .gehoerschutz-process__item:last-child::before {
  bottom: calc(100% - clamp(22px, 3vw, 30px) - 44px);
}

.gehoerschutz-page .gehoerschutz-process__number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(111, 151, 0, 0.25);
  border-radius: 50%;
  color: #141414;
  font-weight: 800;
  background: #fff;
  position: relative;
  z-index: 2;
}

.gehoerschutz-page .gehoerschutz-cta .editorial-cta__content {
  border: 0;
  box-shadow: none;
}

.gehoerschutz-page .gehoerschutz-cta .button:focus-visible,
.prevention-page .prevention-list-box a:focus-visible {
  outline: 3px solid var(--leitert-focus);
  outline-offset: 4px;
}

.prevention-page .prevention-list-box a {
  color: var(--leitert-green-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
  .gehoerschutz-page .gehoerschutz-hero .page-hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    column-gap: clamp(48px, 6vw, 72px);
  }

  .gehoerschutz-page .gehoerschutz-hero__media {
    max-width: 360px;
    margin-right: clamp(48px, 6vw, 80px);
  }

  .gehoerschutz-page .gehoerschutz-hero__image {
    max-width: 171px;
  }

  .gehoerschutz-page .gehoerschutz-product-grid {
    grid-template-columns: 1fr;
  }

  .gehoerschutz-page .hearing-protection-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gehoerschutz-page .hearing-protection-product-gallery__image {
    max-width: 160px;
    max-height: 160px;
  }
}

@media (max-width: 720px) {
  .gehoerschutz-page .gehoerschutz-hero .page-hero__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 8vw, 40px);
  }

  .gehoerschutz-page .gehoerschutz-hero__media {
    gap: clamp(12px, 4vw, 18px);
    justify-self: center;
    max-width: min(306px, 100%);
    margin-left: 0;
    margin-right: 0;
  }

  .gehoerschutz-page .gehoerschutz-hero__image {
    max-width: min(144px, 100%);
  }
}

@media (max-width: 420px) {
  .gehoerschutz-page .gehoerschutz-hero__media {
    grid-template-columns: 1fr;
    max-width: min(198px, 100%);
  }

  .gehoerschutz-page .gehoerschutz-hero__image {
    max-width: min(162px, 100%);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .gehoerschutz-page .hearing-protection-product-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gehoerschutz-page .hearing-protection-product-gallery__item {
    width: min(100%, 400px);
    justify-self: center;
  }

  .gehoerschutz-page .hearing-protection-product-gallery__image {
    max-width: 170px;
    max-height: 170px;
  }

  .gehoerschutz-page .gehoerschutz-process__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gehoerschutz-page .gehoerschutz-product-card {
    padding: 24px 20px;
  }
}

.leitert-surface--white {
  background: var(--leitert-white);
}

.leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

.hdo-page .akku-page-band.leitert-surface--white,
.hdo-info-page .akku-page-band.leitert-surface--white,
.ido-info-page .akku-page-band.leitert-surface--white,
.hearing-test-page .leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.hdo-page .akku-page-band.leitert-surface--gradient,
.hdo-info-page .akku-page-band.leitert-surface--gradient,
.ido-info-page .akku-page-band.leitert-surface--gradient,
.hearing-test-page .leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

body .page-hero:not(.page-hero--split) .page-hero__inner,
body .page-hero:not(.page-hero--split) h1,
body .page-hero:not(.page-hero--split) p:not(.eyebrow) {
  width: 100%;
  max-width: none;
}

.hearing-detail-page--banded .hearing-detail-band {
  width: 100%;
  max-width: none;
  padding: 0 var(--leitert-page-pad) clamp(26px, 4vw, 42px);
}

.hearing-detail-page--banded .hearing-detail-hero + .hearing-detail-band {
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--leitert-line);
}

.hearing-detail-page--banded .hearing-detail-band:last-child {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.hearing-detail-page--banded .hearing-detail-band__inner {
  max-width: 880px;
  margin-inline: auto;
}

.hearing-detail-page--banded .hearing-detail-band .hearing-detail-section {
  max-width: 760px;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(111, 151, 0, 0.16);
}

.hearing-detail-page--banded .hearing-detail-hero + .hearing-detail-band .hearing-detail-section {
  padding-top: 0;
  border-top: 0;
}

.hearing-detail-page--banded .hearing-detail-band.leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.hearing-detail-page--banded .hearing-detail-band.leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

.hearing-detail-page--banded .hearing-detail-cta {
  max-width: 760px;
  margin-top: 0;
  padding: 0;
  padding-inline: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.hearing-detail-page--banded .hearing-detail-cta .wp-block-button__link {
  min-height: 50px;
}

.hdo-page .akku-page-band.leitert-surface--white,
.hdo-info-page .akku-page-band.leitert-surface--white,
.ido-info-page .akku-page-band.leitert-surface--white,
.hearing-test-page .leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.hdo-page .akku-page-band.leitert-surface--gradient,
.hdo-info-page .akku-page-band.leitert-surface--gradient,
.ido-info-page .akku-page-band.leitert-surface--gradient,
.hearing-test-page .leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

.hearing-detail-page--banded .hearing-detail-band {
  width: 100%;
  max-width: none;
  padding: 0 var(--leitert-page-pad) clamp(26px, 4vw, 42px);
}

.hearing-detail-page--banded .hearing-detail-hero + .hearing-detail-band {
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--leitert-line);
}

.hearing-detail-page--banded .hearing-detail-band:last-child {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.hearing-detail-page--banded .hearing-detail-band__inner {
  max-width: 880px;
  margin-inline: auto;
}

.hearing-detail-page--banded .hearing-detail-band .hearing-detail-section {
  max-width: 760px;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(111, 151, 0, 0.16);
}

.hearing-detail-page--banded .hearing-detail-hero + .hearing-detail-band .hearing-detail-section {
  padding-top: 0;
  border-top: 0;
}

.hearing-detail-page--banded .hearing-detail-band.leitert-surface--white {
  background: var(--leitert-white);
  background-image: none;
}

.hearing-detail-page--banded .hearing-detail-band.leitert-surface--gradient {
  background: linear-gradient(
    180deg,
    rgba(246, 248, 238, 0.98) 0%,
    rgba(246, 248, 238, 0.74) 58%,
    var(--leitert-white) 100%
  );
}

.hdo-page .hdo-card-light,
.ido-page .ido-card-light,
.hdo-info-page .hdo-info-feature-item,
.ido-info-page .ido-info-feature-item,
.hdo-info-page .hdo-info-related-grid a,
.ido-info-page .ido-info-related-grid a,
.hdo-page .hdo-related-section .hearing-related-grid a,
.ido-page .ido-related-grid a,
.hearing-benefit-card,
.hearing-detail-page .hearing-detail-cta {
  border-color: var(--leitert-card-border);
}

.hdo-page .hdo-card-light:hover,
.hdo-page .hdo-card-light:focus-within,
.ido-page .ido-card-light:hover,
.ido-page .ido-card-light:focus-within,
.hdo-info-page .hdo-info-feature-item:hover,
.hdo-info-page .hdo-info-feature-item:focus-within,
.ido-info-page .ido-info-feature-item:hover,
.ido-info-page .ido-info-feature-item:focus-within,
.hdo-info-page .hdo-info-related-grid a:hover,
.hdo-info-page .hdo-info-related-grid a:focus,
.ido-info-page .ido-info-related-grid a:hover,
.ido-info-page .ido-info-related-grid a:focus,
.hdo-page .hdo-related-section .hearing-related-grid a:hover,
.hdo-page .hdo-related-section .hearing-related-grid a:focus,
.ido-page .ido-related-grid a:hover,
.ido-page .ido-related-grid a:focus {
  border-color: var(--leitert-card-border-strong);
}

@media (max-width: 980px) {
  body.nav-is-open {
    overflow: hidden;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav__desktop-links {
    display: none;
  }

  .site-nav.is-open .site-nav__links {
    right: var(--leitert-page-pad);
    left: var(--leitert-page-pad);
    width: auto;
  }

  .editable-content--seo {
    grid-template-columns: 1fr;
  }

  .editable-content--seo .seo-intro,
  .editable-content--seo .seo-content-image {
    grid-column: 1;
  }

  .editable-content--seo .seo-content-image {
    width: 100%;
    max-width: none;
  }

  .hero__inner,
  .split,
  .page-hero--split .page-hero__inner,
  .leistungen-page .services-hero .page-hero__inner,
  .person-grid,
  .service-detail-card--featured,
  .process-grid,
  .practice-intro,
  .model-card,
  .timeline-item,
  .map-grid,
  .contact-form-grid,
  .why-grid,
  .reviews__grid,
  .appointment-grid,
  .hearing-brand-section .brand-box,
  .gehoerschutz-page .gehoerschutz-hero .page-hero__inner,
  .prices-page .hearing-prices-hero__inner,
  .cookie-banner__panel {
    grid-template-columns: 1fr;
  }

  .gehoerschutz-page .gehoerschutz-hero__media {
    justify-self: start;
    width: min(100%, 420px);
  }

  .gehoerschutz-page .gehoerschutz-product-grid {
    grid-template-columns: 1fr;
  }

  .gehoerschutz-page .hearing-protection-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prices-page .hearing-prices-hero__image {
    justify-self: center;
    width: min(100%, 360px);
  }

  .prices-page .prices-card-grid,
  .prices-page .prices-card-grid--classes,
  .prices-page .prices-related-grid,
  .hearing-test-page .hearing-test-bullet-list,
  .hearing-test-page .hearing-test-related-grid,
  .leistungen-page .services-light-grid,
  .leistungen-page .trust-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hearing-test-page .hearing-test-step ul {
    grid-template-columns: 1fr;
  }

  .leistungen-page .services-hero__content,
  .leistungen-page .services-hero__image {
    grid-column: 1 / -1;
  }

  .leistungen-page .services-hero__image {
    justify-self: center;
    width: min(520px, 82%);
    max-width: min(520px, 82%);
    margin-left: auto;
    margin-right: auto;
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__body {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 36px);
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__image,
  .leistungen-page .service-feature-module--with-image .service-feature-module__image img {
    width: min(100%, 520px);
    max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__image {
    justify-self: start;
    margin: 0;
  }

  .hearing-overview-page .hearing-overview-hero .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .hearing-overview-page .hearing-overview-hero__image {
    justify-self: center;
    width: min(100%, 560px);
  }

  .hearing-overview-page .hearing-accessory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-person-module,
  .about-page .person-grid--reverse.about-person-module {
    grid-template-columns: 1fr;
  }

  .about-page .person-grid--reverse .about-person-module__image,
  .about-page .person-grid--reverse .about-person-module__copy {
    order: initial;
  }

  .about-page .about-person-module__image,
  .about-page .person-grid--reverse .about-person-module__image {
    justify-self: start;
    max-width: clamp(190px, 36vw, 260px);
  }

  .paedakustik-page .paedakustik-hero .page-hero__inner,
  .paedakustik-page .paedakustik-editorial-split {
    grid-template-columns: 1fr;
  }

  .paedakustik-page .paedakustik-hero__image {
    justify-self: center;
    width: min(100%, 420px);
  }

  .paedakustik-page .paedakustik-care-highlight {
    max-width: min(520px, 100%);
    padding: 24px 0 24px 24px;
    justify-self: start;
  }

  .prevention-page .prevention-hero .page-hero__inner,
  .prevention-page .prevention-guide__item,
  .prevention-page .prevention-image-split,
  .prevention-page .prevention-editorial-split,
  .prevention-page .prevention-recommendation {
    grid-template-columns: 1fr;
  }

  .prevention-page .prevention-hero__image {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
  }

  .prevention-page .prevention-hero__image img,
  .prevention-page .prevention-hero__image .image-placeholder {
    min-height: 320px;
  }

  .prevention-page .prevention-health-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .online-hearing-test-page .online-hearing-test-hero .page-hero__inner,
  .online-hearing-test-page .online-hearing-test-editorial-split,
  .online-hearing-test-page .online-hearing-test-image-split,
  .online-hearing-test-page .online-hearing-test-guide__item {
    grid-template-columns: 1fr;
  }

  .online-hearing-test-page .online-hearing-test-requirements {
    max-width: 520px;
  }

  .brand-box__actions {
    justify-self: stretch;
    max-width: none;
  }

  .person-grid--reverse .person-image,
  .person-grid--reverse .person-copy {
    order: initial;
  }

  .hero__image img {
    min-height: 320px;
  }

  .hero__caption {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .hero__caption-person {
    font-size: 12px;
    line-height: 1.3;
  }

  .hero__caption-person strong {
    font-size: 16px;
  }

  .prevention-sign-grid,
  .online-step-grid,
  .dementia-card {
    grid-template-columns: 1fr;
  }

  .health-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .services-detail-grid,
  .seo-topic-grid,
  .practice-gallery,
  .value-grid,
  .news-grid,
  .contact-strip__grid,
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .site-nav__links a {
    font-size: 16px;
  }

  .site-nav__cta {
    padding-inline: 16px;
  }

  .hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 10px;
  }

  .site-brand__claim {
    display: none;
  }

  .site-brand__logo {
    width: clamp(146px, 43vw, 176px);
    max-height: 48px;
  }

  .site-nav__cta {
    display: none;
  }

  .site-nav.is-open .site-nav__cta {
    display: none;
  }

  .site-nav__menu-cta {
    display: block;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav__menu-cta a {
    display: flex;
    justify-content: center;
    min-height: 48px;
    padding: 13px 16px;
    background: var(--leitert-green);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(139, 173, 0, 0.25);
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero__intro,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }

  .page-hero {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .prevention-page .prevention-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .prevention-page .prevention-guide__item {
    gap: 16px;
    padding: 34px 0;
  }

  .prevention-page .prevention-number {
    margin-top: 0;
  }

  .prevention-page .prevention-guide__item h3 {
    font-size: 30px;
  }

  .prevention-page .prevention-advice-note {
    padding: 22px 0 0 18px;
  }

  .prevention-page .prevention-inline-image img,
  .prevention-page .prevention-inline-image .image-placeholder {
    min-height: 260px;
  }

  .prevention-page .prevention-health-grid {
    grid-template-columns: 1fr;
  }

  .prevention-page .prevention-list-box.prevention-card-light,
  .prevention-page .health-item.prevention-card-light {
    padding: 24px;
  }

  .scroll-top-button {
    right: 14px;
    bottom: 34px;
    width: 44px;
    height: 44px;
  }

  .scroll-top-button svg {
    width: 19px;
    height: 19px;
  }

  .online-hearing-test-page .online-hearing-test-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .online-hearing-test-page .online-hearing-test-card-light {
    padding: 24px;
  }

  .online-hearing-test-page .online-hearing-test-note {
    padding: 22px 0 0 18px;
  }

  .online-hearing-test-page .online-hearing-test-guide__item {
    gap: 16px;
    padding: 34px 0;
  }

  .online-hearing-test-page .online-hearing-test-number {
    margin-top: 0;
  }

  .online-hearing-test-page .online-hearing-test-guide__item h3 {
    font-size: 30px;
  }

  .online-hearing-test-page .online-hearing-test-inline-image img,
  .online-hearing-test-page .online-hearing-test-inline-image .image-placeholder {
    min-height: 260px;
  }

  .prices-page .prices-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .prices-page .prices-hero h1,
  .prices-page .prices-content h2 {
    font-size: 28px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .prices-page .hearing-prices-hero__image {
    width: min(100%, 280px);
  }

  .prices-page .hearing-prices-band {
    padding-right: var(--leitert-page-pad);
    padding-left: var(--leitert-page-pad);
  }

  .prices-page .prices-card-grid,
  .prices-page .prices-card-grid--classes,
  .prices-page .prices-related-grid,
  .hearing-test-page .hearing-test-bullet-list,
  .hearing-test-page .hearing-test-related-grid {
    grid-template-columns: 1fr;
  }

  .hearing-test-page .hearing-test-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hearing-test-page .hearing-test-hero h1,
  .hearing-test-page .hearing-test-content h2 {
    font-size: 30px;
  }

  .hearing-test-page .hearing-test-editorial-intro,
  .hearing-test-page .hearing-test-guide-section,
  .hearing-test-page .hearing-test-card-section,
  .hearing-test-page .hearing-test-editorial-block,
  .hearing-test-page .hearing-test-related-section {
    padding-right: var(--leitert-page-pad);
    padding-left: var(--leitert-page-pad);
  }

  .hearing-test-page .hearing-test-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .hearing-test-page .hearing-test-step__marker {
    width: 48px;
    height: 48px;
  }

  .hearing-test-page .hearing-test-step__marker span {
    font-size: 1.05rem;
  }

  .hearing-test-page .hearing-test-step:not(:last-child)::before {
    top: 48px;
    bottom: calc(-1 * clamp(20px, 2.6vw, 30px));
    left: 23px;
  }

  .hearing-test-page .hearing-test-step__content {
    padding: 22px;
  }

  .hearing-test-page .hearing-test-bullet-list__item {
    padding: 22px 20px;
  }

  .hearing-test-page .hearing-test-bullet-list__item::before {
    top: calc(22px + 0.72em);
    left: 20px;
    transform: translateY(-50%);
  }

  .hdo-info-page .hdo-info-hero,
  .ido-info-page .ido-info-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hdo-info-page .hdo-info-hero h1,
  .ido-info-page .ido-info-hero h1,
  .hdo-info-page .hdo-info-content h2,
  .ido-info-page .ido-info-content h2 {
    font-size: 30px;
  }

  .hdo-info-page .akku-page-band,
  .ido-info-page .akku-page-band {
    padding-right: var(--leitert-page-pad);
    padding-left: var(--leitert-page-pad);
  }

  .hdo-info-page .hdo-info-feature-item,
  .ido-info-page .ido-info-feature-item {
    padding: 20px 0;
  }

  .hdo-info-page .hdo-info-feature-item__heading,
  .ido-info-page .ido-info-feature-item__heading {
    align-items: flex-start;
    font-size: 23px;
  }

  .hdo-info-page .hdo-info-feature-item__heading::before,
  .ido-info-page .ido-info-feature-item__heading::before {
    margin-top: 0.48em;
  }

  .hdo-info-page .hdo-info-feature-item p,
  .ido-info-page .ido-info-feature-item p {
    padding-left: calc(0.45rem + 0.65rem);
  }

  .hdo-info-page .hearing-info-cta,
  .ido-info-page .hearing-info-cta {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .hdo-info-page .hearing-info-cta .wp-block-buttons,
  .ido-info-page .hearing-info-cta .wp-block-buttons {
    max-width: none;
  }

  .hdo-info-page .hdo-info-related-grid a,
  .ido-info-page .ido-info-related-grid a {
    min-height: 76px;
    padding: 20px 10px;
    font-size: 19px;
  }

  .hdo-page .hdo-advice-section .seo-highlight,
  .ido-page .ido-advice-section .seo-highlight {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .hdo-page .hdo-advice-section .seo-highlight .wp-block-buttons,
  .ido-page .ido-advice-section .seo-highlight .wp-block-buttons {
    max-width: none;
  }

  .hdo-page .hdo-related-section .hearing-related-grid a,
  .ido-page .ido-related-grid a {
    min-height: 76px;
    padding: 20px 10px;
    font-size: 19px;
  }

  .hdo-page .hdo-build-grid,
  .hdo-page .hdo-accessory-grid,
  .hdo-page .hdo-related-section .hearing-related-grid,
  .ido-page .ido-build-grid,
  .ido-page .ido-accessory-grid,
  .ido-page .ido-related-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .prices-page .prices-card-light {
    padding: 24px;
  }

  .prices-page .prices-guide__item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .prices-page .prices-guide__number {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }

  .prices-page .prices-guide__item:not(:last-child)::before {
    top: 24px;
    bottom: calc(-1 * clamp(1.25rem, 2.6vw, 2rem) - 24px);
    left: 23px;
  }

  .prices-page .prices-guide__item:last-child::before {
    top: 48px;
    left: 23px;
  }

  .prices-page .prices-guide__item > div {
    padding-top: 0.35rem;
  }

  .prices-page .prices-guide__item h2 {
    font-size: 22px;
    line-height: 1.24;
    font-weight: 350;
  }

  .gehoerschutz-page .gehoerschutz-hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .gehoerschutz-page .gehoerschutz-hero h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .gehoerschutz-page .gehoerschutz-hero__media {
    justify-self: center;
    width: min(100%, 306px);
    gap: 14px;
  }

  .gehoerschutz-page .gehoerschutz-hero__image {
    max-width: 144px;
  }

  .gehoerschutz-page .hearing-protection-product-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gehoerschutz-page .hearing-protection-product-gallery__item {
    width: min(100%, 400px);
    justify-self: center;
  }

  .gehoerschutz-page .hearing-protection-product-gallery__image {
    max-width: 170px;
    max-height: 170px;
  }

  .gehoerschutz-page .gehoerschutz-process__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gehoerschutz-page .gehoerschutz-process__item::before {
    content: none;
  }

  .gehoerschutz-page .gehoerschutz-product-card {
    padding: 24px 20px;
  }

  .home-services-section .section-heading {
    margin-bottom: 30px;
  }

  .home-feature-module {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 0;
  }

  .home-feature-module__icon {
    padding-top: 2px;
  }

  .home-feature-module__icon svg,
  .home-feature-module__icon .leitert-hdo-hoersystem-icon {
    width: 34px;
    height: 34px;
  }

  .home-feature-module h3 {
    font-size: 26px;
    line-height: 1.18;
  }

  .home-feature-module p {
    font-size: 16px;
    line-height: 1.72;
  }

  .leistungen-page .service-feature-module,
  .leistungen-page .services-light-grid,
  .leistungen-page .trust-editorial__grid {
    grid-template-columns: 1fr;
  }

  .leistungen-page .service-feature-module {
    gap: 16px;
    padding: 34px 0;
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__body {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 34px);
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__image {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    margin-inline: 0;
    margin-right: 0;
    border-radius: 10px;
  }

  .leistungen-page .service-feature-module--with-image .service-feature-module__image img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .leistungen-page .service-feature-module__icon {
    padding-top: 0;
  }

  .hearing-overview-page .hearing-family-grid,
  .hearing-overview-page .hearing-accessory-grid {
    grid-template-columns: 1fr;
  }

  .hearing-overview-page .hearing-topic-tile,
  .hearing-overview-page .hearing-accessory-card > div {
    padding: 22px;
  }

  .hearing-overview-page .hearing-accessory-card figure {
    height: clamp(180px, 46vw, 210px);
  }

  .hearing-overview-page .hearing-accessory-card img {
    max-height: 140px;
  }

  .about-page .about-person-module {
    gap: 24px;
  }

  .about-page .about-person-module__image,
  .about-page .person-grid--reverse .about-person-module__image {
    max-width: min(230px, 68vw);
  }

  .about-page .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-card-light {
    padding: 24px;
  }

  .paedakustik-page .paedakustik-care-highlight {
    max-width: min(360px, 100%);
    padding: 22px 0 0 18px;
  }

  .paedakustik-page .paedakustik-guide__item,
  .paedakustik-page .paedakustik-timeline .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .paedakustik-page .paedakustik-guide__icon {
    padding-top: 0;
  }

  .paedakustik-page .paedakustik-guide__icon svg {
    width: 34px;
    height: 34px;
  }

  .paedakustik-page .paedakustik-guide__item h3 {
    font-size: 28px;
  }

  .paedakustik-page .paedakustik-card-light {
    padding: 24px;
  }

  .leistungen-page .service-feature-module h3 {
    font-size: 30px;
  }

  .leistungen-page .service-card-light {
    padding: 24px;
  }

  .leistungen-page .editorial-lead {
    margin-bottom: 30px;
  }

  .page-hero h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .prices-page .prices-hero h1,
  .prices-page .prices-content h2 {
    font-size: 26px;
  }

  .prices-page .prices-guide__item h2 {
    font-size: 20px;
    line-height: 1.24;
  }

  .section h2,
  .section-heading h2,
  .process-grid h2,
  .contact-form-grid h2,
  .dementia-card h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .hero__image img,
  .page-hero__image img,
  .page-inline-image img {
    min-height: 260px;
    max-height: 360px;
    object-fit: cover;
  }

  .practice-gallery {
    display: flex;
    gap: 14px;
    margin-inline: calc(var(--leitert-page-pad) * -1);
    padding-inline: var(--leitert-page-pad);
    padding-bottom: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--leitert-page-pad);
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(139, 173, 0, 0.7) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .practice-gallery--loop {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .practice-gallery__track {
    display: contents;
    animation: none;
  }

  .practice-gallery::-webkit-scrollbar {
    height: 5px;
  }

  .practice-gallery::-webkit-scrollbar-track {
    margin-inline: var(--leitert-page-pad);
    background: transparent;
    border-radius: 999px;
  }

  .practice-gallery::-webkit-scrollbar-thumb {
    background: rgba(139, 173, 0, 0.72);
    border-radius: 999px;
  }

  .practice-card,
  .practice-card--wide {
    flex: 0 0 min(82vw, 346px);
    scroll-snap-align: start;
    min-height: 260px;
  }

  .practice-card img {
    object-position: center;
  }

  .person-image img,
  .image-placeholder {
    aspect-ratio: 4 / 4.6;
    min-height: 0;
  }

  .map-card,
  .map-card iframe,
  .consent-placeholder {
    min-height: 360px;
  }

  .news-seo-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-card,
  .location-card,
  .contact-form-card,
  .highlight-box,
  .appointment-box,
  .legal-page,
  .dementia-card,
  .prevention-list-box {
    padding: 24px;
  }

  .contact-page .contact-message-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-page .contact-form-section {
    overflow: hidden;
  }

  .contact-page .contact-form-card {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .contact-page .contact-message-layout > * {
    min-width: 0;
  }

  .hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin-top: 24px;
  }

  .trust-chip {
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 12px 10px;
    background: var(--leitert-green-soft);
    border: 1px solid var(--leitert-line);
    border-radius: var(--leitert-radius);
    font-size: 13px;
    line-height: 1.32;
  }

  .trust-chip svg {
    width: 20px;
    height: 20px;
  }

  .contact-strip__grid,
  .service-grid,
  .services-detail-grid,
  .seo-topic-grid,
  .editable-content--seo .seo-check-grid,
  .editable-content--seo .seo-link-box ul,
  .value-grid,
  .health-grid,
  .hearing-type-grid,
  .news-grid,
  .paed-gallery,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .news-card__media img {
    aspect-ratio: 16 / 9;
  }

  .single-news__image {
    max-width: calc(100% - (2 * var(--leitert-page-pad)));
  }

  .single-news__content p,
  .single-news__content li,
  .editable-content p,
  .editable-content li {
    font-size: 16px;
    line-height: 1.76;
  }

  .hearing-type-grid {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hearing-type-card-local {
    min-width: 0;
  }

  .hearing-type-card-local h3,
  .hearing-type-card-local p {
    margin-inline: 18px;
  }

  .product-placeholder {
    min-height: 180px;
  }

  .paed-gallery__item--wide {
    grid-column: auto;
  }

  .service-detail-card--featured {
    grid-column: auto;
  }

  .quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px var(--leitert-page-pad);
    background: #ffffff;
    border-top: 1px solid var(--leitert-line);
    border-bottom: 1px solid var(--leitert-line);
  }

  .quick-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    padding: 10px 12px;
    background: var(--leitert-green);
    border: 1px solid var(--leitert-green);
    border-radius: var(--leitert-radius);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(139, 173, 0, 0.18);
  }

  .quick-contact a + a {
    background: #ffffff;
    color: var(--leitert-green-dark);
    border-color: #cad9a4;
    box-shadow: none;
  }

  .quick-contact svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .quick-contact strong,
  .quick-contact em {
    display: block;
  }

  .quick-contact strong {
    color: currentColor;
    font-size: 12px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .quick-contact em {
    margin-top: 3px;
    color: currentColor;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 6px;
    padding-block: 14px;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__services {
    grid-column: 1 / -1;
  }

  .site-footer__brand {
    display: block;
  }

  .site-footer__logo {
    width: min(210px, 70vw);
    max-height: 64px;
    margin-bottom: 16px;
  }

  .site-footer h2,
  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .site-footer p,
  .site-footer li {
    margin-block: 0 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .site-footer__contact p,
  .site-footer__hours p,
  .site-footer__social p {
    margin-bottom: 10px;
  }

  .site-footer__brand-text {
    display: none;
  }

  .site-footer__brand-cta {
    margin: 0;
  }

  .site-footer .button {
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;
    font-size: 13px;
  }

  .footer-social-block {
    margin-top: 0;
    text-align: right;
  }

  .footer-social-block h3 {
    display: none;
  }

  .footer-social-block p {
    display: none;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 12px;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;
  }

  .site-footer ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__services ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer ul li {
    margin: 0;
  }

  .site-footer__legal h2,
  .site-footer__legal h3 {
    margin-top: 4px;
  }

  .reviews-widget--trustindex {
    padding: 0;
  }

  .cookie-banner {
    max-height: 100vh;
    overflow-y: auto;
    padding: 10px;
  }

  .cookie-banner__panel {
    width: min(100%, 720px);
    max-height: calc(100vh - 20px);
    padding: 18px;
  }

  .cookie-banner__options,
  .cookie-service-list ul {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cookie-banner__actions .button {
    width: 100%;
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (min-width: 560px) and (max-width: 700px) {
  .cookie-banner__options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-page .contact-form-section {
    padding-top: 38px;
  }

  .contact-page .contact-message-layout {
    gap: 20px;
  }

  .contact-page .contact-form-card {
    padding: 20px 16px;
  }

  .contact-page .contact-form-card h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  .contact-page .contact-form-card > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    min-height: 46px;
    padding: 11px 13px;
  }

  .contact-form__privacy {
    padding: 12px;
  }

  .cookie-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner__actions .button {
    min-height: 42px;
    padding: 10px;
    font-size: 12px;
  }

  .cookie-banner__actions .button--primary {
    grid-column: 1 / -1;
  }
}

body .eyebrow {
  color: var(--leitert-green);
}
