/* ==========================================================================
   Finalarm 2025 — finalarm-home.css
   --------------------------------------------------------------------------
   Styles the NEW HOMEPAGE SECTIONS (page-template block patterns). The
   homepage markup reuses the class names from the design prototype
   (design-system.css); those rules lived only in the prototype and are
   ported here so they render when the theme is active.

   LOAD ORDER: AFTER tokens.css (defines --navy/--blue/--coral/--r-*/--shadow*)
   and AFTER finalarm-global.css. This file only USES the tokens via var(); it
   never redefines :root. It deliberately contains NO resets, base typography,
   body/*/html rules — theme.json + the theme handle those.

   WHAT THIS FILE DOES *NOT* DUPLICATE (already covered by the theme):
   - Horizontal post-rail machinery (core/post-template .is-style-rail,
     .finalarm-related-rail, .rail-head-h2, .rail-term) → finalarm-global.css
   - Core button blocks (.wp-block-button*, is-style-buy/ghost) → finalarm-global.css
   - Live FAQ block (.faq / .bg-g-2) → finalarm-content.css
   - Live CTA-LIST-B2C module (.kk-tabelle-cta / .cta-item / .kk-cta-content)
     → cta-injector.css
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. Section scaffolding + layout helpers (homepage sections)
---------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.4rem, 4vw, 3.6rem); }
.bg-grey { background: var(--grey-050); }
.bg-navy { background: var(--navy); color: #EAF0F9; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.stack > * + * { margin-top: 1.1rem; }

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head .eyebrow { margin-bottom: .7rem; display: block; }
.section-head p { color: var(--muted); margin-top: .8rem; font-size: 1.1rem; }
.section-head.center, .center { text-align: center; margin-inline: auto; }

/* ----------------------------------------------------------------------------
   2. Eyebrow (bracketed spec-sheet label) + lead + mark-underline
---------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 7px; height: 11px; flex: 0 0 auto;
  border: 1.5px solid currentColor; opacity: .65;
}
.eyebrow::before { border-right: none; }
.eyebrow::after { border-left: none; }
.eyebrow.on-dark { color: #8FB8FF; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--muted); line-height: 1.58; }

/* highlighter underline for key words — coral spark */
.mark-underline { background: linear-gradient(transparent 60%, rgba(255,90,79,.28) 0); padding: 0 .06em; }
.on-dark .mark-underline, .hero .mark-underline { background: linear-gradient(transparent 60%, rgba(255,90,79,.45) 0); }
.mark-underline.blue { background: linear-gradient(transparent 62%, rgba(31,111,235,.22) 0); }

/* ----------------------------------------------------------------------------
   3. Badges (used in hero card + section heads)
---------------------------------------------------------------------------- */
.badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 700; padding: .32rem .65rem; border-radius: var(--r-pill); line-height: 1; }
.badge-blue { background: var(--blue-050); color: var(--blue-700); }
.badge-navy { background: var(--navy); color: #fff; }
.badge-coral-solid { background: var(--coral); color: var(--navy); font-weight: 700; }

/* ----------------------------------------------------------------------------
   4. Buttons (prototype literal .btn classes — the homepage patterns use these;
   the theme's Core-block buttons live separately in finalarm-global.css)
---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  line-height: 1; padding: .92rem 1.5rem; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(31,111,235,.30); }
.btn-primary:hover { background: var(--blue-600); color: #fff; box-shadow: 0 14px 30px rgba(31,111,235,.38); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--grey-300); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-050); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); color: #fff; }

/* secondary = neutral white pill (used as the lighter hero/section action) */
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--grey-300); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* inline text CTA ("Weiterlesen") */
.link-cta { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--blue-700); }
.link-cta svg { width: 1em; height: 1em; transition: transform .18s var(--ease); }
.link-cta:hover svg { transform: translateX(3px); }

/* ----------------------------------------------------------------------------
   5. Hero (parallax dark hero + two-column grid + floating ranking card)
---------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 85% -10%, var(--navy-600) 0%, var(--navy) 42%, var(--navy-900) 100%);
  color: #EAF0F9;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(31,111,235,.45) 0%, transparent 65%); filter: blur(10px); pointer-events: none;
}
/* Prototype layout primitives (design-system.css) — needed by page content */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.4rem, 4vw, 3.6rem); }
.bg-grey { background: var(--grey-050); }
.bg-cool { background: var(--grey-100); }

.hero .container { position: relative; z-index: 2; }

