.article-symbol {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin: 30px 0;
  padding: 18px 20px;
  border: 1px solid currentColor;
  border-left-width: 4px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.6;
}

.article-symbol > span {
  min-width: 0;
}

@media (max-width: 700px) {
  .service-table td::before,
  .service-table td:nth-child(1)::before,
  .service-table td:nth-child(2)::before,
  .service-table td:nth-child(3)::before {
    content: attr(data-label);
  }
}

/* Zentrales Hero-System für alle aktiven Fachartikel. */
.knowledge-article > .article-head {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  min-height: 500px;
  padding: clamp(62px, 6vw, 110px) clamp(24px, 5vw, 96px);
  overflow: hidden;
  background: var(--navy, #0d1829);
  color: #fff;
}

.knowledge-article > .article-head--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  column-gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.knowledge-article > .article-head--text {
  grid-template-columns: minmax(0, 1100px);
  min-height: 440px;
  align-content: center;
}

.knowledge-article > .article-head > a,
.knowledge-article > .article-head > span,
.knowledge-article > .article-head > h1,
.knowledge-article > .article-head > .article-head-intro {
  grid-column: 1;
  min-width: 0;
  max-width: 100%;
}

.knowledge-article > .article-head > a {
  align-self: end;
  margin: 0 0 42px;
  color: #cbd4e0;
  text-decoration: none;
}

.knowledge-article > .article-head > a:hover,
.knowledge-article > .article-head > a:focus-visible {
  color: var(--yellow, #f2c400);
}

.knowledge-article > .article-head > span {
  margin: 0 0 22px;
  color: var(--yellow, #f2c400);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.knowledge-article > .article-head h1 {
  margin: 0;
  max-width: 1120px;
  color: #fff;
  font-family: var(--font-display, "Oswald", sans-serif);
  font-size: clamp(48px, 4.7vw, 86px);
  font-weight: 700;
  line-height: 1.14;
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
  text-wrap: balance;
  text-transform: uppercase;
}

.knowledge-article > .article-head > .article-head-intro {
  align-self: start;
  margin: 32px 0 0;
  max-width: 920px;
  color: #d9e0e9;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.65;
}

.knowledge-article > .article-head--split > .article-head-media {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  justify-self: end;
}

.knowledge-article .article-head-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  max-height: 420px;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.knowledge-article .article-head-media img {
  display: block;
  max-width: 100%;
  max-height: 420px;
}

.knowledge-article .article-head-media--cover {
  aspect-ratio: 4 / 3;
}

.knowledge-article .article-head-media--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.knowledge-article .article-head-media--contain img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.knowledge-article > .article-head--overlay {
  grid-template-columns: minmax(0, 1120px);
  min-height: 560px;
  align-content: center;
}

.knowledge-article > .article-head--overlay::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, .98) 0%, rgba(7, 17, 31, .86) 55%, rgba(7, 17, 31, .42) 100%);
  content: "";
}

.knowledge-article > .article-head--overlay > .article-head-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
}

.knowledge-article > .article-head--overlay > .article-head-media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

.knowledge-article > .article-review-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 13px 18px;
  border-left: 4px solid var(--yellow, #f2c400);
  background: #eef3f8;
  color: #26364b;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .knowledge-article > .article-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 30vw);
    column-gap: 30px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .knowledge-article > .article-head h1 {
    font-size: clamp(44px, 6vw, 66px);
  }
}

