/* ================================================================
   GhanaTRVL — Custom Stylesheet
   Bootstrap 5 native. Zero Canvas / CNVS dependencies.

   Structure:
   01. Design Tokens (:root)
   02. Base Reset & Typography
   03. Colour-coding badge system
   04. Navbar & Topbar
   05. Mobile App Menu
   06. Social Share Sidebar
   07. Hero Section
   08. Marquee Strip
   09. Section Labels (eyebrow / sh2 / sdesc)
   10. Destination Cards (.dcard)
   11. Events Section
   12. Article Cards (.acard)
   13. Places to Stay Cards (.scard)
   14. Why Section
   15. Industry / Business Section
   16. Newsletter Band
   17. Community Section
   18. Footer
   19. Legal Pages
   20. Utility Helpers
   21. Klaro Cookie Consent
   22. Result pages

   Last updated: 2026-05
================================================================ */

/* ================================================================
   01. DESIGN TOKENS
================================================================ */
:root {
  /* Brand colours */
  --dv: #230f42; /* Dark violet — primary dark */
  --mv: #592d8c; /* Medium violet — primary */
  --ye: #f6ee27; /* Yellow — primary accent */
  --gr: #c5dc64; /* Green — secondary accent */
  --bk: #1e0e0d; /* Near-black body text */
  --tx: #2a1f3d; /* Prose/body text — more neutral than --dv's violet, used for long-form reading */
  --wh: #f4f6fa; /* Off-white background */
  --wh2: #eceaf4; /* Tinted white — alternate bg */
  --wh3: #ffffff; /* Pure white background — use where a section must not carry --wh's cool undertone */
  --mu: #6b5f7a; /* Muted purple — secondary text */
  --rule: rgba(89, 45, 140, 0.12); /* Subtle divider colour */

  /* Font stacks */
  --ff-h: "Plus Jakarta Sans", sans-serif; /* Headings & UI */
  --ff-b: "Plus Jakarta Sans", sans-serif; /* Body */
  --ff-s: "Source Serif 4", Georgia, serif; /* Editorial / italic */

  /* Bootstrap overrides */
  --bs-body-font-family: var(--ff-b);
  --bs-body-bg: var(--wh);
  --bs-body-color: var(--bk);

  /* Background relief images */
  --bg-img-yellow: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-yellow.jpg");
  --bg-img-green: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-green.jpg");
  --bg-img-purple: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-purple.jpg");
  --bg-img-light-purple: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-light-purple.jpg");
  --bg-img-white: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-white.jpg");
  --bg-img-dark-purple: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-relief-dark-purple.jpg");
  --bg-img-white-green: url("https://core.ghanatrvl.com/images/backgrounds/ghanatrvl-background-white-relief-green.jpg");
  --bg-card-green: #c5dc6470;

  /* Content type colour palette — HEX */
  --home: #034872;
  --travel-insights: #ff8600;
  --places-to-see: #6f42c1;
  --work-travel: #0fa3b1;
  --culture-and-people: #007bff;
  --food: #e83e8c;
  --how-to: #dc3545;
  --transportation: #13a774;
  --destinations: #034872;
  --travel-guides: #ff8600;
  --bars: #e83e8c;
  --restaurants: #e83e8c;
  --events: #007bff;
  --activities: #0fa3b1;
  --transport: #13a774;
  --hospitality: #034872;
  --about-us: #ffc107;

  /* Content type colour palette — RGB (for rgba() use) */
  --home-rgb: 3, 72, 114;
  --travel-insights-rgb: 255, 134, 0;
  --places-to-see-rgb: 111, 66, 193;
  --work-travel-rgb: 15, 163, 177;
  --culture-and-people-rgb: 0, 123, 255;
  --food-rgb: 232, 62, 140;
  --how-to-rgb: 220, 53, 69;
  --transportation-rgb: 19, 167, 116;
  --destinations-rgb: 3, 72, 114;
  --travel-guides-rgb: 255, 134, 0;
  --bars-rgb: 232, 62, 140;
  --restaurants-rgb: 232, 62, 140;
  --events-rgb: 0, 123, 255;
  --activities-rgb: 15, 163, 177;
  --transport-rgb: 19, 167, 116;
  --hospitality-rgb: 3, 72, 114;
  --about-us-rgb: 255, 193, 7;
}

/* ================================================================
   02. BASE RESET & TYPOGRAPHY
================================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-b);
  background: var(--wh);
  color: var(--bk);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Background relief utility classes */
.bg-img-purple {
  background-image: var(--bg-img-purple);
}
.bg-img-yellow {
  background-image: var(--bg-img-yellow);
}
.bg-img-green {
  background-image: var(--bg-img-green);
}
.bg-img-light-purple {
  background-image: var(--bg-img-light-purple);
}
.bg-img-dark-purple {
  background-image: var(--bg-img-dark-purple);
}
.bg-img-white {
  background-image: var(--bg-img-white);
}
.bg-img-white-green {
  background-image: var(--bg-img-white-green);
}
.card-bg-green {
  background-color: var(--bg-card-green) !important;
}

/* Scroll offset for sticky navbar — applies to all anchor targets */
h1,
h2,
h3,
h4,
h5,
h6 {
  scroll-margin-top: 90px;
}

.fa-stack {
  vertical-align: middle;
  width: 1.25em;
  height: 1em;
  line-height: 1.25em;
}

.fa-stack-1x {
  line-height: inherit;
}
/* ================================================================
   03. COLOUR-CODING BADGE SYSTEM
   Used on article/listing type labels
================================================================ */
.home {
  color: var(--home);
  background: rgba(var(--home-rgb), 0.1);
}
.travel-insight {
  color: var(--travel-insights);
  background: rgba(var(--travel-insights-rgb), 0.1);
}
.places-to-see {
  color: var(--places-to-see);
  background: rgba(var(--places-to-see-rgb), 0.1);
}
.work-travel {
  color: var(--work-travel);
  background: rgba(var(--work-travel-rgb), 0.1);
}
.culture-and-heritage {
  color: var(--culture-and-people);
  background: rgba(var(--culture-and-people-rgb), 0.1);
}
.food {
  color: var(--food);
  background: rgba(var(--food-rgb), 0.1);
}
.how-to {
  color: var(--how-to);
  background: rgba(var(--how-to-rgb), 0.1);
}
.transportation {
  color: var(--transportation);
  background: rgba(var(--transportation-rgb), 0.1);
}
.destinations {
  color: var(--destinations);
  background: rgba(var(--destinations-rgb), 0.1);
}
.travel-guides {
  color: var(--travel-guides);
  background: rgba(var(--travel-guides-rgb), 0.1);
}
.bars {
  color: var(--bars);
  background: rgba(var(--bars-rgb), 0.1);
}
.restaurants {
  color: var(--restaurants);
  background: rgba(var(--restaurants-rgb), 0.1);
}
.events {
  color: var(--events);
  background: rgba(var(--events-rgb), 0.1);
}
.activities {
  color: var(--activities);
  background: rgba(var(--activities-rgb), 0.1);
}
.transport {
  color: var(--transport);
  background: rgba(var(--transport-rgb), 0.1);
}
.hospitality {
  color: var(--hospitality);
  background: rgba(var(--hospitality-rgb), 0.1);
}
.about-us {
  color: var(--about-us);
  background: rgba(var(--about-us-rgb), 0.1);
}

/* ================================================================
   04. NAVBAR & TOPBAR
   .gt-nav        — main sticky navbar
   .gt-topbar     — Ghana flag colour bar, nested inside .gt-nav so it stays sticky
   .navbar-main   — alias used on the same <nav> element
   .navbar-brand  — logo wrapper
   .logo-default  — the logo <img>
   Dropdown menu classes used in __menu_main_body.php /
   __menu_main_col.php: .dropdown-menu.w-70,
   .dropdown-header-panel, .dropdown-section-title,
   .dropdown-item
================================================================ */

/* Sticky navbar */
.gt-nav {
  background: var(--wh) !important;
  min-height: 64px;
  box-shadow: 0 4px 20px rgba(35, 15, 66, 0.15);
  transition:
    min-height 0.3s,
    box-shadow 0.3s;
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Scrolled state — toggled by JS when user passes 60px */
.gt-nav.scrolled {
  min-height: 48px;
  box-shadow: 0 2px 12px rgba(35, 15, 66, 0.25);
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.gt-nav.scrolled .nav-link {
  padding: 0.35rem 0.7rem !important;
}
.gt-nav.scrolled .btn-cta {
  padding: 7px 15px;
  font-size: 10.5px;
}

/* Logo */
.navbar-brand {
  display: inline-flex;
  align-items: center;
}
.logo-default {
  max-height: 46px;
  width: auto;
}

/* Nav links */
.gt-nav .nav-link,
.navbar-main .nav-link {
  font-family: var(--ff-h);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--dv) !important;
  border-bottom: 2px solid transparent;
  padding: 0.5rem clamp(0.35rem, 0.5vw, 0.75rem);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.gt-nav .nav-link:hover,
.gt-nav .nav-link.active,
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--mv) !important;
  border-bottom-color: var(--mv);
}

/* Mega dropdown — full-width centred panel */
.navbar .dropdown-menu.w-70 {
  width: clamp(280px, 70vw, 1500px);
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(35, 15, 66, 0.14);
  padding: 0;
  overflow: hidden;
}

