/* ============================================================
   EHNES – FC Burlafingen Widgets
   Nutzt die --fcb-* / --gray-* Tokens aus dem Child-Theme (style.css).
   Fallback-Werte, falls Tokens fehlen (Standalone-Sicherheit).
   ============================================================ */

.ehnes-hero,
.ehnes-hero * { box-sizing: border-box; }

/* --- Buttons (rechteckig, 4px, uppercase DemiBold) --- */
.ehnes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm, 4px);
  font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-fast, 120ms) var(--ease-out, ease);
}
.ehnes-btn--primary { background: var(--fcb-green, #00963F); color: var(--fcb-white, #fff); }
.ehnes-btn--primary:hover { background: var(--fcb-green-dark, #007331); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.ehnes-hero {
  position: relative;
  background: var(--fcb-green-deep, #0B4D26);
  overflow: hidden;
}
.ehnes-hero__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 543;
  min-height: 950px;
  overflow: hidden;
}

/* --- Ebene 0: Foto --- */
.ehnes-hero__photos { position: absolute; inset: 0; z-index: 1; }
.ehnes-hero__motif {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out, ease);
}
.ehnes-hero__motif.is-active { opacity: 1; visibility: visible; }
.ehnes-hero__imgbox {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%; min-width: 100%;
  aspect-ratio: 4096 / 1738;
}
.ehnes-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

/* --- Ebene 1: Headline --- */
.ehnes-hero__headline {
  position: absolute; left: 4.5%; top: 43%; z-index: 2;
  line-height: 1.02;
  font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-style: italic; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  font-size: clamp(44px, 7vw, 110px);
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.ehnes-hero__hl1, .ehnes-hero__hl2 { display: block; }
.ehnes-hero__hl2 { margin-left: 14vw; }

/* --- Ebene 2: Cutout --- */
.ehnes-hero__cutout {
  position: absolute; inset: 0; z-index: 3;
  overflow: hidden; pointer-events: none;
  opacity: 0; visibility: hidden;
}
.ehnes-hero__cutout.is-active { opacity: 1; visibility: visible; }
.ehnes-hero__cutout-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-out;
  will-change: transform;
}

/* --- Ebene 3: Schutzverläufe --- */
.ehnes-hero__scrim {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 22%,
    rgba(0,0,0,0) 58%, rgba(0,0,0,0.62) 100%);
}

/* --- Ebene 4: Sub-Copy + CTA --- */
.ehnes-hero__intro {
  position: absolute; left: 4.5%; bottom: 7%; z-index: 5;
  max-width: 520px; display: flex; flex-direction: column; gap: 18px;
}
.ehnes-hero__subcopy {
  margin: 0; color: var(--fcb-white, #fff);
  font-size: 19px; font-weight: 500; line-height: 1.45;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.ehnes-hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ehnes-hero__seclink {
  color: var(--fcb-white, #fff); text-decoration: none;
  font-weight: 600; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 2px solid var(--fcb-green, #00963F); padding-bottom: 3px;
}
.ehnes-hero__seclink:hover { color: var(--fcb-green-bright, #2AAC65); }

/* --- Ebene 4: Chips --- */
.ehnes-hero__chips {
  position: absolute; right: 4.5%; bottom: 7%; z-index: 5;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.ehnes-hero__chip {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 9px 14px; border-radius: var(--radius-sm, 4px);
}
.ehnes-hero__chip--normal { background: rgba(17,17,17,0.72); color: var(--fcb-white, #fff); }
.ehnes-hero__chip--gelb { background: var(--fcb-keeper-yellow, #F2C230); color: var(--fcb-black, #111); font-weight: 700; }

/* --- Ebene 5: Pfeile --- */
.ehnes-hero__nav {
  position: absolute; right: 4.5%; top: 50%; transform: translateY(-50%); z-index: 6;
  display: flex; flex-direction: column; gap: 10px;
}
.ehnes-hero__arrow {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-sm, 4px);
  background: rgba(17,17,17,0.45); color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background var(--duration-fast, 120ms) var(--ease-out, ease);
}
.ehnes-hero__arrow:hover { background: rgba(17,17,17,0.75); }

/* ============================================================
   LAUFBAND (Marquee) — größer, langsam, mit Hover-Info
   ============================================================ */
.ehnes-marquee-wrap { position: relative; z-index: 6; }
.ehnes-marquee {
  position: relative;
  margin: -30px -2vw 0;
  transform: rotate(-1.2deg);
  background: var(--fcb-green, #00963F);
  padding: 24px 0;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
}
.ehnes-marquee__track {
  display: inline-flex;
  will-change: transform;
  animation: ehnes-marquee-scroll var(--ehnes-marquee-speed, 60s) linear infinite;
}
.ehnes-marquee__set {
  display: inline-flex;
  align-items: center;
  color: var(--fcb-white, #fff);
  font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.06em;
}
.ehnes-marquee__game { cursor: help; padding: 2px 0; transition: opacity 0.15s ease; }
.ehnes-marquee__kw { color: var(--fcb-keeper-yellow, #F2C230); }
/* Anhalten bei Hover; nicht-fokussierte Spiele leicht abdunkeln */
.ehnes-marquee:hover .ehnes-marquee__track { animation-play-state: paused; }
.ehnes-marquee.is-focus .ehnes-marquee__game { opacity: 0.45; }
.ehnes-marquee.is-focus .ehnes-marquee__game.is-hover { opacity: 1; }
@keyframes ehnes-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
  .ehnes-marquee__track { animation: none; }
}

/* Info-Fenster (Tooltip) zum Spiel — über dem Hero */
.ehnes-marquee__tooltip {
  position: fixed;
  z-index: 999;
  min-width: 260px; max-width: 360px;
  background: var(--fcb-white, #fff);
  color: var(--fcb-black, #111);
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  padding: 16px 18px;
  pointer-events: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  border-top: 3px solid var(--fcb-green, #00963F);
}
.ehnes-marquee__tooltip.is-visible { opacity: 1; transform: translateY(0); }
.ehnes-marquee__tooltip .tt-kw {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fcb-white, #fff);
  background: var(--fcb-green, #00963F); padding: 3px 8px; border-radius: 3px; margin-bottom: 8px;
}
.ehnes-marquee__tooltip .tt-kw.is-away { background: var(--fcb-anthracite, #2B2E2C); }
.ehnes-marquee__tooltip .tt-comp {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fcb-green, #00963F); margin-bottom: 4px;
}
.ehnes-marquee__tooltip .tt-teams {
  font-family: var(--fcb-font, "Xyngia", sans-serif); font-style: italic; font-weight: 900;
  text-transform: uppercase; font-size: 19px; line-height: 1.1; color: var(--fcb-black, #111); margin-bottom: 8px;
}
.ehnes-marquee__tooltip .tt-row { display: flex; gap: 8px; font-size: 14px; color: var(--gray-700, #333); line-height: 1.5; }
.ehnes-marquee__tooltip .tt-row b { color: var(--fcb-black, #111); font-weight: 700; }

/* ============================================================
   SPIELTAG — Ergebnis / Spielplan / Tabelle
   ============================================================ */
.ehnes-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--fcb-black, #111);
  border-radius: var(--radius-sm, 4px);
  background: var(--fcb-white, #fff);
  padding: 18px 24px;
}
.ehnes-score__team { font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: 0.02em; }
.ehnes-score__team--away { text-align: right; }
.ehnes-score__value {
  font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-style: italic; font-weight: 900;
  color: var(--fcb-black, #111);
  line-height: 1;
}
.ehnes-score--sm .ehnes-score__value { font-size: 28px; }
.ehnes-score--md .ehnes-score__value { font-size: 40px; }
.ehnes-score--lg .ehnes-score__value { font-size: 56px; }

.ehnes-fixtures { display: flex; flex-direction: column; gap: 10px; }
.ehnes-fixture {
  display: flex; gap: 18px; align-items: center;
  background: var(--fcb-white, #fff);
  border: 1px solid var(--border-default, #DFE3E0);
  border-radius: var(--radius-sm, 4px);
  padding: 14px 18px;
}
.ehnes-fixture__when { display: flex; flex-direction: column; min-width: 96px; }
.ehnes-fixture__date { font-weight: 700; font-size: 14px; color: var(--fcb-black, #111); }
.ehnes-fixture__time { font-size: 13px; color: var(--text-muted, #6F7671); }
.ehnes-fixture__main { display: flex; flex-direction: column; gap: 2px; }
.ehnes-fixture__comp { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fcb-green, #00963F); }
.ehnes-fixture__pair { font-size: 16px; font-weight: 700; color: var(--fcb-black, #111); }
.ehnes-fixture__venue { font-size: 13px; color: var(--text-muted, #6F7671); }

.ehnes-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ehnes-table th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted, #6F7671); padding: 8px 10px; border-bottom: 2px solid var(--fcb-black, #111);
}
.ehnes-table td { padding: 10px; border-bottom: 1px solid var(--border-default, #DFE3E0); }
.ehnes-table__num, .ehnes-table th.ehnes-table__num { text-align: center; }
.ehnes-table__pos { width: 32px; color: var(--text-muted, #6F7671); font-weight: 700; }
.ehnes-table__team { font-weight: 600; color: var(--fcb-black, #111); }
.ehnes-table__pts { font-weight: 800; color: var(--fcb-black, #111); }
.ehnes-table tr.is-highlight td { background: var(--fcb-green, #00963F); color: #fff; border-bottom-color: transparent; }
.ehnes-table tr.is-highlight .ehnes-table__pos { color: rgba(255,255,255,0.85); }
.ehnes-table tr.is-highlight .ehnes-table__team { color: #fff; font-weight: 800; }
.ehnes-table tr.is-highlight .ehnes-table__pts { color: #fff; }
.ehnes-table tr.is-highlight td:first-child { border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
.ehnes-table tr.is-highlight td:last-child { border-top-right-radius: 6px; border-bottom-right-radius: 6px; }

/* ============================================================
   SPIELTAG-BLOCK (kombiniertes Widget mit Team-Tabs)
   ============================================================ */
.ehnes-spieltag__head {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 32px;
}
.ehnes-spieltag__title {
  margin: 0; font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-style: italic; font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em;
  font-size: 44px; color: var(--fcb-black, #111);
}
.ehnes-spieltag__sub {
  font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fcb-green, #00963F);
}
/* Tabs linksbündig auf eigener Zeile unter „Spieltag" */
.ehnes-spieltag__tabs { display: flex; flex-wrap: wrap; gap: 8px; flex-basis: 100%; margin: 6px 0 0; }
.ehnes-spieltag__tab {
  border: 1px solid var(--border-default, #DFE3E0); background: var(--fcb-white, #fff);
  color: var(--gray-700, #333); font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius-sm, 4px); cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ehnes-spieltag__tab:hover { border-color: var(--fcb-green, #00963F); color: var(--fcb-green, #00963F); }
.ehnes-spieltag__tab.is-active { background: var(--fcb-green, #00963F); border-color: var(--fcb-green, #00963F); color: #fff; }

.ehnes-spieltag__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start; }
.ehnes-spieltag__label {
  margin: 0 0 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray-500, #6F7671);
}
.ehnes-spieltag__col > .ehnes-spieltag__label:not(:first-child) { margin-top: 28px; }
.ehnes-spieltag__empty { color: var(--gray-500, #6F7671); font-size: 14px; margin: 0; }
.ehnes-spieltag__loading { padding: 48px 0; text-align: center; color: var(--gray-500, #6F7671); font-size: 15px; }
.ehnes-spieltag__panel { min-height: 120px; }
.ehnes-spieltag__tablelink { margin: 14px 0 0; }
.ehnes-spieltag__tablelink a {
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fcb-green, #00963F); text-decoration: none;
}

/* Einklappbare Tabelle: Farbverlauf + „Mehr laden" */
.ehnes-tablebox { position: relative; }
.ehnes-tablebox__scroll { overflow: hidden; }
.ehnes-tablebox__fade {
  height: 90px; margin-top: -90px; position: relative; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--surface-page, #fff) 90%);
}
.ehnes-tablebox:not(.is-collapsed) .ehnes-tablebox__fade { display: none; }
.ehnes-tablebox__more {
  display: block; width: 100%; margin-top: 12px;
  background: transparent; border: 1px solid var(--border-default, #DFE3E0); border-radius: var(--radius-sm, 4px);
  color: var(--fcb-green, #00963F); font-family: var(--fcb-font, "Xyngia", sans-serif);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px; cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ehnes-tablebox__more:hover { background: var(--fcb-green, #00963F); color: #fff; border-color: var(--fcb-green, #00963F); }

/* Score-Bar (3 Segmente: Heim dunkel · Ergebnis grün · Gast hell) */
.ehnes-mscore {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  border-radius: var(--radius-sm, 4px); overflow: hidden; min-height: 72px;
}
.ehnes-mscore__home, .ehnes-mscore__away {
  display: flex; align-items: center; padding: 0 22px;
  font-weight: 800; text-transform: uppercase; font-size: clamp(16px, 1.4vw, 22px); letter-spacing: 0.01em;
}
.ehnes-mscore__home { background: var(--fcb-black, #111); color: var(--fcb-white, #fff); }
.ehnes-mscore__away { background: var(--gray-100, #EFF1EF); color: var(--fcb-black, #111); justify-content: flex-end; text-align: right; }
.ehnes-mscore__val {
  display: flex; align-items: center; padding: 0 22px;
  background: var(--fcb-green, #00963F); color: #fff;
  font-family: var(--fcb-font, "Xyngia", sans-serif); font-style: italic; font-weight: 900; font-size: 32px;
}
.ehnes-mscore--empty { display: block; border: 2px dashed var(--border-default, #DFE3E0); color: var(--gray-500, #6F7671); padding: 22px; text-align: center; }

/* Kommende Spiele */
.ehnes-mfixtures { display: flex; flex-direction: column; }
.ehnes-mfix {
  display: flex; align-items: center; gap: 18px; padding: 16px 0;
  border-bottom: 1px solid var(--border-default, #DFE3E0);
}
.ehnes-mfix:first-child { padding-top: 0; }
.ehnes-mfix__when { min-width: 92px; display: flex; flex-direction: column; }
.ehnes-mfix__date { font-weight: 700; font-size: 15px; color: var(--fcb-black, #111); }
.ehnes-mfix__time { font-size: 13px; color: var(--gray-500, #6F7671); }
.ehnes-mfix__main { flex: 1; }
.ehnes-mfix__pair { font-size: 16px; color: var(--fcb-black, #111); }
.ehnes-mfix__pair b { font-weight: 700; }
.ehnes-mfix__vs { color: var(--gray-500, #6F7671); font-weight: 500; margin: 0 4px; }
.ehnes-mfix__meta { font-size: 13px; color: var(--gray-500, #6F7671); margin-top: 3px; }
.ehnes-mfix__badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-sm, 4px);
}
.ehnes-mfix__badge.is-home { background: var(--fcb-green, #00963F); color: #fff; }
.ehnes-mfix__badge.is-away { background: var(--gray-100, #EFF1EF); color: var(--gray-700, #333); }

@media (max-width: 1024px) {
  .ehnes-spieltag__grid { grid-template-columns: 1fr; gap: 40px; }
  .ehnes-spieltag__tabs { margin-left: 0; width: 100%; }
}

/* ============================================================
   MANNSCHAFTEN — Slider
   ============================================================ */
.ehnes-teams { position: relative; }
.ehnes-teams__track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px;
}
.ehnes-teams__track::-webkit-scrollbar { display: none; }
.ehnes-team {
  position: relative; flex: 0 0 var(--ehnes-card-w, 320px); height: 380px;
  border-radius: var(--radius-md, 8px); overflow: hidden; text-decoration: none;
  scroll-snap-align: start; display: flex; flex-direction: column; justify-content: flex-end;
}
.ehnes-team__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ehnes-team__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%); }
.ehnes-team__label { position: relative; z-index: 2; padding: 18px 20px; }
.ehnes-team__name { display: block; color: var(--fcb-white, #fff); font-family: var(--fcb-font, "Xyngia", sans-serif); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 25px; line-height: 1.05; }
.ehnes-team__sub { display: block; color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; margin-top: 4px; }
.ehnes-team--typo { justify-content: space-between; padding: 20px; }
.ehnes-team--green { background: var(--fcb-green, #00963F); }
.ehnes-team--dark { background: var(--fcb-green-dark, #007331); }
.ehnes-team__letter { color: var(--fcb-white, #fff); font-family: var(--fcb-font, "Xyngia", sans-serif); font-style: italic; font-weight: 900; font-size: 150px; line-height: 0.85; }
.ehnes-team--typo .ehnes-team__label { padding: 0; }
.ehnes-teams__nav { position: absolute; top: -64px; right: 0; display: flex; gap: 10px; }
.ehnes-teams__arrow {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.45); border-radius: var(--radius-sm, 4px);
  background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  transition: background var(--duration-fast,120ms) var(--ease-out,ease);
}
.ehnes-teams__arrow:hover { background: rgba(255,255,255,0.12); }
.ehnes-teams__empty { color: rgba(255,255,255,0.7); }

/* ============================================================
   TRAINER — Spiele-Pflege (Front-end-Formular)
   ============================================================ */
.ehnes-trainer { max-width: 820px; }
.ehnes-trainer__bar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.ehnes-trainer__title { margin: 0; font-family: var(--fcb-font, "Xyngia", sans-serif); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 28px; color: var(--fcb-black, #111); }
.ehnes-trainer__logout, .ehnes-trainer__cancel { color: var(--fcb-green, #00963F); text-decoration: none; font-weight: 600; font-size: 14px; }
.ehnes-trainer__msg { padding: 12px 16px; border-radius: var(--radius-sm, 4px); margin-bottom: 16px; font-size: 14px; }
.ehnes-trainer__msg--saved, .ehnes-trainer__msg--deleted { background: var(--fcb-green-tint, #E5F4EB); color: var(--fcb-green-dark, #007331); }
.ehnes-trainer__msg--invalid { background: #FBE9E9; color: var(--fcb-loss-red, #C43E3E); }
.ehnes-trainer__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  background: var(--fcb-white, #fff); border: 1px solid var(--border-default, #DFE3E0);
  border-radius: var(--radius-md, 8px); padding: 22px 24px;
}
.ehnes-trainer__field { display: flex; flex-direction: column; gap: 5px; }
.ehnes-trainer__field--wide { grid-column: 1 / -1; }
.ehnes-trainer__field span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500, #6F7671); }
.ehnes-trainer__field input {
  font: inherit; font-size: 15px; padding: 10px 12px;
  border: 1px solid var(--gray-300, #C4CAC6); border-radius: var(--radius-sm, 4px); background: #fff; color: var(--fcb-black, #111);
}
.ehnes-trainer__field input:focus { outline: none; border-color: var(--fcb-green, #00963F); box-shadow: var(--focus-ring); }
.ehnes-trainer__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; margin-top: 4px; }

.ehnes-trainer__listtitle { margin: 32px 0 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-500, #6F7671); }
.ehnes-trainer__list { display: flex; flex-direction: column; }
.ehnes-trainer__item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border-default, #DFE3E0); }
.ehnes-trainer__item-main { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ehnes-trainer__item-team { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fcb-green, #00963F); }
.ehnes-trainer__item-pair { font-weight: 700; color: var(--fcb-black, #111); }
.ehnes-trainer__item-meta { font-size: 13px; color: var(--gray-500, #6F7671); }
.ehnes-trainer__item-actions { display: flex; align-items: center; gap: 12px; }
.ehnes-trainer__item-actions a { color: var(--fcb-green, #00963F); text-decoration: none; font-size: 14px; font-weight: 600; }
.ehnes-trainer__item-actions form { margin: 0; }
.ehnes-trainer__del { background: none; border: none; color: var(--fcb-loss-red, #C43E3E); cursor: pointer; font-size: 14px; font-weight: 600; padding: 0; }
.ehnes-trainer__empty { color: var(--gray-500, #6F7671); }
.ehnes-trainer--login { max-width: 380px; }
.ehnes-trainer--login .ehnes-trainer__title { margin-bottom: 12px; }

@media (max-width: 767px) {
  .ehnes-trainer__form { grid-template-columns: 1fr; }
  .ehnes-trainer__item { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE  (Breakpoints 1024 / 767)
   ============================================================ */
@media (max-width: 1024px) {
  .ehnes-hero__stage { min-height: 620px; }
  .ehnes-hero__headline { font-size: clamp(36px, 9vw, 64px); }
  .ehnes-hero__hl2 { margin-left: 10vw; }
  .ehnes-hero__cutout { display: none; }
  .ehnes-hero__chips { display: none; }
  .ehnes-hero__nav {
    top: auto; bottom: 5%; right: 4.5%; transform: none; flex-direction: row;
  }
}
@media (max-width: 767px) {
  .ehnes-hero__intro { max-width: none; right: 4.5%; }
  .ehnes-hero__headline { white-space: normal; }
  .ehnes-hero__hl2 { margin-left: 0; }
}
