* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #132031;
  color: #f5e9c8;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  padding-top: 104px; /* Header Line 1 (56px) + Toolbar (48px) */
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

button,
a {
  font-family: inherit;
  font-size: 16px;
}

button {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

a {
  color: #D4AF37;
  text-decoration: none;
}

/* Zone A — Header (Line 1, fixed) */
.zone-a {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #132031;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.zone-a .brand {
  color: #D4AF37;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.install-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  color: #D4AF37;
  font-size: 14px;
}

.overflow-btn {
  min-height: 44px;
  min-width: 44px;
  color: #D4AF37;
  font-size: 24px;
  line-height: 1;
}

/* Zone B — Nav rail placeholder */
.zone-b {
  display: none;
}

/* Zone C — Main */
.zone-c {
  padding: 0;
  min-height: calc(100vh - 56px - 64px);
}

.coming-soon-card {
  margin: 32px auto;
  max-width: 480px;
  padding: 24px;
  border: 1px solid #D4AF37;
  border-radius: 12px;
  text-align: center;
  background: rgba(212, 175, 55, 0.04);
}

.coming-soon-card h1 {
  color: #D4AF37;
  font-size: 22px;
  margin-bottom: 8px;
}

.coming-soon-card p {
  font-size: 16px;
  color: #f5e9c8;
}

/* Zone D — Footer */
.zone-d {
  padding: 12px 16px;
  text-align: center;
}

.desktop-link {
  color: #D4AF37;
  text-decoration: underline;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* iOS install banner */
.ios-install-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #132031;
  border: 1px solid #D4AF37;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(120%);
  animation: slide-up 320ms ease-out forwards;
}

.ios-install-banner[hidden] {
  display: none;
}

.ios-install-text {
  flex: 1;
  font-size: 14px;
  color: #f5e9c8;
}

.share-icon {
  color: #D4AF37;
  font-size: 18px;
}

.ios-install-dismiss {
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  font-size: 14px;
}

@keyframes slide-up {
  from { transform: translateY(120%); }
  to   { transform: translateY(0); }
}

/* ──────────────────────────────────────────────────────────────
   BV-M Timeline (Session 2 — static 80/20)
   ────────────────────────────────────────────────────────────── */
.bvm-tl-wrap {
  display: flex;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 104px);
  margin: 0;
  background: #132031;
  overflow: visible;
  position: relative;
  align-items: stretch;
}

.bvm-tl-list {
  flex: 0 0 76%;
  overflow: visible;
  background: #132031;
  transition: flex-basis 200ms ease;
}

.bvm-tl-list-inner {
  width: 100%;
}

.bvm-tl-scale {
  flex: 0 0 4px;
  background: #D4AF37;
  align-self: stretch;
  min-height: calc(100vh - 104px);
}
.bvm-tl-scale.right-edge {
  flex: 0 0 4px;
}

.bvm-tl-list.expanded {
  flex: 1 1 auto;
}

.bvm-tl-info {
  flex: 0 0 22%;
  background: #0a141f;
  padding: 12px 10px;
  position: relative;
  overflow: visible;
  transition: flex-basis 200ms ease, padding 200ms ease, background 300ms ease;
}
.bvm-tl-info > * { position: relative; z-index: 1; }

.bvm-tl-info.collapsed {
  flex: 0 0 0;
  padding: 0;
  overflow: hidden;
}

/* Lifespan block (BORN | gold bar | DIED) */
.bvm-life {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}
.bvm-life-born,
.bvm-life-died {
  text-align: center;
  width: 100%;
}
.bvm-life-label {
  color: #D4AF37;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.bvm-life-year {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.bvm-life-line {
  width: 3px;
  flex: 1 1 auto;
  min-height: 80px;
  background: #D4AF37;
  margin: 8px 0;
  border-radius: 2px;
}

.bvm-tl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  min-height: 70px;
  background: #132031;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  cursor: pointer;
  transition: opacity 200ms ease, background 200ms ease;
}