/* Dark image-backed header panel inside dropdown */
.dropdown-header-panel {
  color: var(--wh);
  padding: 1.25rem 1.5rem;
}
.dropdown-header-panel h6 {
  color: var(--wh);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.dropdown-header-panel p {
  color: rgba(244, 246, 250, 0.9);
  font-size: 0.8rem;
  margin: 0;
}

/* Section title inside dropdown columns */
.dropdown-section-title {
  font-family: var(--ff-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mv);
  padding: 0.85rem 0.75rem 0.3rem;
}

/* Second sub-heading in a stacked column
   needs extra clearance from the group above */
.dropdown-col .dropdown-section-title:not(:first-child) {
  padding-top: 1.25rem;
}

/* Dropdown items — transparent at rest,
   shape defined by margin and border-radius */
.dropdown-item {
  font-family: var(--ff-b);
  font-size: clamp(0.8rem, 0.8vw, 0.875rem);
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  margin: 1px 6px;
  border-radius: 5px;
  color: var(--bk);
  position: relative;
  background: transparent !important;
  white-space: normal;
  transition:
    background 0.15s,
    color 0.15s,
    box-shadow 0.15s;
}

.dropdown-item:hover {
  background: transparent !important;
  color: var(--mv);
  box-shadow: none;
}

.dropdown-item:hover::before {
  content: "";
  position: absolute;
  inset: 0 6px 0 0;
  background: rgba(89, 45, 140, 0.08);
  border-radius: 5px;
  box-shadow: inset 6px 0 0 var(--mv);
  z-index: -1;
}

/* Column vertical separator */
.dropdown-col {
  padding: 0.5rem 4px 0.5rem 0;
  overflow: hidden;
  border-right: 1px solid var(--rule);
}
.dropdown-col:last-child {
  border-right: none;
}

/* Mega dropdown panel */
.navbar .dropdown-menu.w-70 {
  width: clamp(280px, 70vw, 1500px);
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0;
  border: none;
  border-top: 3px solid var(--mv);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(35, 15, 66, 0.14);
  padding: 0;
  overflow: hidden;
}

/* Mobile (< lg) — .dropdown-col switches from col-3 (25% each, desktop) to
   col-12 (full width) in __menu_main_body.php, so the panel needs to stack
   inside the navbar-collapse instead of floating as a centred fixed-width
   overlay, and the column separators need to run horizontal, not vertical. */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu.w-70 {
    position: static;
    width: 100%;
    left: auto;
    transform: none;
    border-radius: 0;
    box-shadow: none;
  }
  .dropdown-col {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem 0;
  }
  .dropdown-col:last-child {
    border-bottom: none;
  }

  /* #navbarMain sits inside .gt-nav (position:sticky, top:0). An opened
     mega-menu can grow taller than the viewport, and a stuck sticky element
     that overflows the viewport traps that overflow — page-level scroll
     can't reach it. Bounding the panel and scrolling it internally instead
     (nav height 64px + app-menu tab bar height 64px, both existing
     conventions used elsewhere in this file) avoids that trap. */
  #navbarMain {
    max-height: calc(100vh - 128px);
    max-height: calc(100dvh - 128px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Ghana flag topbar — moved inside .gt-nav (2026-07-20, tester feedback) so it scrolls
   with the sticky nav instead of being left behind above it.
   .gt-nav carries navbar-expand-lg, which forces flex-wrap:nowrap at lg+ breakpoints —
   so a flex-basis:100% item can't force its own line, it just gets squeezed into
   whatever space is left (seen as a stray sliver next to the last nav item). Taking it
   out of flex flow with absolute positioning avoids that entirely; .gt-nav's
   position:sticky already gives it a positioning context, no extra change needed there. */
.gt-topbar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  transition: height 0.3s;
  background: linear-gradient(
    90deg,
    #cf0921 0%,
    #cf0921 33%,
    var(--ye) 33%,
    var(--ye) 66%,
    #006b3f 66%,
    #006b3f 100%
  );
}

/* Half height once .gt-nav.scrolled is toggled (JS, 60px scroll threshold) */
.gt-nav.scrolled .gt-topbar {
  height: 3px;
}

/* CTA button in nav */
.btn-cta {
  background: var(--ye);
  color: var(--dv);
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 9px 18px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--gr);
  color: var(--dv);
}

/* ================================================================
   NAV SEARCH — .gt-nav-search, .gt-search-toggle, .gt-search-form,
   .gt-search-form-mobile, .gt-search-input, .gt-search-submit
   Site-wide (__menu.php, every page). Desktop: icon toggles an
   inline expanding form, flex sibling after .navbar-collapse so it
   stays right-aligned without disturbing the centred main nav.
   Mobile: plain always-visible form inside the existing hamburger
   collapse panel, no 6th bottom-tab icon needed.
================================================================ */
.gt-nav-search {
  align-items: center;
  margin-left: 12px;
}
.gt-search-toggle {
  background: none;
  border: none;
  color: var(--dv);
  font-size: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.gt-search-toggle:hover,
.gt-search-toggle[aria-expanded="true"] {
  background: rgba(89,45,140,.08);
  color: var(--mv);
}

.gt-search-form {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width .22s ease, opacity .18s ease;
  margin-left: 0;
}
.gt-search-form.gt-search-form--open {
  width: 220px;
  opacity: 1;
  margin-left: 8px;
}

.gt-search-form-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
}

.gt-search-input {
  font-family: var(--ff-h);
  font-size: 13px;
  color: var(--dv);
  background: var(--wh2);
  border: 1.5px solid var(--rule);
  border-radius: 20px;
  padding: 7px 14px;
  width: 100%;
  min-width: 0;
  transition: border-color .18s;
}
.gt-search-input:focus {
  outline: none;
  border-color: var(--mv);
  background: #fff;
}
.gt-search-input::placeholder { color: var(--mu); }

.gt-search-submit {
  background: none;
  border: none;
  color: var(--mv);
  font-size: 14px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-search-submit:hover { color: var(--dv); }

/* ================================================================
   05. MOBILE APP MENU
   .app-menu, .app-menu-container, .app-menu-item,
   .app-menu-link, .app-menu-style-2
   Fixed bottom tab bar on small screens (d-lg-none)
================================================================ */
.app-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--wh);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -4px 16px rgba(35, 15, 66, 0.1);
}

.app-menu-container {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

.app-menu-item {
  flex: 1;
}

.app-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px 10px;
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mu);
  text-decoration: none;
  gap: 3px;
  transition: color 0.2s;
}
.app-menu-link i {
  font-size: 1.2rem;
}
.app-menu-link:hover,
.app-menu-link.active {
  color: var(--mv);
}

/* ================================================================
   06. SOCIAL SHARE SIDEBAR
   .social-share-sidebar, .si-icon, .si-label
   Fixed right-edge expand-on-hover share buttons
   Colour classes set inline from DB: .bg-facebook etc
================================================================ */
.social-share-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.social-share-sidebar a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 38px;
  width: 38px;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  text-decoration: none;
  color: #f4f6fa;
  transition:
    width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s;
}
.social-share-sidebar a:hover {
  width: 148px;
}
.social-share-sidebar a:hover .si-label {
  opacity: 1;
  transform: translateX(0);
}

/* Muted per-platform treatment for the sidebar specifically: solid var(--wh)
   background, border and icon/label text in that platform's own brand colour.
   The .bg-* classes themselves are left untouched (comment above notes they're
   "set inline from DB" and may be reused elsewhere) — everything here is scoped
   to .social-share-sidebar only. */
.social-share-sidebar a {
  border: 1.5px solid;
  background-color: var(--wh) !important;
}
.social-share-sidebar a.bg-facebook {
  border-color: #3b5998;
  color: #3b5998;
}
.social-share-sidebar a.bg-linkedin {
  border-color: #0e76a8;
  color: #0e76a8;
}
.social-share-sidebar a.bg-whatsapp {
  border-color: #25d366;
  color: #25d366;
}
.social-share-sidebar a.bg-x-twitter {
  border-color: #010101;
  color: #010101;
}
.social-share-sidebar a.bg-pinterest {
  border-color: #c8232c;
  color: #c8232c;
}
.social-share-sidebar a.bg-rss {
  border-color: #ee802f;
  color: #ee802f;
}
.social-share-sidebar a.bg-email3 {
  border-color: #6567a5;
  color: #6567a5;
}
/* .si-label hardcodes color:#f4f6fa (white) for the original dark-background design,
   which read as white-on-white against the new var(--wh) fill. Higher specificity
   than the plain .si-label rule, so this wins without needing !important. */
.social-share-sidebar a .si-label {
  color: inherit;
}

.si-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  order: 2;
}
.si-label {
  font-family: var(--ff-h);
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 12px;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.18s 0.06s ease,
    transform 0.18s 0.06s ease;
  order: 1;
  color: #f4f6fa;
}

/* .ss-toggle - mobile-only entry point for .social-share-sidebar. Desktop keeps the
   existing always-visible hover-to-expand icon stack unchanged; below the breakpoint the
   full stack is hidden and replaced by this single button, tapping it reveals the same
   icons (2026-08-29 - the sidebar previously had zero mobile handling, permanently
   occupying the fixed right edge at full size on every screen width). */
.ss-toggle {
  display: none;
}

@media (max-width: 767.98px) {
  .ss-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--rule);
    border-radius: 6px 0 0 6px;
    background: var(--wh);
    color: var(--mv);
    font-size: 1rem;
    cursor: pointer;
  }
  .social-share-sidebar a {
    display: none;
  }
  .social-share-sidebar.ss-open a {
    display: flex;
  }
}

/* ================================================================
   07. HERO SECTION
   .hero — full-height section with background image
   Overlay layers (stacked bottom→top):
     .h-scrim  — uniform dark coat
     .h-grad   — directional gradient
     .h-atm    — brand violet tints
     .h-patt   — subtle Kente-inspired grid
     .h-circle — rotating decorative ring
     .h-bar    — accent vertical line
   Content:
     .hero-inner, .h-eyebrow, .hero-h1, .hero-intro
     .aud-pills, .ap (.t / .b variants)
     .hsearch
     .h-event-box, .h-article-box (right-column cards)
     .h-statsbar, .hstat, .hstat-n, .hstat-l
================================================================ */

.hero {
  background-color: var(--dv);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Hero background image — replaces CSS background-image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Layer 1 — base scrim */
.h-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

/* Layer 2 — directional gradient */
.h-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 4, 22, 0.72) 0%,
      rgba(10, 4, 22, 0.35) 35%,
      rgba(10, 4, 22, 0.1) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 4, 22, 0.8) 0%,
      rgba(10, 4, 22, 0.2) 45%,
      transparent 85%
    );
  pointer-events: none;
}

/* Layer 3 — brand atmosphere */
.h-atm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 15%,
      rgba(89, 45, 140, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 55% at 5% 85%,
      rgba(35, 15, 66, 0.55) 0%,
      transparent 55%
    );
  pointer-events: none;
}

/* Layer 4 — Kente-inspired grid texture */
.h-patt {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 30px,
      rgba(246, 238, 39, 0.04) 30px,
      rgba(246, 238, 39, 0.04) 32px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 60px,
      rgba(197, 220, 100, 0.02) 60px,
      rgba(197, 220, 100, 0.02) 62px
    );
  pointer-events: none;
}

/* Decorative rotating ring */
.h-circle {
  position: absolute;
  right: -80px;
  top: 30px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(246, 238, 39, 0.1);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.h-circle::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  border: 1px solid rgba(197, 220, 100, 0.07);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Accent vertical bar */
.h-bar {
  position: absolute;
  top: 0;
  right: 220px;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--ye) 30%,
    var(--gr) 70%,
    transparent
  );
  opacity: 0.22;
  pointer-events: none;
}

/* Hero content wrapper */
.hero-inner {
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

/* Eyebrow label */
.h-eyebrow {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ye);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: up 0.8s ease both;
}
.h-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--ye);
  display: block;
  flex-shrink: 0;
}