/* parallax layers */
.hero-bg { position: absolute; inset: -35% 0 -10%; background-size: cover; background-position: center; will-change: transform; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,20,44,.94) 0%, rgba(0,33,78,.80) 46%, rgba(0,33,78,.42) 100%); }

.hero-inner { padding-block: clamp(3.4rem, 8vw, 6.5rem); max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lead { color: #B9C6DC; margin-top: 1.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust div { display: flex; align-items: center; gap: .6rem; color: #C7D3E6; font-size: .95rem; font-weight: 500; }
.hero-trust svg { width: 1.15rem; height: 1.15rem; color: #6FA8FF; flex: 0 0 auto; }

/* two columns + floating product/ranking card */
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-visual { position: relative; }
.hero-visual .stack-back { position: absolute; inset: 22px -16px -16px 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-xl); transform: rotate(3.5deg); }

/* ----------------------------------------------------------------------------
   6. Ranking card (the floating hero credibility widget)
---------------------------------------------------------------------------- */
.rank-card { position: relative; background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 1.3rem 1.3rem 1.5rem; }
.rank-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-spark); border-radius: var(--r-xl) var(--r-xl) 0 0; }
.rc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rc-head .eyebrow { font-size: .72rem; }
.rank-row { display: grid; grid-template-columns: 1.3rem 42px 1fr auto; gap: .85rem; align-items: center; padding: .75rem .8rem; border-radius: var(--r); border: 1px solid var(--grey-200); margin-bottom: .55rem; transition: transform .18s var(--ease); }
.rank-row:hover { transform: translateX(2px); }
.rank-row.is-top { border-color: var(--coral); box-shadow: 0 8px 22px rgba(255,90,79,.18); }
.rank-no { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-variant-numeric: tabular-nums; text-align: center; }
.rank-logo { width: 42px; height: 42px; border-radius: 10px; background: var(--grey-050); border: 1px solid var(--grey-200); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: .95rem; }
.rank-info b { display: block; font-size: .92rem; color: var(--navy); line-height: 1.2; }
.rank-info span { font-size: .78rem; color: var(--muted); }
.rank-score { font-family: var(--font-display); font-weight: 800; color: var(--coral); font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.rank-card .btn { margin-top: .7rem; }

/* ----------------------------------------------------------------------------
   7. Overlapping category strip (cards sit half over the hero photo)
---------------------------------------------------------------------------- */
.cat-strip-wrap { position: relative; z-index: 3; margin-top: calc(-1 * clamp(2.2rem, 5vw, 4rem)); }
.cat-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.7rem, 1.4vw, 1rem); }
.cat-card { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 1.2rem .9rem; box-shadow: var(--shadow); text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.cat-card .ci { width: 46px; height: 46px; border-radius: 13px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; margin: 0 auto .65rem; transition: background .2s, color .2s; }
.cat-card:hover .ci { background: var(--coral-050); color: var(--coral-600); }
.cat-card .ci svg { width: 1.45rem; height: 1.45rem; }
.cat-card b { display: block; font-size: .96rem; color: var(--navy); }
.cat-card span { font-size: .76rem; color: var(--faint); }

/* ----------------------------------------------------------------------------
   8. "In 3 Schritten" process with signature [index] numerals + sig-divider
---------------------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); position: relative; }
.process .step { position: relative; }
.step .step-no { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3vw, 2.6rem); color: var(--blue); font-variant-numeric: tabular-nums; line-height: 1; display: inline-flex; align-items: center; }
.step .step-no::before { content: "["; color: var(--coral); opacity: .6; margin-right: .12em; font-weight: 700; }
.step .step-no::after { content: "]"; color: var(--coral); opacity: .6; margin-left: .12em; font-weight: 700; }
.step h3 { margin-top: .8rem; font-size: 1.2rem; }
.step p { color: var(--muted); margin-top: .45rem; font-size: .98rem; }

/* engraved guilloché divider between sections (tokens define --guilloche*) */
.sig-divider { height: 28px; background-image: var(--guilloche); background-repeat: repeat-x; background-position: center; }
.sig-divider.on-dark { background-image: var(--guilloche-light); }
.sig-divider.center { -webkit-mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); mask: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); }