.bvm-tl-row.selected,
.bvm-tl-row.expanded {
  background: rgba(212, 175, 55, 0.10);
}

.bvm-tl-text {
  flex: 1 1 auto;
  min-width: 0;
}

.bvm-tl-name-prophet {
  color: #D4AF37;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bvm-tl-name-default {
  color: #e5e7eb;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bvm-tl-tagline {
  color: #b8a878;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bvm-tl-tagline-prophet {
  color: #D4AF37;
  opacity: 0.85;
}

.bvm-tl-tagline-default {
  color: #e5e7eb;
  opacity: 0.75;
}

.bvm-tl-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.bvm-tl-error {
  padding: 24px 16px;
  color: #f5e9c8;
  font-size: 14px;
  text-align: center;
}

.bvm-tl-skeleton {
  pointer-events: none;
}

.bvm-tl-skel-text {
  flex: 1 1 auto;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(90deg,
    rgba(212, 175, 55, 0.06) 0%,
    rgba(212, 175, 55, 0.15) 50%,
    rgba(212, 175, 55, 0.06) 100%);
  background-size: 200% 100%;
  animation: bvm-tl-shimmer 1.4s ease-in-out infinite;
}

.bvm-tl-skel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: auto;
  background: rgba(212, 175, 55, 0.15);
}

@keyframes bvm-tl-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ──────────────────────────────────────────────────────────────
   BV-M Timeline — Session 3: tap-to-expand info card
   ────────────────────────────────────────────────────────────── */
.bvm-tl-row {
  cursor: pointer;
  transition: opacity 200ms ease, background 200ms ease;
}

