/* ============================================================
   8-DAY KENYA HIGHLIGHTS SAFARI — page-specific overrides
   Builds on kilimanjaro.css for all shared component styles
   ============================================================ */

/* ── HERO IMAGE ─────────────────────────────────────────── */
.kh-page .ki-hero .hero-img {
  background-image: url('assets/mara-plains.webp');
  background-position: center 40%;
}

/* ── CLOSING CTA IMAGE ──────────────────────────────────── */
.kh-page .ki-closing .closing-bg {
  background-image: url('assets/mara-balloons.webp');
  background-position: center 35%;
}

/* ── 6-STOP RAIL (8 days) ───────────────────────────────── */
/* The Kilimanjaro page has 3 stops; here we have 6.
   The vline on the last stop should not extend. */
.kh-page .rs-vline-last { display: none; }

/* Bracket groupings on the rail */
.rs-bracket {
  border-left: 2px solid rgba(212,196,160,0.2);
  margin-left: 8px; padding-left: 12px;
  position: relative;
}
.rs-bracket::before, .rs-bracket::after {
  content: '';
  position: absolute; left: -1px;
  width: 8px; height: 2px;
  background: rgba(212,196,160,0.2);
}
.rs-bracket::before { top: 0; }
.rs-bracket::after  { bottom: 0; }