/* Main heading */
.hero-h1 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  animation: up 0.8s 0.1s ease both;
}

.hero-h1-span {
  color:var(--ye);
}

/* Intro paragraph */
.hero-intro {
  font-family: var(--ff-s);
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin-bottom: 28px;
  animation: up 0.8s 0.2s ease both;
}
.hero-intro strong {
  font-style: normal;
  font-family: var(--ff-h);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Audience pills */
.aud-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: up 0.8s 0.3s ease both;
}

.ap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 2px;
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.2s;
}
.ap.t {
  background: var(--ye);
  color: var(--dv);
  border-color: var(--ye);
}
.ap.t:hover {
  background: var(--gr);
  color: var(--dv);
}
.ap.b {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
}
.ap.b:hover {
  background: rgba(89, 45, 140, 0.5);
  border-color: rgba(246, 238, 39, 0.4);
  color: var(--ye);
}

/* Hero search bar */
.hsearch {
  display: flex;
  max-width: 500px;
  border: 2px solid rgba(246, 238, 39, 0.3);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s;
  animation: up 0.8s 0.4s ease both;
}
.hsearch:focus-within {
  border-color: var(--ye);
}
.hsearch input {
  flex: 1;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  padding: 13px 16px;
  font-family: var(--ff-b);
  font-size: 14px;
  color: #fff;
  outline: none;
}
.hsearch input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hsearch button {
  background: var(--ye);
  border: none;
  padding: 0 20px;
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dv);
  cursor: pointer;
  transition: background 0.18s;
}
.hsearch button:hover {
  background: var(--gr);
}

/* Right-column: event box */
.h-event-box {
  background: rgba(89, 45, 140, 0.35);
  border: 1px solid rgba(246, 238, 39, 0.15);
  border-radius: 4px;
  padding: 18px 20px;
  max-width: 300px;
  width: 100%;
  text-align: center;
}
.h-event-img {
  max-height: 180px;
}
.h-event-eyebrow {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  color: var(--ye);
  margin-bottom: 10px;
  gap: 7px;
}
.h-event-title {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.h-event-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

/* Right-column: article box */
.h-article-box {
  background: rgba(35, 15, 66, 0.65);
  border: 1px solid rgba(197, 220, 100, 0.15);
  border-radius: 4px;
  padding: 16px 20px;
  max-width: 270px;
  width: 100%;
  text-align: center;
}
.h-article-img {
  max-height: 90px;
}
.h-article-eyebrow {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  color: var(--gr);
  margin-bottom: 10px;
  gap: 7px;
}
.h-article-title {
  font-family: var(--ff-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.h-article-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px;
  font-weight: 300;
}

/* Shared small button used in hero boxes */
.h-button {
  font-size: 11px;
  padding: 6px 14px;
}

/* Stats bar below hero */
.h-statsbar {
  position: relative;
  z-index: 10;
  background: rgba(35, 15, 66, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(246, 238, 39, 0.15);
}
.hstat {
  padding: 14px 16px;
  border-right: 1px solid rgba(246, 238, 39, 0.1);
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: var(--ff-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ye);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hstat-l {
  font-family: var(--ff-b);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}
.hstat-l strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1px;
}

/* Shared animation keyframe */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   07-B. PAGE HERO — standard page title component
   __page_title.php
   Replaces .legal-hero (§19) and Canvas page-title-parallax.
   Used on: all static pages, legal pages, about-us, and any page
   using __page_title.php.
   Distinct from .hero (homepage, 90vh) and .rp-hero / .art-hero
   (listing/article pages defined in addon stylesheets).

   Structure:
     .page-hero                 — base with background image
     .page-hero--text-only      — no image variant (legal/policy pages)
     .page-hero__grad           — directional gradient overlay (z-index 1)
     .page-hero__atm            — brand atmosphere overlay (z-index 2)
     .page-hero__inner          — content wrapper (z-index 10)
     .page-hero__h1             — H1 style
     .page-hero__subtitle       — subtitle paragraph
     .meta-pill                 — shared with legal-hero, already defined
     .breadcrumb-bar            — shared with legal-hero, already defined
================================================================ */

.page-hero {
  background-color: var(--dv);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 38vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 3px solid var(--ye);
}

/* Text-only variant — no image, no overlay layers, flat --dv surface */
.page-hero--text-only {
  background-image: none !important;
  min-height: auto;
  padding: 2.5rem 0 2rem;
}

/* Overlay layer 1 — directional gradient */
.page-hero--grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 4, 22, 0.66) 0%,
      rgba(10, 4, 22, 0.4) 50%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 4, 22, 0.6) 0%,
      rgba(10, 4, 22, 0.1) 40%,
      transparent 75%
    );
  pointer-events: none;
  z-index: 1;
}
/* Overlay layer 2 — brand atmosphere, violet radial tints */
.page-hero--atm {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 15%,
      rgba(89, 45, 140, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 55% at 5% 85%,
      rgba(35, 15, 66, 0.3) 0%,
      transparent 55%
    );
  pointer-events: none;
  z-index: 2;
}

/* Content wrapper — sits above both overlay layers */
.page-hero--inner {
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* 2026-08-31 - same 80px as .rp-hero:has(.rp-statsbar) .hero-inner (result-pages-addon-v4.css,
   Marcel's confirmed value after live testing) - carried over by assumption since .h-statsbar
   shares the same markup/styling as .rp-statsbar, not independently checked here (no .page-hero
   page with a populated stats bar has actually been seen rendered). Verify against a real one
   if a region/grouped page ever shows stats. */
.page-hero:has(.h-statsbar) .page-hero--inner {
  padding-bottom: 80px;
}

/* .h-statsbar is shared with the homepage's own .hero (__home_section_hero.php) - scoped
   override here, not a change to the base .h-statsbar rule, so this only takes effect inside
   .page-hero and the homepage's stats bar is completely unaffected (deliberately excluded from
   this whole hero-alignment pass - homepage keeps its own bigger, bolder treatment). */
.page-hero .h-statsbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/* H1 */
.page-hero--h1 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Subtitle */
.page-hero--subtitle {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  max-width: 640px;
}

.page-hero .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-h);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}
.page-hero .meta-pill i {
  font-size: 0.7rem;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .page-hero {
    min-height: clamp(220px, 32vh, 320px);
  }
  .page-hero__inner {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

/* ================================================================
   08. MARQUEE STRIP
   .mstrip, .mtrack
================================================================ */
.mstrip {
  background: var(--ye);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}
.mtrack {
  display: inline-flex;
  gap: 44px;
  animation: mq 80s linear infinite;
  padding-right: 44px;
}
.mtrack span {
  font-family: var(--ff-s);
  font-size: 13px;
  color: var(--dv);
  white-space: nowrap;
}
.mtrack .st {
  font-family: var(--ff-b);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--mv);
  align-self: center;
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================================================
   09. SECTION LABELS
   .eyebrow / .eyebrow-mv (same intent, dark section variant)
   .eyebrow-ye (light section variant — yellow text)
   .sh2 — section heading
   .sdesc — section description
================================================================ */
.eyebrow,
.eyebrow-mv {
  font-family: var(--ff-h);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mv);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before,
.eyebrow-mv::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ye);
  display: block;
  flex-shrink: 0;
}

.eyebrow-ye {
  font-family: var(--ff-h);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ye);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow-ye::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ye);
  display: block;
  flex-shrink: 0;
}

.sh2 {
  font-family: var(--ff-h);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dv);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.sh2 em {
  font-style: italic;
  color: var(--mv);
  text-transform: none;
}

.sdesc {
  font-family: var(--ff-b);
  font-size: 14px;
  color: var(--mu);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Tier icon pill — geometry only, colour via tier-* classes ── */
.tier-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

/* tier level colour */
.tier-starter {
  color: var(--mu);
  background-color: rgba(107, 95, 122, 0.15);
}
.tier-silver {
  color: var(--mv);
  background-color: rgba(89, 45, 140, 0.15);
}
.tier-gold {
  /* Icon colour decoupled from the tint's hue — raising the tint's opacity
     alone can't fix this pairing, since at higher opacity the tint approaches
     the icon's own colour (at 1.0 they'd be identical). var(--dv) guarantees
     contrast regardless of the tint underneath; same treatment already used
     for the "plus Website" tier variants (dark icon on a solid tint). */
  color: var(--dv);
  background-color: rgba(246, 238, 39, 0.4);
}
.tier-platinum {
  color: var(--dv);
  background-color: rgba(197, 220, 100, 0.4);
}
.tier-gold-web {
  color: var(--dv);
  background-color: rgba(246, 238, 39, 0.85);
}
.tier-platinum-web {
  color: var(--dv);
  background-color: rgba(197, 220, 100, 0.85);
}

/* ================================================================
   10. BUTTONS
   .btn-p — primary (yellow fill)
   .btn-o — outline (dark purple border)
   .btn-g — ghost (semi-transparent, for dark backgrounds)
================================================================ */
.btn-p {
  background: var(--ye);
  color: var(--dv);
  border: none;
  padding: 11px 22px;
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.18s,
    transform 0.2s;
}
.btn-p:hover {
  background: var(--gr);
  color: var(--dv);
  transform: translateY(-2px);
}

.btn-o {
  background: transparent;
  color: var(--dv);
  border: 2px solid var(--dv);
  padding: 9px 20px;
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.18s;
}
.btn-o:hover {
  background: var(--dv);
  color: var(--ye);
}

.btn-g {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.18s;
}
.btn-g:hover {
  background: rgba(89, 45, 140, 0.5);
  border-color: rgba(246, 238, 39, 0.4);
  color: var(--ye);
}

/* List a TSP button — used in .site-header context */
.btn-list-tsp {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--ye);
  color: var(--dv);
  border: none;
  border-radius: 4px;
  padding: 0.45rem 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.1s;
}
.btn-list-tsp:hover {
  background: #fffb6e;
  color: var(--dv);
  transform: translateY(-1px);
}

/* Button size modifier — large */
.btn-p.btn--lg,
.btn-o.btn--lg,
.btn-g.btn--lg {
  font-size: 14px;
  padding: 16px 40px;
  letter-spacing: 0.12em;
}

/* ================================================================
   11. DESTINATION CARDS (.dcard)
   Used in __home_section_regions.php
================================================================ */
.dcard {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
}
.dcard:hover {
  transform: translateY(-5px);
}
.dcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ye), var(--gr));
  z-index: 3;
}

