/*
  LOCAL PREVIEW ACCENT — chosen 2026-08-24
  Uses the original live Skool berry-to-copper-to-gold gradient.
  Structural question cards only; answer controls and behavior are unchanged.
*/
:root {
  --lsh-skool-accent: linear-gradient(180deg, #c41e3a 0%, #cc6347 48%, #d4a853 100%);
}

.instructions,
.qcard,
.fw-card {
  position: relative;
}

.instructions::before,
.qcard::before,
.fw-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: var(--lsh-skool-accent);
  pointer-events: none;
}

