/* ==========================================================================
   expecta — Abschnitte der Landingpage "Erben & Schenken"
   ========================================================================== */

/* =================================================================== HERO */

.exp-hero { padding-block: 26px 0; }

.exp-hero__box {
  position: relative;
  background: var(--exp-offwhite);
  border-radius: var(--exp-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 40px;
  align-items: center;
  padding: 54px 44px;
  min-height: 580px;
}

/* Das Foto liegt hinter dem Inhalt und wird nach links weich ausgeblendet. */
.exp-hero__media {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 0;
}
.exp-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.exp-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    var(--exp-offwhite) 0%,
    rgba(250, 249, 247, .92) 18%,
    rgba(250, 249, 247, .35) 45%,
    rgba(250, 249, 247, 0) 72%
  );
}

.exp-hero__text { position: relative; z-index: 1; max-width: 560px; }
.exp-hero__text h1 { margin-bottom: .45em; }

.exp-hero__lead {
  font-size: 1.06rem;
  color: var(--exp-text);
  max-width: 30em;
  margin-bottom: 1.8em;
}

.exp-hero .exp-checks { margin-bottom: 2.2em; }

.exp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Telefonnummer gut sichtbar unter den Schaltflächen */
.exp-hero__tel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 0;
}
.exp-hero__tel-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--exp-navy);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
}
.exp-hero__tel-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }

.exp-hero__tel-label {
  display: block;
  font-size: .82rem;
  color: var(--exp-muted);
  line-height: 1.3;
}
.exp-page .exp-hero__tel a {
  font-family: var(--exp-serif);
  font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem);
  font-weight: 700;
  color: var(--exp-heading);
  line-height: 1.25;
}
.exp-page .exp-hero__tel a:hover { color: var(--exp-green-text); text-decoration: none; }

.exp-hero__form { position: relative; z-index: 1; }

/* ------------------------------------------------------- Formular-Karte */

.exp-form-card {
  background: #fff;
  border-radius: var(--exp-radius);
  box-shadow: var(--exp-shadow-lift);
  padding: 26px 24px 24px;
}

.exp-form-card__title {
  font-size: 1.3rem;
  margin-bottom: .7em;
}

.exp-form-card__promises {
  gap: 7px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--exp-border-soft);
}
.exp-form-card__promises li { font-size: .86rem; color: var(--exp-muted); grid-template-columns: 18px 1fr; gap: 9px; }
.exp-form-card__promises .exp-check-dot { width: 18px; height: 18px; }
.exp-form-card__promises .exp-check-dot svg { width: 13px; height: 13px; stroke-width: 2.6; }

.exp-form { display: grid; gap: 13px; }

.exp-field { display: grid; gap: 6px; }
.exp-field label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--exp-heading);
}
/* height/box-shadow setzt das Theme auf Formularfeldern — hier zurücknehmen,
   sonst wird der Text in den Feldern abgeschnitten. */
