/* ============================================================
   HEALTH PAGE — EDITORIAL LIGHT REDESIGN
   ============================================================ */

/* ---- INTRO SPLIT ---- */
.hlt-intro {
  padding: 120px 0 80px;
  background: var(--ivory);
}

.hlt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width: 900px) {
  .hlt-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


.hlt-intro-img {
  position: relative;
  overflow: hidden;
}

.hlt-intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hlt-intro-img:hover img {
  transform: scale(1.03);
}

/* ---- FOUR FACTS STRIP ---- */
.hlt-facts-strip {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.hlt-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media(max-width: 900px) {
  .hlt-facts { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 500px) {
  .hlt-facts { grid-template-columns: 1fr; }
}

.hlt-fact {
  padding: 48px 36px;
  border-right: 1px solid var(--cream-dark);
  position: relative;
  transition: background 0.3s;
}

.hlt-fact:last-child {
  border-right: none;
}

.hlt-fact:hover {
  background: var(--white);
}

/* Gold bar appears on top on hover */
.hlt-fact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hlt-fact:hover::before {
  opacity: 1;
}

.hlt-fact-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.hlt-fact-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(184, 146, 58, 0.08);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  pointer-events: none;
}

.hlt-fact-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.hlt-fact p {
  font-size: 0.88rem;
  color: #6B6259;
  line-height: 1.85;
}

/* ---- VACCINE TIMELINE ---- */
.hlt-timeline-section {
  padding: 120px 0 0;
  background: var(--dark);
}

.hlt-timeline-header {
  max-width: 600px;
  margin-bottom: 72px;
}

.hlt-timeline-header .sec-label {
  color: var(--gold-lt);
}
.hlt-timeline-header .sec-label::before {
  background: var(--gold-lt);
}
.hlt-timeline-header .sec-title {
  color: var(--white);
}
.hlt-timeline-header .sec-title em {
  color: var(--gold-lt);
}

/* CARD GRID — 2 rows of 3 cards */
.hlt-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media(max-width: 900px) {
  .hlt-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 560px) {
  .hlt-timeline {
    grid-template-columns: 1fr;
  }
}

/* Single milestone card */
.hlt-tl-item {
  background: var(--dark-mid);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
  border: none;
}

.hlt-tl-item:hover {
  background: var(--dark-soft);
}

/* Giant week number as watermark */
.hlt-tl-marker {
  display: none; /* replaced by the week number approach */
}

.hlt-tl-week {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184, 146, 58, 0.12);
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.4s;
  letter-spacing: -0.02em;
}

.hlt-tl-item:hover .hlt-tl-week {
  color: rgba(184, 146, 58, 0.25);
}

/* Gold pip line above title */
.hlt-tl-body::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.hlt-tl-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.hlt-tl-body p {
  font-size: 0.88rem;
  color: rgba(240, 228, 192, 0.55);
  line-height: 1.85;
}

/* HIGHLIGHT CARD — Wk 10 Abgabe */
.hlt-tl-highlight {
  background: var(--gold);
  position: relative;
}

.hlt-tl-highlight:hover {
  background: var(--gold-lt);
}

.hlt-tl-highlight .hlt-tl-week {
  color: rgba(255, 255, 255, 0.2);
}

.hlt-tl-highlight:hover .hlt-tl-week {
  color: rgba(255, 255, 255, 0.3);
}

.hlt-tl-highlight .hlt-tl-body::before {
  background: rgba(255,255,255,0.6);
}

.hlt-tl-highlight .hlt-tl-title {
  color: var(--white);
  font-size: 1.45rem;
}

.hlt-tl-highlight .hlt-tl-body p {
  color: rgba(255, 255, 255, 0.8);
}

@media(max-width: 600px) {
  .hlt-tl-item { padding: 40px 28px; }
}

/* ---- GENETICS — CINEMATIC SPLIT ---- */
.hlt-genetics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

@media(max-width: 900px) {
  .hlt-genetics {
    grid-template-columns: 1fr;
  }
  .hlt-genetics-img {
    aspect-ratio: 16/9;
  }
}

.hlt-genetics-img {
  overflow: hidden;
  position: relative;
}

.hlt-genetics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hlt-genetics-img:hover img {
  transform: scale(1.04);
}

.hlt-genetics-content {
  background: var(--dark);
  padding: 100px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(max-width: 600px) {
  .hlt-genetics-content { padding: 60px 32px; }
}

/* Override sec-* colors for dark background */
.hlt-genetics-content .sec-label {
  color: var(--gold-lt);
}

.hlt-genetics-content .sec-label::before {
  background: var(--gold-lt);
}

.hlt-genetics-content .sec-title {
  color: var(--white);
}

.hlt-genetics-content .sec-title em {
  color: var(--gold-lt);
}

.hlt-genetics-content .sec-body {
  color: rgba(240, 228, 192, 0.65);
  max-width: 100%;
}

.hlt-genetics-content .gold-bar {
  background: var(--gold);
  opacity: 0.5;
}

.hlt-gen-sub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

@media(max-width: 900px) {
  .hlt-tl-item:hover {
    margin: 0;
    padding: 36px 0;
  }
}