/* Gradient fallbacks shown while/if image fails to load */
.dg-a {
  background: linear-gradient(
    145deg,
    #0a0618 0%,
    #1a0a3a 40%,
    #3a1878 70%,
    #592d8c 100%
  );
}
.dg-b {
  background: linear-gradient(
    145deg,
    #080d18 0%,
    #142038 40%,
    #203858 70%,
    #346890 100%
  );
}
.dg-c {
  background: linear-gradient(
    145deg,
    #180a08 0%,
    #401808 40%,
    #783028 70%,
    #a05840 100%
  );
}
.dg-d {
  background: linear-gradient(
    145deg,
    #0a1408 0%,
    #183018 40%,
    #285028 70%,
    #407840 100%
  );
}
.dg-e {
  background: linear-gradient(
    145deg,
    #181008 0%,
    #403020 40%,
    #786040 70%,
    #b09060 100%
  );
}
.dg-f {
  background: linear-gradient(
    145deg,
    #081018 0%,
    #1a2848 40%,
    #305880 70%,
    #50a0b8 100%
  );
}

/* .dim wraps the <img> — acts as the gradient fallback container */
.dim {
  transition: transform 0.5s ease;
}
.dcard:hover .dim {
  transform: scale(1.06);
}

/* Real destination photo */
.dcard .dest-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.dcard:hover .dest-photo {
  transform: scale(1.06);
}

/* .dcard-contain — for source images that are portrait/tall (e.g. the Ghana
   region map thumbnails in __regions_listing.php), where the default cover
   fit crops off the marked area. Full image visible, letterboxed by the
   card's background gradient instead of cropped. */
.dcard.dcard-contain .dest-photo {
  object-fit: contain;
}

/* Overlay gradient — dark at bottom, clear at top */
.dov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 6, 30, 0.92) 0%,
    rgba(14, 6, 30, 0.15) 55%,
    transparent 80%
  );
}

/* Text body at bottom of card */
.dbody {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 16px;
  z-index: 2;
}
.dreg {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr);
  margin-bottom: 3px;
}
.dname {
  font-family: var(--ff-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.dcard.lg .dname {
  font-size: 1.55rem;
}

/* ================================================================
   12. EVENTS SECTION
   .eitem, .ebox, .eday, .emon, .etitle, .eloc, .etag, .eimg
   .evt-box (submit CTA panel)
================================================================ */
.eitem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
}
.eitem:first-child {
  border-top: 1px solid var(--rule);
}
.eitem:hover {
  background: rgba(89, 45, 140, 0.04);
  margin: 0 -8px;
  padding: 14px 8px;
}

.ebox {
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  background: var(--dv);
  border-radius: 4px;
  padding: 8px 4px;
}
.eday {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ye);
  line-height: 1;
  letter-spacing: -0.02em;
}
.emon {
  font-family: var(--ff-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.eimg {
  height: 100px;
  width: max-content;
  max-width: none !important;
}
.etitle {
  font-family: var(--ff-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dv);
  margin-bottom: 2px;
  line-height: 1.2;
}
.eloc {
  font-size: 12px;
  color: var(--mu);
  font-weight: 300;
}
.etag {
  font-family: var(--ff-h);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mv);
  background: rgba(89, 45, 140, 0.1);
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 3px;
}

.evt-box {
  background: var(--dv);
  border-radius: 4px;
  padding: 26px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: var(--bg-img-dark-purple);
}
.evt-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 30%,
    rgba(89, 45, 140, 0.5) 0%,
    transparent 60%
  );
}

/* ================================================================
   13. ARTICLE CARDS (.acard)
   Used in __home_section_articles.php / __home_section_what_to_do.php
================================================================ */
.acard {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.acard::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--ye), var(--gr));
  flex-shrink: 0;
}
.acard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(35, 15, 66, 0.12);
}
.acard:hover .art-photo {
  transform: scale(1.05);
}

.acimg {
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .aci is the gradient/emoji fallback inside .acimg */
.aci {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.12);
  transition: transform 0.5s ease;
}

/* Real article photo */
.acard .art-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.acbody {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.accat {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.accat i { font-size: 10px; }
.actitle {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dv);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.acdesc {
  font-size: 13px;
  color: var(--mu);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  margin-bottom: 12px;
}
.acmeta {
  font-size: 11px;
  color: var(--mu);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.md {
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: var(--mu);
}

/* ================================================================
   14. PLACES TO STAY CARDS (.scard)
   Used in __home_section_places_to_stay.php
================================================================ */
.scard {
  background: var(--dv);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
  text-decoration: none;
}
.scard:hover {
  transform: translateY(-4px);
}
.scard:hover .stay-photo {
  transform: scale(1.05);
}

.scimg {
  height: 190px;
  position: relative;
  transition: transform 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.scov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 6, 30, 0.9) 0%,
    rgba(14, 6, 30, 0.2) 55%,
    transparent 80%
  );
}
.sprice {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ye);
  color: var(--dv);
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 2px;
}

/* Real stay photo */
.scard .stay-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.scbody {
  padding: 14px 16px;
}
.scname {
  font-family: var(--ff-h);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.scloc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}
.sctags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.st {
  font-family: var(--ff-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}
.st-y {
  background: var(--ye);
  color: var(--dv);
}
.st-g {
  background: var(--gr);
  color: #1a3a00;
}
.st-m {
  background: rgba(89, 45, 140, 0.5);
  color: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   15. WHY SECTION
   .why-band, .wcard, .wi, .why-h2, .why-p
================================================================ */
.why-band {
  background: var(--dv);
  position: relative;
  overflow: hidden;
  background-image: var(--bg-img-dark-purple);
}
.why-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 80% at 85% 30%,
      rgba(89, 45, 140, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 70%,
      rgba(246, 238, 39, 0.04) 0%,
      transparent 45%
    );
}
.why-band::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ye), var(--gr), var(--mv));
}

.wcard {
  background: rgba(89, 45, 140, 0.18);
  border: 1px solid rgba(246, 238, 39, 0.08);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  transition:
    background 0.2s,
    transform 0.25s;
  height: 100%;
}
.wcard:hover {
  background: rgba(89, 45, 140, 0.35);
  transform: translateY(-4px);
}
.wcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 28px;
  height: 3px;
  background: var(--ye);
}
.wi {
  font-size: 1.8rem;
  margin: 12px 0;
  display: block;
}
.wcard h4 {
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 8px;
}
.wcard p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin: 0;
}
.why-h2 {
  font-family: var(--ff-h);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 0.96;
  margin-bottom: 8px;
}
.why-p {
  font-family: var(--ff-s);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 400px;
}

/* Light surface card — for use on --wh and --wh2 section backgrounds */
.wcard-light {
  background: var(--wh);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.25s;
  height: 100%;
}
.wcard-light:hover {
  transform: translateY(-4px);
  border-color: rgba(89, 45, 140, 0.25);
}
.wcard-light h3,
.wcard-light h4 {
  font-family: var(--ff-h);
  font-weight: 700;
  color: var(--bk);
}
.wcard-light p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--bk);
  margin: 0;
}

/* ================================================================
   16. INDUSTRY / BUSINESS SECTION
   .ind-band, .bcard, .bicon, .blink, .ind-h1, .ind-h2
================================================================ */
.ind-band {
  background: var(--wh2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.bcard {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 22px 20px;
  height: 100%;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.bcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mv);
  border-radius: 4px 4px 0 0;
}
.bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35, 15, 66, 0.1);
}
.bicon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--dv);
  display: flex;
  color: var(--wh);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.bcard h4 {
  font-family: var(--ff-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--dv);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.bcard p {
  font-size: 13.5px;
  color: var(--mu);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 12px;
}
.blink {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mv);
  text-decoration: none;
  transition: color 0.18s;
}
.blink:hover {
  color: var(--dv);
}
.blink::after {
  content: " →";
}
.ind-h1 {
  font-family: var(--ff-h);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ye);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ind-h2 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
  font-weight: 500;
}

/* ================================================================
   17. NEWSLETTER BAND
   .nl-band, .nl-form, .nl-i, .nl-b
================================================================ */
.nl-band {
  background: var(--mv);
  position: relative;
  overflow: hidden;
}
.nl-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 24px,
      rgba(246, 238, 39, 0.04) 24px,
      rgba(246, 238, 39, 0.04) 26px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 24px,
      rgba(197, 220, 100, 0.03) 24px,
      rgba(197, 220, 100, 0.03) 26px
    );
}
.nl-form {
  display: flex;
  border: 2px solid rgba(246, 238, 39, 0.3);
  border-radius: 2px;
  overflow: hidden;
  max-width: 420px;
  transition: border-color 0.2s;
}
.nl-form:focus-within {
  border-color: var(--ye);
}
.nl-i {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  padding: 12px 16px;
  font-family: var(--ff-b);
  font-size: 14px;
  color: #fff;
  outline: none;
}
.nl-i::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.nl-b {
  background: var(--ye);
  border: none;
  padding: 0 20px;
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dv);
  cursor: pointer;
  transition: background 0.18s;
}
.nl-b:hover {
  background: var(--gr);
}

/* ================================================================
   18. COMMUNITY SECTION
   .comm-quote, .cite
================================================================ */
.comm-quote {
  font-family: var(--ff-s);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dv);
  margin-bottom: 14px;
  border: none;
  padding: 0;
}
.cite {
  font-family: var(--ff-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--mu);
  letter-spacing: 0.06em;
  font-style: normal;
}

/* ================================================================
   19. FOOTER
   Structure: <footer id="footer" class="dark">
     #footer — outer wrapper, dark background
     .footer-widgets-wrap — inner padded content area
     .col-mb-50 — row spacing utility (Canvas replacement)
     .widget — column content block
     .footer-logo — logo image
     .footer-text — intro blurb + hashtag
     .footer-icons — social icon row
     .footer-links — nav link columns (Travellers / Businesses / etc.)
     .title-font — column heading style
     .social-icon.si-small + .h-bg-* — social icon buttons
     #copyrights — bottom bar
     .copyright-links — legal links in bottom bar
================================================================ */

/* ── Outer footer wrapper ── */
#footer {
  background-color: var(--dv);
  border-top: 4px solid rgba(246, 238, 39, 0.2);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

/* ── Inner content padding ── */
#footer .footer-widgets-wrap {
  padding: 4rem 0 2.5rem;
}

/* ── Dark theme text & link colours (class="dark" on <footer>) ── */
#footer .footer-widgets-wrap,
.dark#footer .footer-widgets-wrap {
  color: rgba(255, 255, 255, 0.7);
}
#footer .footer-widgets-wrap a,
.dark#footer .footer-widgets-wrap a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s;
}
#footer .footer-widgets-wrap a:hover,
.dark#footer .footer-widgets-wrap a:hover {
  color: var(--ye);
}