.exp-page .exp-field input,
.exp-page .exp-field select {
  font-family: inherit;
  font-size: .92rem;
  line-height: 1.4;
  color: var(--exp-text);
  background: #fff;
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  box-shadow: none;
  height: auto;
  margin: 0;
  padding: 11px 12px;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.exp-field input::placeholder { color: #A6B0B6; }
.exp-page .exp-field input:focus,
.exp-page .exp-field select:focus {
  outline: none;
  border-color: var(--exp-green);
  box-shadow: 0 0 0 3px rgba(12, 200, 90, .18);
}

.exp-page .exp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A83' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 15px;
  padding-right: 34px;
}

.exp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.exp-form button[type="submit"] { margin-top: 4px; }

.exp-form__meldung {
  border-radius: var(--exp-radius-sm);
  padding: 16px 18px;
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 4px;
}
.exp-form__meldung--ok {
  background: var(--exp-green-light);
  color: #1C6B3C;
  border: 1px solid #B7E6C9;
}
.exp-form__meldung--hinweis {
  background: #FCF3EE;
  color: #8A4A2E;
  border: 1px solid #F0D6C6;
  margin-bottom: 16px;
}

.exp-form__note {
  font-size: .74rem;
  line-height: 1.5;
  color: var(--exp-muted);
  text-align: center;
  margin: 2px 0 0;
}

@media (max-width: 1040px) {
  .exp-hero__box { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 28px; padding: 44px 32px; }
  .exp-hero__media { inset: 0 0 0 48%; }
}

@media (max-width: 880px) {
  .exp-hero__box {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0 0 26px;
    gap: 0;
    background: var(--exp-offwhite);
  }
  /* Auf schmalen Schirmen steht das Bild oben statt hinter dem Text. */
  .exp-hero__media { position: relative; inset: auto; height: 240px; }
  .exp-hero__media::after {
    background: linear-gradient(180deg, rgba(250,249,247,0) 55%, var(--exp-offwhite) 100%);
  }
  .exp-hero__text { padding: 30px 24px 0; max-width: none; }
  .exp-hero__form { padding: 26px 24px 0; }
}

@media (max-width: 420px) {
  .exp-hero__actions .exp-btn { width: 100%; }
  .exp-field-row { grid-template-columns: 1fr; }
}

/* ======================================================== EINSATZBEREICHE */

/* Reiter statt Aufklapptexte: Anlass oben wählen, Volltext erscheint
   darunter an fester Stelle — kein langes Scrollen. */

.exp-tabs { margin-top: 44px; }

.exp-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--exp-white);
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  padding: 26px 22px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.exp-tab:hover { border-color: var(--exp-green); }

.exp-tab[aria-selected="true"] {
  border-color: var(--exp-green);
  box-shadow: 0 0 0 1px var(--exp-green), var(--exp-shadow-card);
}
.exp-tab[aria-selected="true"] .exp-icon-circle {
  background: var(--exp-green);
  border-color: var(--exp-green);
  color: #fff;
}