/* ----------------------------------------------------------------------------
   9. Signature stat lockup (big tabular numeral + hairline + caption)
---------------------------------------------------------------------------- */
.stat-lockup { display: inline-flex; flex-direction: column; gap: .35rem; }
.stat-lockup .val {
  font-family: var(--font-display); font-weight: 800; font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1; color: var(--navy); letter-spacing: -.02em;
}
.bg-navy .stat-lockup .val, .hero .stat-lockup .val { color: #fff; }
.stat-lockup .val sup { font-size: .42em; font-weight: 700; color: var(--blue); top: -1.1em; margin-left: .12em; }
.stat-lockup .cap {
  position: relative; padding-top: .55rem; font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}
.bg-navy .stat-lockup .cap, .hero .stat-lockup .cap { color: #9FB3D1; }
.stat-lockup .cap::before { content: ""; position: absolute; top: 0; left: 0; width: 28px; height: 2px; background: var(--blue); }
/* spark variant — coral hairline */
.stat-lockup.spark .cap::before { background: var(--coral); }

/* ----------------------------------------------------------------------------
   10. Engraved trust seal (Geprüft / Trust badge in trust sections)
---------------------------------------------------------------------------- */
.seal {
  width: 112px; height: 112px; border-radius: 50%; position: relative; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--navy); background: #fff;
  box-shadow: inset 0 0 0 1px var(--grey-200), inset 0 0 0 6px #fff, inset 0 0 0 7px rgba(0,33,78,.20), var(--shadow-sm);
}
.seal::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  background: repeating-conic-gradient(rgba(0,33,78,.5) 0 .55deg, transparent .55deg 7.2deg);
  -webkit-mask: radial-gradient(circle, transparent 38px, #000 39px); mask: radial-gradient(circle, transparent 38px, #000 39px);
}
.seal .seal-in { position: relative; text-align: center; line-height: 1; }
.seal .seal-in svg { width: 1.7rem; height: 1.7rem; color: var(--coral); margin-bottom: .25rem; }
.seal .seal-in b { display: block; font-family: var(--font-display); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

/* ----------------------------------------------------------------------------
   11. Responsive (prototype media queries for these sections only)
---------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------------------------
   FAQ (Homepage — ".faq-section" prototype markup)
   Ported from design-system.css because the homepage FAQ uses the prototype's
   .faq-section/.faq-q/.qbadge classes (NOT the WP .faq/.bg-g-2 article markup
   styled in finalarm-content.css). Light, minimal panel, hairline rows.
---------------------------------------------------------------------------- */
.faq-section { background: var(--grey-100); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.5rem); color: var(--ink); }
.faq-section > h2 { color: var(--navy); text-align: left; display: flex; align-items: center; justify-content: flex-start; gap: .55rem; margin-bottom: 1.1rem; font-size: clamp(1.35rem, 2.3vw, 1.75rem); }
.faq-section > h2 svg { width: 1.25rem; height: 1.25rem; color: var(--blue); }
.faq-list { display: block; max-width: 880px; margin-inline: 0; }
.faq-item { background: transparent; border: none; border-top: 1px solid var(--grey-200); border-radius: 0; }
.faq-item:first-child { border-top: none; }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.05rem .2rem; font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--navy); transition: color .16s var(--ease); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue-700); }
.faq-q .qbadge { display: none; }
.faq-q .plus { margin-left: auto; width: 1.2rem; height: 1.2rem; color: var(--blue); transition: transform .22s var(--ease); flex: 0 0 auto; }
.faq-item[open] .faq-q { color: var(--blue-700); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 1.8rem 1.2rem 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.65; }

/* Fixes 2026-07-06: Rail-Überschriften boxed (Container-Breite) statt full-bleed */
.finalarm-related-rail > .rail-head-h2 {
  max-width: var(--container);
  margin-inline: auto !important;
  padding-inline: var(--gutter) !important;
}

