/* ==========================================================================
   TSV 1919 – Fitness
   Ausgelagert aus Page-Code-Injection (head) am 2026-08-15.
   Die drei ursprünglichen CSS-Blöcke (Block 1: Hero/Layout/Cards, Block 2:
   Tel/CTA, Block 3: roter Anrufen-Button) wurden in exakt derselben Reihen-
   folge und unverändert übernommen (keine Deduplizierung, keine Zusammen-
   führung, keine Property-Umsortierung, keine Hover-Vereinfachung).
   Nachscoping: alle bisher unscoped .tsv-fit-*-Regeln wurden verhaltens-
   neutral um body.page-fitness ergänzt (.tsv-fit-* kommt ausschließlich
   auf /fitness vor; keine konkurrierenden Regeln in Shared-Sources/Theme;
   einheitliches Präfix erhält die relative Spezifität und Kaskadenreihen-
   folge auf der Seite). Bereits vorhandene body.page-fitness-Selektoren
   wurden unverändert belassen.
   ========================================================================== */



/* ===== FITNESS – CLEAN FINAL (Hero wie /dart/) ===== */

body.page-fitness .article-header,
body.page-fitness .article-header *{
  display:none !important;
}

/* Full width */
body.page-fitness .gh-content,
body.page-fitness .gh-content.gh-canvas{
  max-width:none !important;
  padding:0 !important;
}

/* Wrapper */
body.page-fitness .tsv-fit{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  color:rgba(255,255,255,.95);
}

/* ================= HERO (wie Dart) ================= */
body.page-fitness .tsv-fit-hero{
  position:relative;
  height:clamp(420px,64vh,760px);
  overflow:hidden;
  isolation:isolate;
  background:#111;
}

body.page-fitness .tsv-fit-hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;

  /* <- exakt wie Dart */
  object-position:center 28%;
  transform:scale(1.02);

  z-index:0;
}

body.page-fitness .tsv-fit-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;

  /* <- exakt wie Dart */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.08) 55%,
    rgba(0,0,0,.45) 80%,
    rgba(0,0,0,.72) 100%
  );
}

body.page-fitness .tsv-fit-hero-title{
  position:absolute;
  top:clamp(86px,13vh,160px);
  left:50%;
  transform:translateX(-50%);
  z-index:2;

  width:min(1100px, calc(100% - 40px));
  text-align:center;
  color:#fff;
  text-shadow:0 14px 40px rgba(0,0,0,.70);
}

body.page-fitness .tsv-fit-hero-title h1{
  margin:0;
  font-size:clamp(26px,3.6vw,48px);
  font-weight:950;
  letter-spacing:.2px;
}

/* ================= PANEL ================= */
body.page-fitness .tsv-fit-panel{
  padding:28px 0 48px;
}
body.page-fitness .tsv-fit-panel > *{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* ================= CARDS ================= */
body.page-fitness .tsv-fit-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media(max-width:900px){
  body.page-fitness .tsv-fit-cards{ grid-template-columns:1fr; }
}

/* ================= CARD ================= */
body.page-fitness .tsv-fit-card{
  background:rgba(18,18,20,.75);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:18px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 18px 45px rgba(0,0,0,.45);
}

/* CARD HEADER */
body.page-fitness .tsv-fit-card__top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
body.page-fitness .tsv-fit-ico{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.08);
}
body.page-fitness .tsv-fit-card__title{
  font-weight:900;
  font-size:16px;
}

/* TEXT */
body.page-fitness .tsv-fit-rows{
  display:grid;
  gap:10px;
  font-size:14px;
  line-height:1.5;
}

/* CONTACT */
body.page-fitness .tsv-fit-contact{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:14px;
  align-items:center;
}
body.page-fitness .tsv-fit-avatar{
  width:72px;
  height:72px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.2);
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
body.page-fitness .tsv-fit-contact__name{
  font-weight:900;
  font-size:15px;
}
body.page-fitness .tsv-fit-contact__meta{
  font-size:13px;
  opacity:.9;
}


/* Fitness – Tel/CTA */
body.page-fitness .tsv-fit-tel{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-fitness .tsv-fit-actions{ margin-top: 10px; }

body.page-fitness .tsv-fit-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 18px rgba(0,0,0,.28);
}

body.page-fitness .tsv-fit-btn:hover{
  background: rgba(0,0,0,.26);
  border-color: rgba(255,255,255,.22);
}


/* ===== Fitness – Anrufen Button ROT ===== */

body.page-fitness .tsv-fit-actions{
  margin-top: 10px;
}

body.page-fitness .tsv-fit-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 38px;
  padding: 0 18px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;

  color: #fff !important;
  text-decoration: none !important;

  background: linear-gradient(
    180deg,
    rgba(196,0,20,.95),
    rgba(90,0,10,.95)
  );

  border: 1px solid rgba(255,255,255,.18);

  box-shadow:
    0 12px 26px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.18);

  transition: transform .15s ease, filter .15s ease;
}

body.page-fitness .tsv-fit-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

body.page-fitness .tsv-fit-btn:active{
  transform: translateY(0);
  filter: brightness(.98);
}