/* ── col-mb spacing utility — Bootstrap-native replacement for Canvas col-mb-* ── */
[class*="col-mb-"] {
  margin-bottom: 0;
} /* reset Canvas negative margin trick */
[class*="col-mb-"] > .col,
[class*="col-mb-"] > [class*="col-"] {
  padding-bottom: var(--col-mb, 50px);
}
.col-mb-30 {
  --col-mb: 30px;
}
.col-mb-50 {
  --col-mb: 50px;
}
.col-mb-80 {
  --col-mb: 80px;
}

/* ── Widget blocks ── */
.widget {
  position: relative;
  margin-top: 0;
}
.widget p {
  line-height: 1.7;
}
.widget:first-child {
  margin-top: 0;
}

/* ── Logo ── */
.footer-logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

/* ── Intro text block ── */
.footer-text {
  font-family: var(--ff-b);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}

/* ── Social icons row ── */
.footer-icons {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Social icon base ──
   Two <i> tags stack vertically inside a fixed-height overflow:hidden
   container. At rest: first icon visible. On hover: both shift up by
   one icon-height, hiding the first and revealing the second (which
   carries the brand colour background via .h-bg-* on the <a>).
── */
.social-icon {
  --si-size: 2rem;
  --si-fs: 0.875rem;
  position: relative;
  display: inline-flex;
  flex-direction: column; /* stack icons vertically */
  align-items: center;
  width: var(--si-size);
  height: var(--si-size);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  overflow: hidden; /* clips the second icon until hover */
  transition:
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.social-icon.si-small {
  --si-size: 2rem;
  --si-fs: 0.875rem;
}

/* Each icon fills exactly one slot height */
.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--si-size);
  height: var(--si-size);
  font-size: var(--si-fs);
  flex-shrink: 0;
  transition: margin-top 0.28s ease;
}

/* On hover: shift both icons up by one slot — first hides, second appears */
.social-icon:hover i:first-child {
  margin-top: calc(var(--si-size) * -1);
}

/* Second icon always white (sits on brand colour background) */
.social-icon i:last-child {
  color: #fff;
}

.social-icon:hover {
  border-color: transparent;
  color: #fff;
}

/* ── Google Preferred Sources badge — sits below the social icon row ── */
.google-pref-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-left: 5px;
  padding: 7px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--ff-h);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.google-pref-badge i {
  font-size: 0.95rem;
}
.google-pref-badge:hover {
  background-color: #4285F4;
  border-color: transparent;
  color: #fff;
}

/* ── Social brand colours — all platforms used in footer & share sidebar ── */
.bg-facebook,
.h-bg-facebook:hover {
  background-color: #3b5998 !important;
}
.bg-linkedin,
.h-bg-linkedin:hover {
  background-color: #0e76a8 !important;
}
.bg-whatsapp,
.h-bg-whatsapp:hover {
  background-color: #25d366 !important;
}
.bg-twitter,
.h-bg-twitter:hover {
  background-color: #00acee !important;
}
.bg-x-twitter,
.h-bg-x-twitter:hover {
  background-color: #010101 !important;
}
.bg-instagram,
.h-bg-instagram:hover {
  background-color: #e1306c !important;
}
.bg-youtube,
.h-bg-youtube:hover {
  background-color: #ff0000 !important;
}
.bg-tiktok,
.h-bg-tiktok:hover {
  background-color: #010101 !important;
}
.bg-pinterest,
.h-bg-pinterest:hover {
  background-color: #c8232c !important;
}
.bg-rss,
.h-bg-rss:hover {
  background-color: #ee802f !important;
}
.bg-email3,
.h-bg-email3:hover {
  background-color: #6567a5 !important;
}

/* ── Footer link columns ── */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 3px 0;
  font-size: 0.875rem;
}
/* Chevron bullet using FontAwesome Light (fa-light fa-chevron-right) */
.footer-links li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 0.6rem;
  color: var(--ye);
  flex-shrink: 0;
  opacity: 0.8;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
  font-weight: 300;
}
.footer-links li a:hover {
  color: var(--ye);
}

/* ── Column headings (Travellers / Businesses / etc.) ── */
.title-font {
  font-family: var(--ff-h);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Colour utility used on the #GhanaTRVL hashtag line ── */
.color-yellow {
  color: var(--ye) !important;
}

/* ── Copyrights bar ── */
#copyrights {
  padding: 1.25rem 0;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.copyright-links {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.35);
}
.copyright-links a {
  display: inline-block;
  margin: 0 0.35rem;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.15s;
}
.copyright-links a:hover {
  color: var(--ye);
  border-bottom-color: var(--ye);
}
.copyright-links a:first-child {
  margin-left: 0;
}

/* ================================================================
   20. LEGAL PAGES
   Used in _legal_body.php
   .legal-hero, .breadcrumb-bar, .legal-doc-nav,
   .legal-body, .legal-layout, .legal-sidebar, .legal-content,
   .toc-label, .toc-list, .sidebar-divider, .sidebar-contact-note,
   .content-lead, .section-rule, .legal-highlight, .contact-card,
   .meta-pill
================================================================ */

/* Hero band */
.legal-hero {
  background: var(--dv);
  padding: 2.5rem 0 2rem;
  border-bottom: 3px solid var(--ye);
}
.legal-hero h1 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.legal-hero .subtitle {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}
.legal-hero .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-h);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}
.legal-hero .meta-pill i {
  font-size: 0.7rem;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.breadcrumb-bar a,
.breadcrumb-bar span {
  font-family: var(--ff-h);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.breadcrumb-bar a:hover {
  color: var(--ye);
}
.breadcrumb-bar .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}
.breadcrumb-bar .current {
  color: var(--ye);
}

/* Doc type nav tabs */
.legal-doc-nav {
  background: var(--mv);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-doc-nav .nav-link {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 0.75rem 1.1rem;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.legal-doc-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.legal-doc-nav .nav-link.active {
  color: var(--ye) !important;
  border-bottom-color: var(--ye);
}

/* Page body */
.legal-body {
  background: var(--wh);
  min-height: 60vh;
}

/* Sidebar + content grid */
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
@media (max-width: 991.98px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    display: none;
  }
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: 58px;
  margin-top: 1.5rem;
  padding: 2.5rem 0;
  border-right: 1px solid var(--rule);
  background: #fff;
}
.toc-label {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mu);
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.toc-list li a {
  display: block;
  font-family: var(--ff-b);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--mu);
  text-decoration: none;
  padding: 0.35rem 1.5rem;
  border-left: 3px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s,
    background 0.15s;
  line-height: 1.4;
}
.toc-list li a:hover {
  color: var(--mv);
  background: var(--wh);
  border-left-color: var(--rule);
}
.toc-list li a.active {
  color: var(--dv);
  font-weight: 500;
  border-left-color: var(--ye);
  background: #fafbff;
}
.sidebar-divider {
  height: 1px;
  background: var(--rule);
  margin: 1rem 1.5rem 1.5rem;
}
.sidebar-contact-note {
  padding: 0 1.5rem;
}
.sidebar-contact-note p {
  font-size: 0.75rem;
  color: var(--mu);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.sidebar-contact-note a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mv);
  text-decoration: none;
}
.sidebar-contact-note a:hover {
  text-decoration: underline;
}

/* Main content */
.legal-content {
  padding: 3rem 3.5rem 4rem 3rem;
  max-width: 780px;
}
@media (max-width: 1199.98px) {
  .legal-content {
    padding: 2.5rem 2rem 3rem;
  }
}

.content-lead {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 1.0625rem;
  color: #3d3050;
  line-height: 1.7;
  border-left: 4px solid var(--ye);
  padding: 1rem 1.25rem;
  background: #fffef0;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
  color: var(--dv);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  scroll-margin-top: 80px;
}
.legal-content h3 {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
  color: var(--mv);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  scroll-margin-top: 80px;
}
.legal-content p,
.legal-content ul,
.legal-content ol {
  font-family: var(--ff-b);
  font-weight: 300;
  font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
  color: var(--tx);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
}
.legal-content ul li,
.legal-content ol li {
  margin-bottom: 0.35rem;
}
.legal-content a {
  color: var(--mv);
  font-weight: 500;
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--dv);
}

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5rem 0;
}

.legal-highlight {
  background: #f0ecff;
  border: 1px solid #d6cef7;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--dv);
  line-height: 1.6;
}
.legal-highlight strong {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-card {
  background: var(--dv);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
}
.contact-card h3 {
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ye);
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}
.contact-card a {
  color: var(--gr);
  font-weight: 500;
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--wh);
}

/* ================================================================
   21. UTILITY HELPERS
================================================================ */

/* Inline article / doc links */
.a-link {
  color: var(--mv) !important;
  font-weight: 700 !important;
}
.a-link:hover {
  color: #fff !important;
  font-weight: 700 !important;
  background-color: var(--gr) !important;
}
.a-link:not(.btn-link):not(.text-decoration-underline):not(.more-link) {
  text-decoration: underline !important;
}

/* Text colour shortcuts */
.white {
  color: #fff !important;
}
.color-purple {
  color: var(--mv) !important;
}
.color-dark {
  color: var(--dv) !important;
}
.color-orange {
  color: #ffa604 !important;
}
.cancelled {
  color: red !important;
}

/* Text transform */
.caps {
  text-transform: uppercase;
}

/* Bootstrap fs extension */
.fs-7 {
  font-size: 0.9rem !important;
}
.fs-8 {
  font-size: 0.8rem !important;
}
.fs-9 {
  font-size: 0.7rem !important;
}
.fs-10 {
  font-size: 0.6rem !important;
}

/* Legacy f-* sizes (used in older partials) */
.f-12 {
  font-size: 12px;
  line-height: 16px;
  display: inline-block;
}
.f-15 {
  font-size: 15px;
  line-height: 20px;
  display: inline-block;
}
.f-16 {
  font-size: 16px;
  line-height: 25px;
  display: inline-block;
}
.f-18 {
  font-size: 18px;
  line-height: 26px;
  display: inline-block;
}
.f-24 {
  font-size: 24px;
  line-height: 28px;
  display: inline-block;
}

/* Opacity helpers */
.opacity-9 {
  opacity: 0.9 !important;
}
.opacity-8 {
  opacity: 0.8 !important;
}
.opacity-7 {
  opacity: 0.7 !important;
}
.opacity-6 {
  opacity: 0.6 !important;
}
.opacity-5 {
  opacity: 0.5 !important;
}

/* Image helpers */
.img-rounded {
  border-radius: 6px;
}
.h-200 {
  max-height: 200px;
  height: 100%;
}
.w-200 {
  max-width: 200px;
  width: 100%;
}
.w-150 {
  max-width: 150px;
  width: 100%;
}
.w-100-std {
  width: 100%;
}