@media (max-width: 820px) {
  .knowledge-article > .article-head,
  .knowledge-article > .article-head--split,
  .knowledge-article > .article-head--overlay,
  .knowledge-article > .article-head--text {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 52px 24px 56px;
  }

  .knowledge-article > .article-head > a {
    grid-row: 1;
    margin-bottom: 34px;
  }

  .knowledge-article > .article-head > span {
    grid-row: 2;
    margin-bottom: 17px;
  }

  .knowledge-article > .article-head h1 {
    grid-row: 3;
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.18;
  }

  .knowledge-article > .article-head > .article-head-intro {
    grid-row: 4;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.6;
  }

  .knowledge-article > .article-head--split > .article-head-media {
    grid-column: 1;
    grid-row: 5;
    justify-self: start;
    width: min(100%, 520px);
    max-height: 340px;
    margin-top: 32px;
  }

  .knowledge-article .article-head-media img {
    max-height: 340px;
  }

  .knowledge-article > .article-head--overlay > .article-head-media {
    display: flex;
    margin: 0;
    max-height: none;
  }

  .knowledge-article > .article-review-strip {
    width: calc(100% - 32px);
    margin-top: 16px;
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Inhaltsbilder stehen am Text und werden nur verkleinert, nie vergroessert. */
.article-body::after {
  display: table;
  clear: both;
  content: "";
}

.article-body .legacy-figure {
  clear: both;
  float: right;
  width: fit-content;
  max-width: 46%;
  margin: 8px 0 32px 34px;
}

.article-body .legacy-figure:nth-of-type(even) {
  float: left;
  margin-right: 34px;
  margin-left: 0;
}

.article-body .legacy-figure img,
.article-body .legacy-figure--native img,
.article-body .legacy-figure--diagram img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
}

.knowledge-article .article-body img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}

.article-body h2 {
  clear: none;
}

@media (max-width: 680px) {
  .article-body .legacy-figure,
  .article-body .legacy-figure:nth-of-type(even) {
    float: none;
    width: fit-content;
    max-width: 100%;
    margin: 30px auto;
  }
}