.exp-page .exp-tab__titel {
  font-family: var(--exp-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--exp-heading);
  text-transform: none;
  letter-spacing: -.005em;
}
.exp-page .exp-tab__kurz {
  font-size: .89rem;
  color: var(--exp-muted);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.exp-tabs__panel {
  background: var(--exp-white);
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  margin-top: 22px;
  padding: 32px 36px;
}
.exp-tabs__inhalt {
  column-count: 2;
  column-gap: 44px;
  font-size: .92rem;
}
.exp-tabs__inhalt p { margin-bottom: 1em; break-inside: avoid; }
.exp-tabs__inhalt p:last-child { margin-bottom: 0; }

/* ======================================================== FALLBEISPIELE */

.exp-mandate { margin-top: 44px; align-items: stretch; }

.exp-mandat {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  overflow: hidden;
  background: var(--exp-white);
}

.exp-mandat__kopf { background: var(--exp-navy); padding: 22px 26px 24px; }
.exp-mandat__label {
  font-family: var(--exp-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #9FB4C4;
  margin: 0 0 .6em;
}
.exp-mandat__kopf h3 { color: #fff; font-size: 1.25rem; margin: 0; }

.exp-mandat__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }

.exp-mandat__fakten { display: grid; gap: 11px; margin-bottom: 22px; }
.exp-mandat__fakten li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  font-size: .9rem;
}
.exp-mandat__fakten svg {
  width: 17px; height: 17px;
  stroke: var(--exp-green-text);
  fill: none; stroke-width: 1.7;
  margin-top: 3px;
}

/* Gegenüberstellung Finanzamt / expecta */
.exp-mandat__werte { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.exp-wert { border-radius: var(--exp-radius-sm); padding: 14px 16px; text-align: center; }
.exp-wert__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 .5em;
}
.exp-wert__zahl { font-size: 1.5rem; font-weight: 700; margin: 0; line-height: 1.15; }

.exp-wert--fa { background: #FCF1EF; }
.exp-wert--fa .exp-wert__label { color: #A5563F; }
.exp-wert--fa .exp-wert__zahl { color: #9C4B34; }

.exp-wert--expecta { background: #EAF7EF; }
.exp-wert--expecta .exp-wert__label { color: #2C7A4B; }
.exp-wert--expecta .exp-wert__zahl { color: var(--exp-green-text); }

.exp-mandat__text {
  font-size: .87rem;
  line-height: 1.6;
  color: var(--exp-muted);
  margin: auto 0 0;
}
.exp-mandat__text strong { color: var(--exp-text); }

/* ------------------------------------------------- Leistungsbereiche */

.exp-leistungsbereiche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.exp-leistungsbereiche h3 { font-size: 1.35rem; margin-bottom: .6em; }
.exp-leistungsbereiche p { font-size: .93rem; color: var(--exp-text); }

.exp-leistungen__zwischen { margin-top: 62px; }
.exp-leistungen__zwischen h3 { font-size: clamp(1.45rem, 1.1rem + 1.2vw, 1.9rem); margin: 0; }

/* ========================================================== LEISTUNGEN */

.exp-leistungen { margin-top: 44px; align-items: stretch; }
.exp-leistung { display: flex; flex-direction: column; }
.exp-leistung .exp-icon-circle { margin-bottom: 18px; }
.exp-leistung h3 { margin-bottom: .8em; }
.exp-leistung .exp-checks { gap: 9px; }
.exp-leistung .exp-checks li { font-size: .92rem; }

/* ============================================================== LEISTUNG */

.exp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.exp-split__media img {
  width: 100%;
  border-radius: var(--exp-radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Bild bis an den Rand ziehen — wie auf Privatkunden/Geschäftskunden. */
.exp-split--breit { gap: 0; align-items: stretch; }
.exp-split--breit .exp-split__media {
  margin-left: calc(50% - 50vw);
  display: flex;
}
.exp-split--breit .exp-split__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  min-height: 420px;
  border-radius: 0 var(--exp-radius) var(--exp-radius) 0;
}
.exp-split--breit .exp-split__text { padding: 20px 0 20px 56px; }
.exp-split__text h2 { margin-bottom: .5em; }
.exp-split__text > p { color: var(--exp-text); margin-bottom: 1.5em; }
.exp-split__text .exp-checks { margin-bottom: 2em; }

/* ================================================================= WARUM */

.exp-warum { display: grid; grid-template-columns: 1fr 1.55fr; gap: 56px; align-items: start; }
.exp-warum__intro h2 { margin-bottom: .5em; }
.exp-warum__intro p { color: var(--exp-muted); font-size: .95rem; }

/* Gleich hohe Kacheln — unabhängig von der Textlänge. */
.exp-warum__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.exp-arg {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--exp-white);
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  padding: 22px 24px;
}
.exp-arg h3 { font-family: var(--exp-sans); font-size: .97rem; font-weight: 500; margin-bottom: .35em; }
.exp-arg p { font-size: .88rem; color: var(--exp-muted); }

/* ======================================================== KONTAKTLEISTE */

.exp-kontaktleiste { background: var(--exp-cream); padding-block: 26px; }
.exp-kontaktleiste__inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.exp-kontaktleiste__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--exp-navy); color: #fff;
  display: grid; place-items: center; flex: none;
}
.exp-kontaktleiste__icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.exp-kontaktleiste__text { flex: 1 1 260px; }
.exp-kontaktleiste__text h3 { font-size: 1.35rem; margin-bottom: .12em; }
.exp-kontaktleiste__text p { font-size: .9rem; color: var(--exp-muted); }

.exp-kontaktleiste__daten { display: grid; gap: 2px; text-align: right; font-size: .9rem; }
.exp-kontaktleiste__tel { font-size: 1.12rem; font-weight: 500; color: var(--exp-heading) !important; }

/* =============================================================== PROZESS */

.exp-schritte {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 44px;
  list-style: none;
  padding: 0;
}
.exp-schritt { position: relative; padding-right: 10px; }

/* Verbindungslinie zwischen den Schritten */
.exp-schritt:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px; right: -6px;
  width: 22px; height: 1px;
  background: var(--exp-border);
}

.exp-schritt__icon {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--exp-border);
  color: var(--exp-green);
  margin-bottom: 14px;
}
.exp-schritt__icon svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.exp-schritt__nr { display: block; font-size: .82rem; font-weight: 700; color: var(--exp-green); margin-bottom: 4px; }
.exp-schritt h3 { font-family: var(--exp-sans); font-size: .95rem; font-weight: 500; margin-bottom: .4em; }
.exp-schritt p { font-size: .84rem; color: var(--exp-muted); line-height: 1.55; }

/* ============================================================= VERTRAUEN */

.exp-vertrauen {
  display: grid;
  grid-template-columns: .85fr 1.5fr .9fr;
  gap: 30px;
  align-items: start;
}
.exp-vertrauen__intro h2 { margin-bottom: .5em; }
.exp-vertrauen__intro > p { color: var(--exp-muted); font-size: .95rem; margin-bottom: 1.6em; }

.exp-merkmale { display: grid; gap: 14px; margin-bottom: 1.8em; }
.exp-merkmale li { display: flex; align-items: center; gap: 13px; font-size: .93rem; }
.exp-merkmale .exp-icon-circle { width: 40px; height: 40px; }
.exp-merkmale .exp-icon-circle svg { width: 18px; height: 18px; }

.exp-stimmen { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.exp-stimme { padding: 24px 22px; margin: 0; }
.exp-sterne { display: flex; gap: 3px; color: #E0A72B; margin-bottom: 14px; }
.exp-sterne svg { width: 16px; height: 16px; stroke: none; }
.exp-stimme blockquote { margin: 0 0 16px; font-size: .9rem; line-height: 1.6; color: var(--exp-text); }
.exp-stimme figcaption { font-size: .86rem; font-weight: 500; color: var(--exp-heading); }

.exp-cta-box {
  background: var(--exp-navy);
  border-radius: var(--exp-radius);
  padding: 30px 26px;
  color: #C3D0DA;
}
.exp-cta-box .exp-kicker { color: #7FA8A0; }
.exp-cta-box h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5em; }
.exp-cta-box p { font-size: .92rem; margin-bottom: 1.5em; }
.exp-cta-box .exp-btn { width: 100%; margin-bottom: 16px; }
.exp-cta-box__tel {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: #fff !important; font-size: .95rem;
}
.exp-cta-box__tel svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ================================================================== TEAM */

.exp-team { display: grid; grid-template-columns: .8fr 2.2fr; gap: 44px; align-items: start; }
.exp-team__intro h2 { font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); margin-bottom: .3em; }
.exp-team__intro p { color: var(--exp-muted); font-size: .92rem; }

.exp-team__personen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.exp-person { text-align: center; }
.exp-person__bild {
  width: 148px; height: 148px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #DDE5E3;
}
.exp-person__bild img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.exp-person h3 { font-family: var(--exp-sans); font-size: .97rem; font-weight: 700; margin-bottom: .3em; }
.exp-person__rolle { font-size: .85rem; color: var(--exp-text); margin-bottom: .5em; }
.exp-person__quali { font-size: .82rem; color: var(--exp-muted); margin-bottom: .6em; }
.exp-person__zert { font-size: .76rem; line-height: 1.5; color: var(--exp-muted); }

.exp-grundsaetze { display: grid; gap: 16px; margin-top: 52px; }
.exp-grundsaetze li {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  padding: 24px 26px;
}
.exp-grundsaetze h3 { font-family: var(--exp-sans); font-size: .97rem; font-weight: 500; margin-bottom: .4em; }
.exp-grundsaetze p { font-size: .87rem; color: var(--exp-muted); line-height: 1.65; }

/* =================================================================== FAQ */

.exp-faq { display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: start; margin-top: 8px; }

.exp-faq__item {
  background: var(--exp-offwhite);
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius-sm);
  margin-bottom: 10px;
}
.exp-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--exp-heading);
}
.exp-faq__item summary::-webkit-details-marker { display: none; }
.exp-faq__item summary svg { width: 17px; height: 17px; flex: none; color: var(--exp-muted); transition: transform .2s ease; }
.exp-faq__item[open] summary svg { transform: rotate(180deg); }
.exp-faq__item[open] summary { color: var(--exp-green); }
.exp-faq__antwort { padding: 0 18px 18px; font-size: .9rem; color: var(--exp-text); }