/* Drop shadow for card-like links */
.drop-shadow {
  text-decoration: none !important;
  box-shadow:
    -11px -11px 25px rgba(255, 255, 255, 0.35),
    11px 13px 25px rgba(165, 181, 208, 0.6);
}

/* Modal width override */
.modal {
  --bs-modal-width: 800px !important;
}

/* Back-to-top button */
#gotoTop {
  position: fixed;
  bottom: 30px;
  right: 14px;
  z-index: 1000;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--dv);
  background: var(--ye);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
#gotoTop:hover {
  transform: translateY(-3px);
}

/* ================================================================
   22. KLARO COOKIE CONSENT
   Bootstrap 5 / GhanaTRVL brand-aligned overrides.
   All colours reference :root tokens.
   Load klaro-no-css.js (not klaro.js) to prevent Klaro's
   bundled styles from conflicting.
================================================================ */

/* Base typography + box model */
.klaro,
.klaro button {
  font-family: var(--ff-b);
  font-size: 14px;
  box-sizing: border-box;
}
.klaro.cm-as-context-notice {
  height: 100%;
  padding: 12px;
}

/* Service toggle list */
.klaro .cookie-modal .cm-switch-container,
.klaro .context-notice .cm-switch-container,
.klaro .cookie-notice .cm-switch-container {
  border-bottom: 1px solid var(--rule);
  display: block;
  position: relative;
  padding: 10px 10px 10px 66px;
  line-height: 20px;
  vertical-align: middle;
  min-height: 40px;
}
.klaro .cookie-modal .cm-switch-container:last-child,
.klaro .context-notice .cm-switch-container:last-child,
.klaro .cookie-notice .cm-switch-container:last-child {
  border-bottom: 0;
}
.klaro .cookie-modal .cm-switch-container:first-child,
.klaro .context-notice .cm-switch-container:first-child,
.klaro .cookie-notice .cm-switch-container:first-child {
  margin-top: 0;
}
.klaro .cookie-modal .cm-switch-container p,
.klaro .context-notice .cm-switch-container p,
.klaro .cookie-notice .cm-switch-container p {
  margin-top: 0;
}

.klaro .cookie-modal .cm-switch,
.klaro .context-notice .cm-switch,
.klaro .cookie-notice .cm-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

/* Toggle on — brand green */
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider,
.klaro .context-notice .cm-list-input:checked + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input:checked + .cm-list-label .slider {
  background-color: var(--gr);
}

.klaro
  .cookie-modal
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider,
.klaro
  .context-notice
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider,
.klaro
  .cookie-notice
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider {
  background-color: var(--gr);
  opacity: 0.6;
}
.klaro
  .cookie-modal
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider::before,
.klaro
  .context-notice
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider::before,
.klaro
  .cookie-notice
  .cm-list-input.half-checked:checked
  + .cm-list-label
  .slider::before {
  transform: translateX(10px);
}

/* Required — muted purple */
.klaro .cookie-modal .cm-list-input.only-required + .cm-list-label .slider,
.klaro .context-notice .cm-list-input.only-required + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.only-required + .cm-list-label .slider {
  background-color: var(--mu);
  opacity: 0.8;
}
.klaro
  .cookie-modal
  .cm-list-input.only-required
  + .cm-list-label
  .slider::before,
.klaro
  .context-notice
  .cm-list-input.only-required
  + .cm-list-label
  .slider::before,
.klaro
  .cookie-notice
  .cm-list-input.only-required
  + .cm-list-label
  .slider::before {
  transform: translateX(10px);
}

.klaro .cookie-modal .cm-list-input.required:checked + .cm-list-label .slider,
.klaro .context-notice .cm-list-input.required:checked + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.required:checked + .cm-list-label .slider {
  background-color: var(--mu);
  opacity: 0.8;
  cursor: not-allowed;
}

/* Slider track & knob */
.klaro .cookie-modal .cm-list-input,
.klaro .context-notice .cm-list-input,
.klaro .cookie-notice .cm-list-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 50px;
  height: 30px;
}

.klaro .cookie-modal .cm-list-label .slider,
.klaro .context-notice .cm-list-label .slider,
.klaro .cookie-notice .cm-list-label .slider {
  background-color: var(--wh2);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  width: 50px;
  display: inline-block;
  box-shadow:
    0 4px 6px 0 rgba(0, 0, 0, 0.2),
    5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.klaro .cookie-modal .cm-list-label .slider::before,
.klaro .context-notice .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-label .slider::before {
  background-color: var(--wh);
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 5px;
  bottom: 5px;
  transition: 0.4s;
}
.klaro .cookie-modal .cm-list-label .slider.round,
.klaro .context-notice .cm-list-label .slider.round,
.klaro .cookie-notice .cm-list-label .slider.round {
  border-radius: 30px;
}
.klaro .cookie-modal .cm-list-label .slider.round::before,
.klaro .context-notice .cm-list-label .slider.round::before,
.klaro .cookie-notice .cm-list-label .slider.round::before {
  border-radius: 50%;
}

.klaro .cookie-modal .cm-list-label input:focus + .slider,
.klaro .context-notice .cm-list-label input:focus + .slider,
.klaro .cookie-notice .cm-list-label input:focus + .slider {
  box-shadow: 0 0 0 2px var(--ye);
}

.klaro .cookie-modal .cm-list-label input:checked + .slider::before,
.klaro .context-notice .cm-list-label input:checked + .slider::before,
.klaro .cookie-notice .cm-list-label input:checked + .slider::before {
  transform: translateX(20px);
}
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider::before,
.klaro .context-notice .cm-list-input:checked + .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input:checked + .cm-list-label .slider::before {
  transform: translateX(20px);
}

/* Service list text */
.klaro .cookie-modal .cm-list-title,
.klaro .context-notice .cm-list-title,
.klaro .cookie-notice .cm-list-title {
  font-size: 0.9em;
  font-weight: 600;
}
.klaro .cookie-modal .cm-list-description,
.klaro .context-notice .cm-list-description,
.klaro .cookie-notice .cm-list-description {
  color: var(--mu);
  font-size: 0.9em;
  padding-top: 4px;
}
.klaro .cookie-modal .cm-list-label .cm-switch,
.klaro .context-notice .cm-list-label .cm-switch,
.klaro .cookie-notice .cm-list-label .cm-switch {
  position: absolute;
  left: 0;
}
.klaro .cookie-modal .cm-link,
.klaro .context-notice .cm-link,
.klaro .cookie-notice .cm-link {
  margin-right: 0.5em;
  vertical-align: middle;
}

/* Links */
.klaro .cookie-modal a,
.klaro .context-notice a,
.klaro .cookie-notice a {
  color: var(--ye);
  text-decoration: none;
}
.klaro .cookie-modal a:hover,
.klaro .context-notice a:hover,
.klaro .cookie-notice a:hover {
  color: var(--gr);
}

/* Body text (on dark bg) */
.klaro .cookie-modal p,
.klaro .cookie-modal strong,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice strong,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice strong,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  color: var(--wh);
}

.klaro .cookie-modal p,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-top: 0.7em;
}

.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal h3,
.klaro .cookie-modal h4,
.klaro .cookie-modal h5,
.klaro .cookie-modal h6,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice h3,
.klaro .context-notice h4,
.klaro .context-notice h5,
.klaro .context-notice h6,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice h3,
.klaro .cookie-notice h4,
.klaro .cookie-notice h5,
.klaro .cookie-notice h6 {
  font-family: var(--ff-h);
}

/* Buttons */
.klaro .cookie-modal .cm-btn,
.klaro .context-notice .cm-btn,
.klaro .cookie-notice .cm-btn {
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wh);
  background-color: var(--mv);
  border-radius: 24px;
  border: none;
  padding: 8px 16px;
  margin-right: 0.5em;
  cursor: pointer;
  transition:
    background 0.18s,
    transform 0.2s;
}
.klaro .cookie-modal .cm-btn:hover,
.klaro .context-notice .cm-btn:hover,
.klaro .cookie-notice .cm-btn:hover {
  background-color: var(--dv);
  transform: translateY(-1px);
}
.klaro .cookie-modal .cm-btn:disabled,
.klaro .context-notice .cm-btn:disabled,
.klaro .cookie-notice .cm-btn:disabled {
  opacity: 0.5;
}

/* Accept all — yellow */
.klaro .cookie-modal .cm-btn.cm-btn-success,
.klaro .context-notice .cm-btn.cm-btn-success,
.klaro .cookie-notice .cm-btn.cm-btn-success {
  background-color: var(--ye);
  color: var(--dv);
}
.klaro .cookie-modal .cm-btn.cm-btn-success:hover,
.klaro .context-notice .cm-btn.cm-btn-success:hover,
.klaro .cookie-notice .cm-btn.cm-btn-success:hover {
  background-color: var(--gr);
  color: var(--dv);
}

/* Save my choices — green */
.klaro .cookie-modal .cm-btn.cm-btn-success-var,
.klaro .context-notice .cm-btn.cm-btn-success-var,
.klaro .cookie-notice .cm-btn.cm-btn-success-var {
  background-color: var(--gr);
  color: var(--dv);
}

/* Manage preferences — medium purple */
.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .context-notice .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  background-color: var(--mv);
  color: var(--wh);
}

/* Close — subtle outline */
.klaro .cookie-modal .cm-btn.cm-btn-close,
.klaro .context-notice .cm-btn.cm-btn-close,
.klaro .cookie-notice .cm-btn.cm-btn-close {
  background-color: transparent;
  color: var(--wh);
  border: 1.5px solid rgba(244, 246, 250, 0.35);
}
.klaro .cookie-modal .cm-btn.cm-btn-close:hover,
.klaro .context-notice .cm-btn.cm-btn-close:hover,
.klaro .cookie-notice .cm-btn.cm-btn-close:hover {
  background-color: rgba(244, 246, 250, 0.1);
}

/* Context notice (inline embed) */
.klaro .context-notice {
  border-radius: 4px;
  border: 1px solid var(--rule);
  background-color: var(--wh2);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 100%;
}
.klaro .context-notice.cm-dark {
  background-color: var(--dv);
  border-color: var(--mv);
}
.klaro .context-notice.cm-dark p {
  color: var(--wh);
}
.klaro .context-notice.cm-dark p a {
  color: var(--ye);
}
.klaro .context-notice p {
  color: var(--bk);
  flex-grow: 0;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}