/* Startseite: Eyebrow auf dunklem Hero mit Markenfarbe und hohem Kontrast. */
.hero .eyebrow {
  color: var(--yellow, #f2c400);
}

/* Hauptüberschriften: genügend Platz für Umlaute, Apostrophe und Kommata. */
h1 {
  line-height: 1.12;
}

/* Porträt auf der Startseite: Kopf im breiten Bildfenster vollständig zeigen. */
.about-photo img {
  object-position: center 20%;
}

/* Über Heli-Planet: breite Bildspalte, aber kompakte Höhe oberhalb der Falz. */
.subpage-hero.split.reverse.about-hero {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  height: 600px;
  min-height: 0;
  max-height: 600px;
}

.subpage-hero.about-hero > div {
  min-width: 0;
  padding: 64px 5vw;
}

.subpage-hero.about-hero > img {
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.subpage-hero.about-hero h1 {
  max-width: none;
  font-size: clamp(50px, 4.5vw, 82px);
}

.google-reviews-trust {
  --review-gold: #f2c530;
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto;
  padding: 34px 38px;
  border: 1px solid #ddd8cb;
  border-left: 5px solid var(--review-gold);
  border-radius: 4px;
  background: #fffdf8;
  color: var(--navy, #0d1829);
  box-shadow: 0 16px 36px rgba(13, 24, 41, .07);
}

.google-reviews-trust--large {
  margin-top: 56px;
  margin-bottom: 56px;
}

.google-reviews-trust--section {
  margin-top: 34px;
  margin-bottom: 44px;
}

.google-reviews-trust--compact {
  width: 100%;
  margin: 0 0 30px;
  padding: 24px 26px;
  box-shadow: none;
}

.google-reviews-summary {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.5fr) auto;
  gap: 28px;
  align-items: center;
}

.google-reviews-trust--compact .google-reviews-summary {
  grid-template-columns: 1fr;
  gap: 15px;
}

.google-reviews-trust--compact h2 {
  font-size: 25px;
}

.google-reviews-trust h2,
.google-reviews-trust h3 {
  margin: 0 0 8px;
  color: var(--navy, #0d1829);
}

.google-reviews-trust h2 {
  font-size: clamp(28px, 3vw, 43px);
}

.google-reviews-trust h3 {
  font-size: 25px;
}

.google-reviews-trust p {
  margin: 0;
}

.google-reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 11px;
}

.google-reviews-stars,
.google-review-stars {
  color: #d9a900;
  letter-spacing: .08em;
}

.google-reviews-stars {
  width: 100%;
  font-size: 25px;
  line-height: 1;
}

.google-reviews-score strong {
  font-size: 24px;
}

.google-reviews-score small,
.google-reviews-basis,
.google-maps-attribution,
.google-reviews-policy {
  color: #646a73;
  font-size: 12px;
}

.google-reviews-basis {
  width: 100%;
}

.google-reviews-trust .button {
  white-space: nowrap;
}

.google-review-excerpts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.google-review-excerpts[hidden],
.google-reviews-policy[hidden] {
  display: none;
}

.google-review-excerpt {
  min-width: 0;
  padding: 20px;
  border: 1px solid #e3ded2;
  border-radius: 3px;
  background: #fff;
}

.google-review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}

.google-review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.google-review-author span,
.google-review-author small {
  display: block;
}

.google-review-author a,
.google-review-author strong {
  color: inherit;
  font-weight: 800;
}

.google-review-excerpt > p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.google-review-source {
  display: inline-block;
  margin-top: 13px;
  color: var(--blue, #153d72);
  font-size: 12px;
  font-weight: 750;
}

.google-maps-attribution {
  margin-top: 17px !important;
  font-weight: 750;
}

.google-reviews-policy {
  margin-top: 9px !important;
}

.footer-google-reviews {
  align-self: center;
  margin: 0;
  font-size: 13px;
}

.footer-google-reviews a {
  color: inherit;
  text-decoration: none;
}

.footer-google-reviews span {
  color: #e1b321;
  letter-spacing: .05em;
}

footer {
  grid-template-columns: minmax(220px, 1.15fr) minmax(190px, .85fr) minmax(180px, .8fr) minmax(230px, 1.1fr);
  gap: 30px 50px;
  align-items: start;
}

footer .footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-contact {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.footer-contact p {
  margin: 0;
}

.footer-external-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-external-links {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.footer-legal-links {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.footer-column-title {
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer .footer-google-reviews {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.footer-support-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--yellow, #f2c400);
  color: var(--yellow, #f2c400) !important;
  font-weight: 800;
  text-decoration: none;
  margin-top: 8px;
}

.footer-support-button:hover,
.footer-support-button:focus-visible {
  background: var(--yellow, #f2c400);
  color: var(--navy, #0d1829) !important;
}

/* Zwei nachvollziehbare Inhaltsachsen: Übersicht und gut lesbarer Fachtext. */
:root {
  --hp-overview-width: 1200px;
  --hp-reading-width: 1000px;
}

.page-section > * {
  width: 100%;
  max-width: var(--hp-overview-width);
  margin-right: auto;
  margin-left: auto;
}

.article-body {
  max-width: calc(var(--hp-reading-width) + 60px);
  overflow-wrap: anywhere;
}

.knowledge-article > .article-cta,
.knowledge-article > .related,
.service-article > .article-cta,
.service-article > .related {
  width: calc(100% - 40px);
  max-width: var(--hp-reading-width);
  margin-right: auto;
  margin-left: auto;
}

/* Bewahrt die vollstaendige Struktur der alten Vibrations-Diagnoseseite. */
.legacy-vibration-content .row {
  display: block;
  margin: 0 0 38px;
}
.legacy-vibration-content [class*="col-"] { grid-column: 1 / -1; min-width: 0; }
.legacy-vibration-content h2,
.legacy-vibration-content h3 { margin-top: 0; }
.legacy-vibration-content ul,
.legacy-vibration-content ol { margin: 0 0 20px; padding-left: 24px; }
.legacy-vibration-content li { margin: 8px 0; }
.legacy-vibration-content li > ul { margin-top: 8px; }
.legacy-vibration-content > .row:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(25, 61, 112, .45);
  border-left: 5px solid var(--yellow);
  background: #fff;
  box-shadow: 0 18px 36px rgba(10, 25, 48, .08);
}
.legacy-vibration-content > .row:nth-child(2) img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.legacy-vibration-content .alert {
  padding: 22px 24px;
  border: 1px solid #9eb5d2;
  border-left: 5px solid #20477c;
  background: #f1f6fc;
}
.legacy-vibration-content .alert p:last-child { margin-bottom: 0; }
.legacy-table-scroll {
  width: 100%;
  margin: 20px 0 42px;
  overflow-x: auto;
  border: 1px solid #cfd6df;
  box-shadow: 0 14px 30px rgba(10, 25, 48, .06);
}
.legacy-table-scroll table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}
.legacy-table-scroll th,
.legacy-table-scroll td {
  padding: 14px 16px;
  border: 1px solid #d7dde5;
  vertical-align: top;
  text-align: left;
}
.legacy-table-scroll tr:nth-child(even) { background: #f6f7f8; }
.legacy-table-scroll img { width: auto; max-width: 74px; height: auto; }

@media (min-width: 760px) {
  .legacy-vibration-content > .row:nth-child(2) .col-md-6 { grid-column: span 6; }
}
@media (min-width: 1040px) {
  .legacy-vibration-content > .row:nth-child(2) .col-lg-5 { grid-column: span 5; }
  .legacy-vibration-content > .row:nth-child(2) .col-lg-7 { grid-column: span 7; }
}
@media (max-width: 759px) {
  .legacy-vibration-content .row { margin-bottom: 28px; }
  .legacy-vibration-content > .row:nth-child(2) { display: block; padding: 18px; }
  .legacy-table-scroll table { min-width: 640px; }
}

.article-grid,
.article-card {
  min-width: 0;
}

.article-card {
  overflow-wrap: anywhere;
}

.request-hero.request-hero--with-image {
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(11, 22, 39, .98) 0%, rgba(11, 22, 39, .91) 52%, rgba(11, 22, 39, .78) 100%),
    url("/site-images/werkstatt.jpg");
  background-position: center;
  background-size: cover;
}

.request-hero.request-hero--with-image > * {
  position: relative;
  z-index: 1;
}

.process-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 46px;
}

.process-card-grid > section {
  position: relative;
  min-width: 0;
  padding: 25px 24px 22px;
  border: 1px solid #d9d6ce;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 24, 41, .06);
}

.process-card-grid > section::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 68px;
  height: 5px;
  background: var(--yellow, #f2c400);
  content: "";
}

.process-card-grid .article-kicker {
  margin: 0 0 10px !important;
  color: var(--blue, #153d72);
}

.process-card-grid h3 {
  margin: 0 0 12px;
}

.process-card-grid p:last-child {
  margin-bottom: 0;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 48px;
}

.service-overview-card {
  position: relative;
  min-height: 132px;
  padding: 28px 26px 24px;
  border: 1px solid #d9d6ce;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 24, 41, .06);
}

.service-overview-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 74px;
  height: 5px;
  background: var(--yellow, #f2ca38);
}

.service-overview-card .article-kicker {
  margin: 0 0 12px !important;
  color: var(--blue, #153d72);
}

.service-overview-card h2 {
  margin: 0;
}

.service-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 48px;
}

.service-price-card {
  overflow: hidden;
  padding: 0 24px 24px;
  border: 1px solid #dedbd3;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 24, 41, .07);
}

.service-price-card .legacy-figure {
  width: calc(100% + 48px);
  margin: 0 -24px 22px;
}

.service-price-card .legacy-figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-price-card .legacy-figure figcaption {
  display: none;
}

.service-price-card h3 {
  margin: 0 0 15px;
}

.service-price-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 !important;
  padding: 12px 0;
  border-bottom: 1px solid #e6e2d9;
}

.service-price-item strong {
  white-space: nowrap;
  color: var(--blue, #153d72);
}

.service-price-card .text-link {
  display: inline-block;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .subpage-hero.split.reverse.about-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .subpage-hero.split.reverse.about-hero > div {
    order: 1;
  }

  .subpage-hero.split.reverse.about-hero > img {
    order: 2;
    height: 360px;
    min-height: 360px;
    object-position: center;
  }

  footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 44px;
  }

  footer .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-external-links {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-legal-links {
    grid-column: 2;
    grid-row: 3;
  }

  footer .footer-google-reviews {
    grid-column: 1;
    grid-row: 2;
  }

  .google-reviews-summary {
    grid-template-columns: 1fr;
  }

  .google-reviews-trust .button {
    justify-self: start;
  }

  .google-review-excerpts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer .footer-brand,
  .footer-contact,
  .footer-external-links,
  .footer-legal-links,
  footer .footer-google-reviews {
    grid-column: 1;
  }

  footer .footer-brand { grid-row: 1; }
  footer .footer-google-reviews { grid-row: 2; }
  .footer-contact { grid-row: 3; }
  .footer-external-links { grid-row: 4; }
  .footer-legal-links { grid-row: 5; }

  .google-reviews-trust {
    width: min(100% - 28px, 1180px);
    margin-top: 30px;
    margin-bottom: 34px;
    padding: 25px 21px;
  }

  .google-reviews-trust--compact {
    width: 100%;
    margin-top: 0;
  }

  .service-price-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 26px 0 38px;
  }

  .service-overview-card {
    min-height: 0;
    padding: 24px 21px 22px;
  }

  .service-price-card .legacy-figure img {
    height: auto;
  }

  .service-price-item {
    display: block;
  }

  .service-price-item strong {
    display: block;
    margin-top: 4px;
  }

  .process-card-grid {
    grid-template-columns: 1fr;
  }

}

.article-symbol svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.article-symbol--info {
  color: #246d9c;
  background: #eef7fc;
}

.article-symbol--tip {
  color: #8a5a00;
  background: #fff7df;
}

.article-symbol--warning {
  color: #965100;
  background: #fff1df;
}

.article-symbol--important {
  color: #a22b2b;
  background: #fff0f0;
}

.article-intro {
  margin: 0 0 42px;
  padding: 25px 28px;
  border-left: 4px solid var(--yellow, #f2c400);
  background: var(--paper, #f4f1ea);
}

.article-intro strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink, #101a2a);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-intro p {
  margin: 0;
}

.article-hero-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 43%;
}

.article-body h3 {
  margin: 36px 0 12px;
  color: var(--ink, #101a2a);
  font: 600 25px/1.2 var(--font-display), sans-serif;
  text-transform: uppercase;
}

.article-list {
  margin: -4px 0 30px;
  padding-left: 1.35rem;
  list-style: disc;
}

.article-list li {
  margin: 9px 0;
  color: #394657;
  font-size: 16px;
  line-height: 1.7;
}

.article-list li::marker {
  color: var(--yellow, #f2c400);
}

.formula-box {
  margin: 30px 0;
  padding: 27px 30px;
  color: #fff;
  background: var(--navy, #0b1627);
  box-shadow: 0 14px 34px #0e1d311f;
}

.formula-box > strong {
  display: block;
  margin-bottom: 17px;
  color: var(--yellow, #f2c400);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-body .formula-box p {
  margin: 9px 0;
  color: #fff;
  font-weight: 750;
  line-height: 1.5;
}

.formula-box small {
  display: block;
  margin-top: 17px;
  color: #c4cbd6;
  line-height: 1.55;
}

.article-table-wrap {
  margin: 32px 0 42px;
  overflow-x: auto;
  border: 1px solid var(--line, #d9d7d0);
  background: #fff;
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 17px 18px;
  border-right: 1px solid var(--line, #d9d7d0);
  border-bottom: 1px solid var(--line, #d9d7d0);
  color: #394657;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
  line-height: 1.55;
}

.article-table th {
  color: #fff;
  background: var(--blue, #153d72);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table th:last-child,
.article-table td:last-child {
  border-right: 0;
}

.article-steps {
  margin: 5px 0 40px;
  padding: 0;
  counter-reset: article-step;
  list-style: none;
}

.article-steps li {
  position: relative;
  min-height: 48px;
  margin: 0;
  padding: 15px 0 15px 58px;
  border-bottom: 1px solid var(--line, #d9d7d0);
  color: #394657;
  font-size: 16px;
  line-height: 1.65;
  counter-increment: article-step;
}

.article-steps li::before {
  content: counter(article-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 0;
  color: var(--blue, #153d72);
  font-weight: 850;
}

.source-list a {
  color: var(--blue, #153d72);
  text-decoration: underline;
  text-decoration-color: var(--yellow, #f2c400);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-toc {
  display: block;
  margin: 42px 0 56px;
  overflow: hidden;
  border: 1px solid var(--blue, #153d72);
  border-left: 5px solid var(--yellow, #f2c400);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 21, 40, 0.06);
}

.article-body > .article-toc:first-child {
  margin-top: 0;
}

.article-toc__title {
  display: block;
  margin: 0;
  padding: 20px 22px 8px;
  color: var(--blue, #153d72);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 2px 22px 18px;
  list-style: none;
}

.article-toc li {
  min-width: 0;
  border-bottom: 1px solid var(--line, #d9d7d0);
}

.article-toc li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.article-toc a,
.article-toc span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 100%;
  padding: 13px 12px;
  color: var(--navy, #0d1829);
  font-size: 0.96rem;
  font-weight: 720;
  line-height: 1.45;
  text-decoration: none;
}

.article-toc a::before,
.article-toc span::before {
  flex: 0 0 auto;
  color: var(--yellow-dark, #c99d00);
  content: "→";
  font-size: 0.82rem;
  font-weight: 900;
}

.article-toc a {
  transition: background-color 160ms ease, color 160ms ease;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  background: #f7f4eb;
  color: var(--blue, #153d72);
  outline: none;
}

.article-body h2[id] {
  scroll-margin-top: 115px;
}

.article-note {
  margin: 28px 0 46px;
  padding: 21px 24px 20px;
  border: 1px solid #b8cee3;
  border-left: 5px solid var(--blue, #153d72);
  border-radius: 3px;
  background: #f3f8fc;
  color: var(--navy, #0d1829);
}

.article-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue, #153d72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-note p {
  margin: 0;
}

.article-note p + p {
  margin-top: 10px;
}

.article-kicker {
  margin: 0 0 .7rem;
  color: var(--blue, #153d72);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
}

.article-body h2,
.article-body h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

/* Workshop-Bloecke: Bild und Text bilden eine feste Einheit statt Float-Fragmente. */
.workshop-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
  clear: both;
  margin: 58px 0 76px;
}

.workshop-feature--reverse {
  grid-template-columns: minmax(320px, 450px) minmax(0, 1fr);
}

.workshop-feature--reverse .workshop-feature__copy {
  grid-column: 2;
}

.workshop-feature--reverse .workshop-feature__media {
  grid-column: 1;
  grid-row: 1;
}

.article-body .workshop-feature__media,
.article-body .workshop-feature__media:nth-of-type(even) {
  float: none;
  clear: none;
  width: 100%;
  max-width: 450px;
  margin: 0;
}

.workshop-feature__copy {
  min-width: 0;
}

.workshop-feature__copy .article-kicker {
  margin-top: 0;
  white-space: nowrap;
}

.workshop-feature__copy h3 {
  margin-top: 0;
}

@media (max-width: 820px) {
  .workshop-feature,
  .workshop-feature--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    margin: 44px 0 58px;
  }

  .workshop-feature--reverse .workshop-feature__copy,
  .workshop-feature--reverse .workshop-feature__media {
    grid-column: 1;
  }

  .workshop-feature--reverse .workshop-feature__copy {
    grid-row: 1;
  }

  .workshop-feature--reverse .workshop-feature__media {
    grid-row: 2;
  }
}

.legacy-figure--native {
  width: min(100%, var(--figure-width, 100%));
  margin-right: auto;
  margin-left: auto;
}

.article-body .legacy-figure--native img {
  width: 100%;
  max-width: none;
  height: auto;
}

.legacy-figure--diagram {
  width: min(100%, 960px);
  margin-right: auto;
  margin-left: auto;
}

.article-body .legacy-figure--diagram img {
  width: 100%;
  height: auto;
}

.article-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 42px;
}

.article-comparison section {
  padding: 4px 23px 10px;
  border-top: 4px solid var(--yellow, #f2c400);
  background: var(--paper, #f4f1ea);
}

.article-comparison h3 {
  margin-top: 22px;
}

.article-comparison .article-list {
  margin-bottom: 12px;
}

.article-checklist {
  padding-left: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding-left: 29px;
}

.article-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue, #153d72);
  content: "✓";
  font-weight: 900;
}

.article-sources {
  margin-top: 50px;
  padding-top: 8px;
  border-top: 1px solid var(--line, #d9d7d0);
}

.article-sources ul {
  padding-left: 1.2rem;
}

.article-sources a {
  color: var(--blue, #153d72);
  text-decoration-color: var(--yellow, #f2c400);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .article-comparison {
    grid-template-columns: 1fr;
  }

  .article-toc {
    margin: 28px 0 42px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
    padding: 8px 15px 13px;
  }

  .article-toc li:nth-last-child(2) {
    border-bottom: 1px solid var(--line, #d9d7d0);
  }

  .article-toc li:last-child {
    border-bottom: 0;
  }

  .article-toc a,
  .article-toc span {
    padding: 12px 8px;
    font-size: 0.92rem;
  }

  .article-intro {
    padding: 21px 20px;
  }

  .article-body h3 {
    font-size: 22px;
  }

  .article-list li,
  .article-steps li {
    font-size: 15px;
  }

  .formula-box {
    padding: 23px 21px;
  }

  .article-table th,
  .article-table td {
    padding: 14px;
  }

  .article-table {
    min-width: 0;
  }

  .article-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .article-table,
  .article-table tbody,
  .article-table tr,
  .article-table td {
    display: block;
    width: 100%;
  }

  .article-table tr {
    padding: 8px 0;
    border-bottom: 1px solid var(--line, #d9d7d0);
  }

  .article-table tr:last-child {
    border-bottom: 0;
  }

  .article-table td {
    padding: 8px 16px;
    border: 0;
  }

  .article-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--blue, #153d72);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .article-table td:nth-child(1)::before {
    content: "Flugstil";
  }

  .article-table td:nth-child(2)::before {
    content: "Schwerpunkt";
  }

  .article-table td:nth-child(3)::before {
    content: "Prüfung";
  }
}

@media (max-width: 700px) {
  .service-table td::before,
  .service-table td:nth-child(1)::before,
  .service-table td:nth-child(2)::before,
  .service-table td:nth-child(3)::before {
    content: attr(data-label);
  }
}

/*
 * Dauerhafte Typografie-Invariante fuer grosse Display-Ueberschriften.
 * Muss als letzter CSS-Block geladen werden, damit spaetere Font-Kurzschreibweisen
 * den Zeilenabstand nicht wieder auf Werte unter 1 setzen koennen.
 */
:root {
  --hp-display-heading-line-height: 1.14;
}

.hero h1,
.request-hero h1,
.subpage-hero h1,
.article-head h1,
.knowledge-article > .article-head h1,
.legal-page h1,
.page-title h2,
.process-section h2,
.project-trust h2,
.about-story h2,
.section h2,
.flight-copy h2,
.model-copy h2,
.simulator h2,
.contact h2 {
  line-height: var(--hp-display-heading-line-height);
}

/* Auch die großen Überschriften im Anfragebereich brauchen Umlautreserve. */
.request-form-card h2,
.request-aside h2 {
  line-height: var(--hp-display-heading-line-height);
}

.request-form-card .request-topic {
  grid-column: 1 / -1;
}