/* Blaue CTAs IMMER mit weißem Text (Link-Farben/Underlines übersteuern) */
a.btn-primary, a.btn-primary:visited, a.btn-primary:hover, a.btn-primary:focus,
.btn-primary, .btn-primary:hover { color: #fff !important; text-decoration: none !important; }
a.btn, a.btn:hover { text-decoration: none !important; }

/* Hero ohne rank-card: einspaltig, Inhalt in Lesebreite */
.hero-grid { display: block; }
.hero-inner { max-width: 780px; }

/* ---- Verlinkte Kennzahl im Hero (Infografiken), 07.09.2026 ---- */
a.stat-lockup { text-decoration: none; color: inherit; position: relative; transition: transform .18s ease; }
a.stat-lockup .cap { border-bottom: 1px solid rgba(255,255,255,.32); padding-bottom: 2px; transition: border-color .18s ease; }
a.stat-lockup:hover { transform: translateY(-2px); }
a.stat-lockup:hover .cap { border-bottom-color: #fff; }
a.stat-lockup:focus-visible { outline: 2px solid #fff; outline-offset: 6px; border-radius: 6px; }

/* ---- Rechner-Sektion, 07.09.2026 ---- */
.fa-calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 900px) { .fa-calc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fa-calc-grid { grid-template-columns: 1fr; } }

.fa-calc-card {
  display: flex; align-items: center; gap: .9rem;
  padding: .95rem 1.1rem; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r, 14px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fa-calc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.fa-calc-ico {
  flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--blue-050); color: var(--blue); border-radius: 10px;
}
.fa-calc-ico svg { width: 21px; height: 21px; }
.fa-calc-txt { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.fa-calc-txt b { font-weight: 700; color: var(--navy); line-height: 1.25; }
.fa-calc-txt span { font-size: .84rem; color: var(--ink); opacity: .62; line-height: 1.3; }
.fa-calc-arrow { margin-left: auto; flex: 0 0 auto; color: var(--grey-200); display: grid; place-items: center; }
.fa-calc-arrow svg { width: 18px; height: 18px; }
.fa-calc-card:hover .fa-calc-arrow { color: var(--blue); }

/* ---- Kanal-Sektion, 07.09.2026 ---- */
.fa-kanal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2rem; }
@media (max-width: 700px) { .fa-kanal-grid { grid-template-columns: 1fr; } }

.fa-kanal {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.15rem 1.3rem; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-lg, 22px);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fa-kanal:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.fa-kanal-ico {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  background: var(--grey-050); display: grid; place-items: center;
}
.fa-kanal-ico svg { width: 28px; height: 28px; }
.fa-kanal-txt { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.fa-kanal-txt b { font-weight: 700; color: var(--navy); font-size: 1.05rem; line-height: 1.2; }
.fa-kanal-platt { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); }
.fa-kanal-sub { font-size: .86rem; color: var(--ink); opacity: .62; line-height: 1.35; }
.fa-kanal-arrow { margin-left: auto; flex: 0 0 auto; color: var(--grey-200); display: grid; place-items: center; }
.fa-kanal-arrow svg { width: 19px; height: 19px; }
.fa-kanal:hover .fa-kanal-arrow { color: var(--blue); }

/* ---- Redaktionsteam-Rail ([fa_team], Startseite) ------------------------- */
.fa-team .section-head { margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.fa-team-rail-wrap { position: relative; }
.fa-team-rail {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding: .3rem .2rem 1rem;
}
.fa-team-rail::-webkit-scrollbar { display: none; }
.fa-team-rail-wrap.is-fit .fa-team-rail { justify-content: center; }
.fa-team-rail-wrap.is-fit .fa-team-nav { display: none; }
.fa-team-card {
  flex: 0 0 150px; width: 150px; text-align: center; text-decoration: none !important;
  color: inherit; display: block;
}
.fa-team-photo {
  width: 88px; height: 88px; margin: 0 auto .7rem; border-radius: 50%;
  overflow: hidden; background: #EEF2F7; border: 1px solid var(--grey-200, #E3E8EF);
  transition: transform .16s ease, box-shadow .16s ease;
}
.fa-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.fa-team-card:hover .fa-team-photo { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,33,78,.14); }
.fa-team-name { font-weight: 700; font-size: .95rem; line-height: 1.25; color: var(--navy); }
a.fa-team-card:hover .fa-team-name { text-decoration: underline; text-underline-offset: 3px; }
.fa-team-role { font-size: .8rem; line-height: 1.35; color: #5B6472; margin-top: .2rem; }
.fa-team-topics { font-size: .76rem; line-height: 1.35; color: #8A94A3; margin-top: .25rem; }
.fa-team-nav {
  position: absolute; top: 46px; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--grey-200, #E3E8EF);
  background: #fff; box-shadow: 0 4px 14px rgba(0,33,78,.12); cursor: pointer;
  z-index: 5; display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; color: var(--navy);
}
.fa-team-nav.prev { left: -14px; }
.fa-team-nav.next { right: -14px; }
.fa-team-nav:hover { background: #F5F8FC; }

/* ---- Prozess-Sektion auf Navy (Bereichstrenner) -------------------------- */
.bg-navy .section-head p, .bg-navy .step p { color: #B9C6DC; }
.bg-navy .step .step-no { color: #8FB8FF; }