.klaro .context-notice p a {
  color: var(--mv);
}
.klaro .context-notice p.cm-buttons {
  margin-top: 12px;
}
.klaro .context-notice p.ccn-description-empty-store {
  margin-top: 24px;
  font-size: 14px;
}

/* Cookie modal overlay */
.klaro .cookie-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 1040;
}
.klaro .cookie-modal.cm-embedded {
  position: relative;
  height: inherit;
  width: inherit;
  left: inherit;
  right: inherit;
  z-index: 0;
}
.klaro .cookie-modal.cm-embedded .cm-modal.cm-klaro {
  position: relative;
  transform: none;
}
.klaro .cookie-modal .cm-bg {
  background: rgba(35, 15, 66, 0.65);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

/* Modal panel */
.klaro .cookie-modal .cm-modal.cm-klaro {
  background-color: var(--dv);
  color: var(--wh);
  z-index: 1001;
  box-shadow:
    0 4px 6px 0 rgba(0, 0, 0, 0.3),
    5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  max-height: 98%;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
  overflow: auto;
}
@media (min-width: 660px) {
  .klaro .cookie-modal .cm-modal.cm-klaro {
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
    max-width: 640px;
    height: auto;
    width: auto;
  }
}

.klaro .cookie-modal .cm-modal .hide {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.klaro .cookie-modal .cm-modal .hide svg {
  stroke: var(--wh);
}
.klaro .cookie-modal .cm-modal .cm-footer {
  border-top: 1px solid var(--mv);
  padding: 1em;
}
.klaro .cookie-modal .cm-modal .cm-footer-buttons {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by {
  font-size: 0.8em;
  padding-top: 4px;
  text-align: right;
  padding-right: 8px;
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by a {
  color: var(--mu);
}
.klaro .cookie-modal .cm-modal .cm-header {
  border-bottom: 1px solid var(--mv);
  padding: 1em;
  padding-right: 24px;
}
.klaro .cookie-modal .cm-modal .cm-header h1 {
  margin: 0;
  font-size: 1.4em !important;
  font-family: var(--ff-h);
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-header h1.title {
  padding-right: 20px;
}
.klaro .cookie-modal .cm-modal .cm-body {
  padding: 1em;
}
.klaro .cookie-modal .cm-modal .cm-body ul {
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-body span {
  display: inline-block;
  width: auto;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes {
  padding: 0;
  margin: 0;
}
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-services
  li.cm-purpose
  .cm-services
  .cm-caret,
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-purposes
  li.cm-purpose
  .cm-services
  .cm-caret {
  color: var(--mu);
}
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-services
  li.cm-purpose
  .cm-services
  .cm-content,
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-purposes
  li.cm-purpose
  .cm-services
  .cm-content {
  margin-left: -40px;
  display: none;
}
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-services
  li.cm-purpose
  .cm-services
  .cm-content.expanded,
.klaro
  .cookie-modal
  .cm-modal
  .cm-body
  ul.cm-purposes
  li.cm-purpose
  .cm-services
  .cm-content.expanded {
  margin-top: 10px;
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose {
  position: relative;
  line-height: 20px;
  vertical-align: middle;
  padding-left: 60px;
  min-height: 40px;
}
.klaro .cookie-modal .cm-modal .cm-body ul li:first-child {
  margin-top: 0;
}
.klaro .cookie-modal .cm-modal .cm-body ul li p {
  margin-top: 0;
}
.klaro .cookie-modal .cm-modal .cm-body ul li p.purposes {
  color: var(--mu);
  font-size: 0.8em;
}
.klaro .cookie-modal .cm-modal .cm-body ul li.cm-toggle-all {
  border-top: 1px solid var(--mv);
  padding-top: 1em;
}
.klaro .cookie-modal .cm-modal .cm-body ul li span.cm-list-title {
  font-weight: 600;
}
.klaro .cookie-modal .cm-modal .cm-body ul li span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul li span.cm-required {
  color: var(--mu);
  padding-left: 0.2em;
  font-size: 0.8em;
}

/* ----------------------------------------------------------------
   COOKIE NOTICE BANNER — Option B
   Placement strategy:
     Mobile  (< 992px)  : full-width bar, bottom: 64px (above app-menu)
     Tablet  (992–1023px): full-width bar, bottom: 0 (app-menu hidden at lg)
     Desktop (≥ 1024px) : bottom-centre floating card, max-width 600px

   z-index hierarchy:
     .gt-nav       1020
     .app-menu     1030
     .klaro notice 1035  ← always above both
     .klaro modal  1040
---------------------------------------------------------------- */

/* MOBILE BASE — full-width bar floating above the app-menu tab bar */
.klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: var(--mv);
  box-sizing: border-box !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 64px !important; /* height of .app-menu tab bar */
  width: 100vw !important;
  max-width: 100vw !important;
  z-index: 1035;
  border-radius: 0;
  border-top: 3px solid var(--ye);
  box-shadow: 0 -6px 24px rgba(35, 15, 66, 0.55);
}

/* TABLET — app-menu is hidden at Bootstrap lg (992px); bar goes flush to bottom */
@media (min-width: 992px) and (max-width: 1023px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    bottom: 0 !important;
    border-top: 3px solid var(--ye);
  }
}

/* DESKTOP — bottom-centre floating card */
@media (min-width: 1024px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    left: 50% !important;
    right: auto !important;
    bottom: 24px !important;
    width: auto !important;
    min-width: 480px;
    max-width: 600px !important;
    transform: translateX(-50%);
    border-radius: 12px;
    border: 2px solid var(--ye); /* full border on the floating card — visible on all sides */
    box-shadow:
      0 8px 40px rgba(35, 15, 66, 0.55),
      0 2px 8px rgba(35, 15, 66, 0.3);
  }
}

/* Embedded variant — resets all fixed positioning */
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded {
  position: relative !important;
  left: inherit !important;
  right: inherit !important;
  bottom: inherit !important;
  top: inherit !important;
  width: inherit !important;
  max-width: inherit !important;
  transform: none;
  border-top: none;
  box-shadow: none;
  z-index: 0;
}
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded .cn-body {
  padding-top: 0.5em;
}

/* Body content */
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body {
  margin: 0;
  padding: 1.1em 1.25em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  margin-bottom: 0.5em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p.cn-changes {
  text-decoration: underline;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  display: inline-block;
  flex-grow: 1;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
  display: inline-block;
  margin-top: -0.5em;
}
@media (max-width: 384px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
    width: 100%;
  }
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
    width: calc(50% - 0.5em);
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
  margin-top: 0.5em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok {
  margin-top: -0.5em;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok a,
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok div {
  margin-top: 0.5em;
}

/* Cookie modal-notice (full modal variant) */
.klaro .cookie-modal-notice {
  background-color: var(--dv);
  color: var(--wh);
  z-index: 1001;
  box-shadow:
    0 4px 6px 0 rgba(0, 0, 0, 0.3),
    5px 5px 10px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  max-height: 98%;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
  overflow: auto;
  padding: 1em;
  padding-top: 0.2em;
}
@media (min-width: 400px) {
  .klaro .cookie-modal-notice {
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
    max-width: 420px;
    height: auto;
    width: auto;
  }
}
.klaro .cookie-modal-notice .cn-ok {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}
.klaro .cookie-notice-hidden {
  display: none !important;
}

/* ================================================================
   22-S. TSP RESULTS PAGE — NET-NEW ADDITIONS
   ---------------------------------------------------------------
   REPLACES THE ENTIRE EXISTING §22-S BLOCK.

   Delete the current "22-S. TSP RESULT PAGE — LAYOUT AND COMPONENT
   EXTENSIONS" section in result-pages-addon-v4.css in its entirety
   (sub-sections 22-S-1 through 22-S-11, from the header comment
   down to the closing "hide map below 680px" media query) and
   paste this block in its place.

   Companion to: _entities_results.php / __entities_results_card.php
                 / __entities_results_query.php / __entities_results_ajax.php

   WHY THE OLD BLOCK IS BEING REPLACED
   ---------------------------------------------------------------
   The old block reinvented layout primitives Bootstrap 5 already
   provides, and styled elements the rebuilt page no longer renders:

     - 22-S-1  .tsp-results-layout / .tsp-grid-col / .tsp-map-col
               -> .row.g-4 + .col-12.col-lg-8 / .col-lg-4 (Bootstrap)
     - 22-S-2  position:sticky + top:84px baked into .tsp-map-panel
               -> split into Bootstrap .position-sticky (position only)
                  + .tsp-map-sticky below (offset only)
     - 22-S-5  .rcard-open-badge
               -> "Open Now" badge is out of scope for this rebuild
     - 22-S-7  .rcard-cta
               -> card CTA now reuses the existing shared .ac-read-more
                  (§22-G); only a hover rule is added here
     - 22-S-8  .load-more-wrap / .btn-load-more / .load-more-count
               -> "Show More" button is now .btn-o + Bootstrap
                  utilities (text-center mt-4, opacity-75, ms-1)
     - 22-S-10 .tsp-filter-clear
               -> Clear pill is now .fpill.ms-auto (Bootstrap)
     - 22-S-11 responsive overrides for the above
               -> superseded by Bootstrap's own breakpoint utilities

   WHAT'S CARRIED FORWARD UNCHANGED
   ---------------------------------------------------------------
     - .tsp-map-pin / .tsp-map-pin--gold / .tsp-map-popup* (old 22-S-3)
     - .rcard-icons family (old 22-S-6)
     - .rcard-tier-badge (old 22-S-4, minus the unused .rcard--gold
       card-level outline variant)
     - .tsp-empty-state i / p (old 22-S-9, minus layout properties
       now handled by Bootstrap's text-center py-5 on the element)

   Sections:
   22-S-1. Sticky map panel  (.tsp-map-sticky, .tsp-map-panel,
                               .tsp-map-head, .tsp-map-area, .tsp-map-hint)
   22-S-2. Map pins and popups (.tsp-map-pin, .tsp-map-popup)
   22-S-3. Gold tier badge    (.rcard-tier-badge)
   22-S-4. Facility / disability icons (.rcard-icons)
   22-S-5. View Profile CTA hover (.ac-read-more inside .rcard)
   22-S-6. Empty state — text colours only (.tsp-empty-state)
   22-S-7. Responsive
================================================================ */


/* ── 22-S-1. STICKY MAP PANEL ── */
/*
   .tsp-map-sticky pairs with Bootstrap's .position-sticky (which sets
   position:sticky but leaves top:auto). 84px clears the .gt-nav height
   (approx 64px) plus a small gap — confirm against the live nav height.
*/
.tsp-map-sticky {
  top: 84px;
}

.tsp-map-panel {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--wh2);
  box-shadow: 0 4px 20px rgba(35,15,66,.08);
}

.tsp-map-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dv);
  font-family: var(--ff-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.tsp-map-head i {
  color: var(--ye);
  font-size: 14px;
}

.tsp-map-area {
  width: 100%;
  height: 480px;
  display: block;
}

.tsp-map-hint {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 500;
  color: var(--mu);
  padding: 10px 16px;
  margin: 0;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tsp-map-hint i {
  font-size: 12px;
  color: var(--mv);
  flex-shrink: 0;
}


/* ── 22-S-2. MAP PINS AND POPUPS ── */
/*
   Carried forward unchanged from the old block.
   Custom Leaflet divIcon pins. Rendered via L.divIcon html parameter.
   .tsp-map-pin        — standard pin (medium violet fill)
   .tsp-map-pin--gold  — Gold/Platinum pin (yellow fill, dark outline)
*/
.tsp-map-pin {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mv);
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(35,15,66,.35);
  cursor: pointer;
  transition: transform .15s;
}
.tsp-map-pin:hover,
.tsp-map-pin:focus {
  transform: scale(1.25);
}
.tsp-map-pin--gold {
  background: var(--ye);
  border-color: var(--dv);
}

.tsp-map-popup {
  font-family: var(--ff-h);
  font-size: 12px;
  line-height: 1.4;
}
.tsp-map-popup-link {
  color: var(--dv);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
  transition: color .15s;
}
.tsp-map-popup-link:hover { color: var(--mv); }
.tsp-map-popup-tier {
  display: inline-block;
  background: var(--ye);
  color: var(--dv);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 2px;
  margin-top: 2px;
}


/* ── 22-S-3. GOLD TIER BADGE ── */
/*
   Carried forward from old 22-S-4, minus the .rcard--gold card-level
   outline/box-shadow variant (the rebuilt card no longer adds a
   .rcard--gold class to the <a class="rcard"> element — only the
   image-overlay badge below is used).
*/
.rcard-tier-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--ye);
  color: var(--dv);
  font-family: var(--ff-h);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.rcard-tier-badge i {
  font-size: 10px;
}


/* ── 22-S-4. FACILITY / DISABILITY ICON ROWS ── */
/*
   Carried forward unchanged from old 22-S-6 — already matches the
   .rcard-icons / .rcard-icons--disability / .rcard-icons--facilities
   classes used by __entities_results_card.php.
*/
.rcard-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 7px 0;
  border-top: 1px solid var(--rule);
  margin-top: 4px;
}
.rcard-icons i {
  font-size: 14px;
  line-height: 1;
  cursor: default;
}
.rcard-icons--disability {
  color: var(--mv);
}
.rcard-icons--disability i {
  color: var(--mv);
}
.rcard-icons--facilities {
  color: var(--mu);
}
.rcard-icons--facilities i {
  color: var(--mu);
  transition: color .15s;
}
.rcard:hover .rcard-icons--facilities i {
  color: var(--dv);
}


/* ── 22-S-5. VIEW PROFILE CTA HOVER ── */
/*
   The rebuilt card reuses the existing shared .ac-read-more (§22-G,
   currently scoped to .acard:hover) for its "View Profile" link.
   This adds the matching hover rule for .rcard, plus a small arrow
   nudge on the icon — replaces old 22-S-7 (.rcard-cta).
*/
.rcard:hover .ac-read-more {
  color: var(--dv);
}
.rcard .ac-read-more i {
  transition: transform .18s;
}
.rcard:hover .ac-read-more i {
  transform: translateX(3px);
}


/* ── 22-S-6. EMPTY STATE — TEXT COLOURS ONLY ── */
/*
   Layout (centering, padding) is handled in the markup via Bootstrap's
   text-center py-5. Only colour/typography are net-new here — carried
   forward from old 22-S-9 with layout properties removed.
*/
.tsp-empty-state {
  color: var(--mu);
}
.tsp-empty-state i {
  font-size: 2.5rem;
  color: var(--rule);
  display: block;
  margin-bottom: 16px;
}
.tsp-empty-state p {
  font-family: var(--ff-s);
  font-size: 1rem;
  margin-bottom: 20px;
}


/* ── 22-S-7. RESPONSIVE ── */
/*
   Slightly shorter map on the narrower end of the lg breakpoint,
   where .col-lg-4 is at its tightest relative to the map's aspect.
*/
@media (min-width: 992px) and (max-width: 1200px) {
  .tsp-map-area { height: 400px; }
}


/* ── 22-S-8. SEARCH BOX ── */
/*
   Search box font
*/
  .search-mini { font-size: 0.8em; }


/* ================================================================
   23. GALLERY STRIP (filterable) — moved here from article-addon-v4.css
   Shared by article pages and entity pages (Silver/Gold+ galleries).
   Isotope manages positioning — .art-gallery is the container,
   .gal-thumb is each item. See __javascript.php for the Isotope +
   GLightbox wiring, which now loops over one config per grid found
   on the page (article #galGrid, entity #entGalGrid).
================================================================ */
.art-gallery {
  position: relative;
  margin-bottom: .5rem;
}

/* Each Isotope item — width drives the column count */
.gal-thumb {
  width: 25%;          /* 4 columns */
  padding: 2.5px;
  box-sizing: border-box;
}

/* Inner wrapper — this carries the aspect ratio, image and overlay */
.gal-thumb-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--wh2);
  cursor: pointer;
  display: block;
}

/* The lightbox anchor must fill the inner wrapper completely */
.gal-thumb-inner a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Image fills the anchor */
.gal-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gal-thumb-inner:hover img { transform: scale(1.07); }

/* Overlay fills the inner wrapper */
.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,15,66,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;  /* let clicks pass through to the <a> */
}
.gal-thumb-inner:hover .gal-item-overlay { opacity: 1; }

/* 2026-08-26 - MvB - Two explicit centred icon buttons (.gal-item-actions/
   .gal-action-btn) replace what was a click-through-the-title-text pattern -
   not discoverable enough, per Marcel. .gal-item-title is a plain <div>
   again (no longer ever an <a> - the "open article" action lives on its own
   button now), so the pointer-events-inheritance workaround that used to
   live here isn't needed any more. .gal-item-actions itself still needs
   pointer-events:auto though, same reason - .gal-item-overlay (its parent)
   has pointer-events:none by design. */
.gal-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
  pointer-events: auto;
}
/* a.gal-action-btn (class+tag), not just .gal-action-btn - .gal-thumb-inner a
   above is the same specificity (class+tag), so this needs to match it to
   win on width/height/display rather than lose on source-order alone if
   the cascade ever gets reordered. */