.exp-faq__hinweis { font-size: .84rem; color: var(--exp-muted); margin-top: 16px; }

.exp-faq__hilfe {
  background: var(--exp-offwhite);
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  padding: 30px 28px;
  position: sticky;
  top: 100px;
}
.exp-faq__hilfe .exp-icon-circle { margin-bottom: 18px; }
.exp-faq__hilfe h3 { margin-bottom: .5em; }
.exp-faq__hilfe p { font-size: .91rem; color: var(--exp-muted); margin-bottom: 1.5em; }

/* ====================================================== ZERTIFIZIERUNGEN */

.exp-zert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px 40px;
  border: 1px solid var(--exp-border-soft);
  border-radius: var(--exp-radius);
  padding: 28px 34px;
}
.exp-zert li { flex: 0 1 auto; display: flex; align-items: center; justify-content: center; }
.exp-zert img {
  max-height: 96px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}
/* Das DEKRA-Siegel liegt nur im Hochformat vor und wirkt sonst winzig. */
.exp-zert li:first-child img { max-height: 128px; }

/* ------------------------------------------------- Responsive Abschnitte */

@media (max-width: 1040px) {
  .exp-vertrauen { grid-template-columns: 1fr 1fr; }
  .exp-cta-box { grid-column: 1 / -1; }
  .exp-warum { grid-template-columns: 1fr; gap: 34px; }
  .exp-team { grid-template-columns: 1fr; gap: 30px; }
  .exp-schritte { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .exp-schritt::after { display: none; }
}

@media (max-width: 900px) {
  .exp-split { grid-template-columns: 1fr; gap: 30px; }
  .exp-faq { grid-template-columns: 1fr; }
  .exp-faq__hilfe { position: static; }

  .exp-split--breit .exp-split__media { margin-inline: calc(50% - 50vw); }
  .exp-split--breit .exp-split__media img { border-radius: 0; min-height: 260px; }
  .exp-split--breit .exp-split__text { padding: 0; }

  .exp-tabs__inhalt { column-count: 1; }
  .exp-tabs__panel { padding: 26px 24px; }
}

@media (max-width: 860px) {
  .exp-mandate { grid-template-columns: 1fr; }
  .exp-leistungsbereiche { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .exp-tabs__nav { grid-template-columns: 1fr; gap: 12px; }
  .exp-tab { flex-direction: row; text-align: left; align-items: center; padding: 18px 20px; }
  .exp-tab .exp-icon-circle { flex: none; }
  .exp-tab__kurz { display: none; }
}

@media (max-width: 720px) {
  .exp-warum__grid { grid-template-columns: 1fr; }
  .exp-vertrauen { grid-template-columns: 1fr; }
  .exp-stimmen { grid-template-columns: 1fr; }
  .exp-schritte { grid-template-columns: 1fr; gap: 22px; }
  .exp-team__personen { grid-template-columns: 1fr; gap: 34px; }
  .exp-kontaktleiste__inner { flex-direction: column; align-items: flex-start; }
  .exp-kontaktleiste__daten { text-align: left; }
  .exp-zert { justify-content: center; gap: 24px; padding: 22px; }
  .exp-zert img { max-height: 48px; max-width: 140px; }
}