.bvm-tl-row.dimmed {
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.bvm-tl-card {
  background: #0a141f;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0 18px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease, padding 300ms ease;
}

.bvm-tl-card.open {
  max-height: 50000px;
  padding: 20px 18px 24px;
}

.bvm-tl-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.bvm-tl-card-header-text { flex: 1; min-width: 0; }
.bvm-tl-card-name { font-size: 22px; font-weight: 700; line-height: 1.2; margin: 0; }
.bvm-tl-card-name.prophet { color: #D4AF37; }
.bvm-tl-card-name.default { color: #e5e7eb; }
.bvm-tl-card-trans {
  color: #f5e9c8;
  font-size: 14px;
  margin-top: 2px;
  opacity: 0.85;
}
.bvm-tl-card-tagline { color: #b8a878; font-size: 14px; margin-top: 4px; font-style: italic; }
.bvm-tl-card-bookmark {
  background: transparent;
  border: none;
  color: rgba(212, 175, 55, 0.5);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 8px;
  min-width: 36px;
  min-height: 36px;
}

.bvm-tl-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.bvm-tl-card-chip {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bvm-tl-card-dates { display: flex; gap: 28px; margin: 14px 0; }
.bvm-tl-card-date-label { color: #D4AF37; font-size: 10px; letter-spacing: 1.5px; }
.bvm-tl-card-date-value {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.bvm-tl-card-date-status {
  color: #b8a878;
  font-size: 12px;
  margin-left: 6px;
  font-style: italic;
  font-weight: 400;
}
.bvm-tl-card-date-marker {
  color: rgba(212, 175, 55, 0.55);
  font-size: 12px;
  margin: 0 4px;
  cursor: help;
  font-weight: 400;
}
.bvm-tl-card-date-src {
  color: rgba(160, 174, 192, 0.75);
  font-size: 11px;
  margin-top: 2px;
  line-height: 1.4;
  font-weight: 400;
}
.bvm-tl-card-legendary-src {
  color: rgba(160, 174, 192, 0.55);
  font-size: 11px;
  margin: 4px 0 10px 2px;
  line-height: 1.4;
}

.bvm-tl-card-bio-tabs {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 10px;
}
.bvm-tl-card-bio-tabs button {
  background: transparent;
  border: none;
  color: rgba(212, 175, 55, 0.55);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  min-height: 36px;
}
.bvm-tl-card-bio-tabs button.active {
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}
.bvm-tl-card-bio-body {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.65;
}
.bvm-tl-card-ai-note {
  color: rgba(160, 174, 192, 0.55);
  font-size: 11px;
  margin-top: 8px;
  font-style: italic;
}

/* Names Across Traditions — collapsible */
.bvm-tl-card-names-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 0;
  user-select: none;
}
.bvm-tl-card-names-arrow {
  margin-left: 6px;
  font-size: 10px;
  color: #D4AF37;
  transition: transform 200ms ease;
}
.bvm-tl-card-names-arrow.expanded {
  transform: rotate(180deg);
}
.bvm-tl-card-names-body {
  display: none;
  margin-top: 8px;
}
.bvm-tl-card-names-body.expanded {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px 12px;
}

/* Quranic References */
.bvm-tl-card-verses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.bvm-tl-card-verse-chip {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
}
.bvm-tl-card-quran-summary {
  color: #e5e7eb;
  font-size: 13px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bvm-tl-card-quran-epithet {
  color: #b8a878;
  font-size: 13px;
  margin-top: 4px;
}
.bvm-tl-card-quran-link {
  color: #D4AF37;
  text-decoration: none;
  font-size: 11px;
  margin-left: 6px;
}

/* Scholarship */
.bvm-tl-card-scholarship-label {
  color: #D4AF37;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.bvm-tl-card-scholarship-body {
  color: #b8a878;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 6px;
}

.bvm-tl-card-section { margin-top: 18px; }
.bvm-tl-card-section-label {
  color: #D4AF37;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bvm-tl-card-section-body {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
}

.bvm-tl-card-sources {
  list-style: disc inside;
  color: #b8a878;
  font-size: 12px;
  line-height: 1.55;
  padding-left: 4px;
}

.bvm-tl-card-loading {
  padding: 4px 0 12px;
}

.bvm-tl-card-error {
  color: #f5e9c8;
  font-size: 14px;
  padding: 8px 0;
}

.bvm-tl-card-close {
  display: block;
  margin: 20px 0 0 auto;
  background: transparent;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  min-height: 44px;
  cursor: pointer;
}

/* ──────────────────────────────────────────────────────────────
   BV-M Toolbar (Header Line 2 — fixed below the Gold Ark bar)
   ────────────────────────────────────────────────────────────── */
.bvm-toolbar {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  height: 48px;
  background: #0a141f;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 99;
}

.bvm-toolbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-height: 44px;
}

.bvm-toolbar-right {
  display: flex;
  align-items: center;
}

.bvm-rcol-toggle {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  font-size: 16px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 200ms ease;
}

.bvm-rcol-toggle.collapsed {
  transform: rotate(180deg);
}

/* ──────────────────────────────────────────────────────────────
   BV-M Toolbar filter controls (TYPE / TRADITION / HAS / SEARCH)
   ────────────────────────────────────────────────────────────── */
.bvm-toolbar-left {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bvm-toolbar-left::-webkit-scrollbar { display: none; }

.bvm-flt {
  background: transparent;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 12px;
  min-height: 36px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin-right: 6px;
  flex-shrink: 0;
}
.bvm-flt:focus {
  outline: 1px solid #D4AF37;
  outline-offset: 0;
}
.bvm-flt-search {
  color: #e5e7eb;
  min-width: 140px;
}
.bvm-flt-search::placeholder {
  color: rgba(229, 231, 235, 0.4);
}

.bvm-flt-year-wrap {
  display: flex;
  align-items: center;
  margin-left: 6px;
  flex-shrink: 0;
}
.bvm-flt-year-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 4px 12px;
  min-height: 36px;
  font-size: 12px;
  cursor: pointer;
}
.bvm-flt-year-toggle {
  color: #D4AF37;
  font-weight: 700;
  letter-spacing: 1px;
}
.bvm-flt-year-label.active .bvm-flt-year-toggle {
  color: #f5e9c8;
}
.bvm-flt-year-range {
  width: 200px;
  accent-color: #D4AF37;
  cursor: pointer;
}
.bvm-flt-year-range:disabled {
  opacity: 0.3;
  cursor: default;
}
.bvm-flt-year-val {
  min-width: 50px;
  text-align: right;
  color: #f5e9c8;
  font-size: 11px;
}

/* ──────────────────────────────────────────────────────────────
   BV-M Timescale — shared gold spine component
   ────────────────────────────────────────────────────────────── */
.bvm-ts-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bvm-ts-svg {
  display: block;
  pointer-events: none;
}
.bvm-ts-spine {
  stroke: #D4AF37;
  stroke-width: 2;
  fill: none;
  opacity: 0.6;
}
.bvm-ts-tick-label {
  fill: #D4AF37;
  font-size: 9px;
  font-family: inherit;
  opacity: 0.7;
}
.bvm-ts-highlight {
  stroke: #D4AF37;
  stroke-width: 5;
  fill: none;
  opacity: 1;
}
.bvm-ts-era-band {
  fill: rgba(212, 175, 55, 0.04);
}
.bvm-ts-era-band:nth-child(even) {
  fill: rgba(212, 175, 55, 0.08);
}
.bvm-ts-arcs {
  transition: opacity 200ms ease;
}
.bvm-ts-arcs.dimmed {
  opacity: 0.3;
}

/* Right info column section labels */
.bvm-tl-info-section { margin-top: 14px; }
.bvm-tl-info-label {
  color: #D4AF37;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.bvm-tl-info-value {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────────────────────
   BV-M Info card — expanded sections
   ────────────────────────────────────────────────────────────── */
.bvm-tl-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.4;
}

.bvm-tl-card-row:last-child {
  border-bottom: none;
}

.bvm-tl-card-row-name {
  flex: 1 1 auto;
  min-width: 0;
}

.bvm-tl-card-badge {
  color: #D4AF37;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 70px;
  text-align: center;
}

.bvm-tl-card-grid {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 6px 12px;
  margin-top: 6px;
}

.bvm-tl-card-grid-label {
  color: #D4AF37;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 2px;
}

.bvm-tl-card-grid-value {
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.4;
}

.bvm-tl-card-chip.cream {
  background: rgba(245, 233, 200, 0.04);
  border: 1px solid rgba(245, 233, 200, 0.4);
  color: #f5e9c8;
}

/* ──────────────────────────────
   BV-M Intro Splash (Fix L)
   ────────────────────────────── */
.bvm-splash {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #132031;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 500ms ease;
  cursor: pointer;
}
.bvm-splash.hide {
  opacity: 0;
  pointer-events: none;
}
.bvm-splash-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 70vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.bvm-splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #132031;
}

.zone-a .view-title {
  color: #D4AF37;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  pointer-events: none;
  flex: 1 1 auto;
  text-align: center;
}

/* ──────────────────────────────
   BV-M Era band (Fix Q2)
   Permanent header of right column.
   Fixed to viewport so it never
   scrolls away.
   ────────────────────────────── */
.bvm-era-band {
  position: fixed;
  top: 104px;
  right: 0;
  width: 22vw;
  z-index: 50;
  background: rgba(19, 32, 49, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 4px;
  font-weight: 600;
  line-height: 1.15;
  pointer-events: none;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}

/* Hide the band when the right
   column is collapsed via the
   chevron toggle. */
.bvm-tl-info.collapsed ~ * .bvm-era-band,
.bvm-tl-info.collapsed .bvm-era-band {
  display: none;
}

/* ──────────────────────────────
   BV-M tap-to-navigate (Fix R)
   ────────────────────────────── */
.bvm-people-row[data-nav-name] {
  cursor: pointer;
  transition: background 150ms ease;
}
.bvm-people-row[data-nav-name]:hover {
  background: rgba(212, 175, 55, 0.06);
}
.bvm-people-row[data-nav-name]:active {
  background: rgba(212, 175, 55, 0.12);
}
.bvm-people-row[data-nav-name] .bvm-people-name {
  color: #D4AF37;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.35);
  text-underline-offset: 3px;
}