a.gal-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 15px;
  transition: background .15s, transform .15s, border-color .15s;
}
a.gal-action-btn:hover {
  background: var(--mv);
  border-color: var(--mv);
  transform: scale(1.08);
}

.gal-item-title {
  display: block;
  font-family: var(--ff-h);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
}
.gal-item-credit {
  font-family: var(--ff-h);
  font-size: 11px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 4px;
}
.gal-item-credit a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.gal-item-credit a:hover { color: var(--ye); }

/* Responsive */
@media (max-width: 767.98px) { .gal-thumb { width: 33.333%; } }
@media (max-width: 575.98px) { .gal-thumb { width: 50%; } }

/* Filter bar */
.gal-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.gal-filter-lbl {
  font-family: var(--ff-h);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mu);
  margin-right: 4px;
}
.gal-fpill {
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--rule);
  background: transparent;
  color: var(--mu);
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.gal-fpill:hover  { background: var(--mv); border-color: var(--mv); color: #fff; }
.gal-fpill.active { background: var(--mv); border-color: var(--mv); color: #fff; }
.gal-count {
  margin-left: auto;
  font-family: var(--ff-h);
  font-size: 10px;
  font-weight: 600;
  color: var(--mu);
}

/* ================================================================
   CONTACT REVEAL - shared component
   ─────────────────────────────────────────────────────────────
   Moved here from entities-addon-v4.css (2026-08-26) - originally
   entity-only, now also used by _contributor_body.php, so it needs
   to load on every page type via the always-loaded base stylesheet.
   .ent-contact-btn: circular icon buttons (phone/WhatsApp/email/
   website/social). .vc-*: modals/view-contacts.php fragment styles.
================================================================ */

.ent-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--mv);
  background: transparent;
  color: var(--mv);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.ent-contact-btn:hover,
.ent-contact-btn:focus-visible {
  background: var(--mv);
  color: #fff;
  outline: none;
}

.vc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vc-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--rule);
}

.vc-item:last-child {
  border-bottom: none;
}

.vc-icon {
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--mv);
}

.vc-label {
  font-family: var(--ff-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mu);
  min-width: 4.5rem;
  flex-shrink: 0;
}

.vc-contact-link,
.vc-contact-text {
  font-family: var(--ff-h);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dv);
  text-decoration: none;
  word-break: break-all;
}

.vc-contact-link:hover {
  color: var(--mv);
  text-decoration: underline;
}

.vc-empty {
  font-family: var(--ff-h);
  font-size: .875rem;
  color: var(--mu);
  padding: 1rem 0;
  margin: 0;
}

/* ================================================================
   §XX  OPENING HOURS STATUS + WEEKLY LIST (shared)
   Moved out of entities-addon-v4.css (2026-08-29) - now used by both
   __entity_section_opening_hours.php (entity pages) and the article
   page's opening-times widget, so it belongs in the global base, not
   a page-type addon. Status badge sizing matches the hero pill shape,
   different fill per state. Today's row in the weekly grid gets a
   tinted background.
================================================================ */

.ent-hours-status {
  font-family: var(--ff-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.ent-hours-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.ent-hours-status--open {
  color: var(--wh);
  background: var(--gr);
}

.ent-hours-status--closed {
  color: var(--wh);
  background: var(--mu);
}

.ent-hours-status--soon {
  color: var(--dv);
  background: var(--ye);
}

.ent-hours-closure-note {
  font-family: var(--ff-h);
  margin-bottom: 0;
}

.ent-hours__list {
  margin: 0.5rem 0 0;
}

.ent-hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-h);
  font-size: 0.8rem;
}

.ent-hours__row:last-child {
  border-bottom: none;
}

.ent-hours__day {
  color: var(--mu);
  font-weight: 600;
}

.ent-hours__time {
  color: var(--dv);
  font-weight: 700;
  text-align: right;
}

.ent-hours__row--today {
  background: var(--wh2);
  margin: 0 -0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  border-bottom-color: transparent;
}

.ent-hours__row--today .ent-hours__day {
  color: var(--dv);
}

.ent-hours__row--today .ent-hours__time {
  color: var(--mv);
}

