/* ── BIBLE STUDY BAR ── */
.bible-study-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(184,134,11,0.08);
  border-bottom: 1px solid rgba(184,134,11,0.18);
  flex-wrap: wrap;
}
body.light-mode .bible-study-bar {
  background: rgba(184,134,11,0.1);
  border-bottom: 1px solid rgba(184,134,11,0.25);
}
.bible-study-label {
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.7;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 8px;
  border-right: 1px solid rgba(184,134,11,0.3);
}
.bible-study-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.bsb {
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: none;
  border-radius: 6px;
  background: rgba(184,134,11,0.14);
  color: var(--gold-light);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
body.light-mode .bsb { color: #1a0e00; font-weight: 600; }
.bsb:hover { background: rgba(184,134,11,0.3); color: var(--gold); }
