/* public/css/gate-banner.css — confidence gate banner
 *
 * Single render path used by: result page (post-race wire), Studio
 * preview, and the Track A PDF stylesheet. Per STUDIO_V0_SPEC.md §5:
 * gate banner CANNOT be suppressed by any toggle. Honesty isn't a
 * section.
 *
 * Palette: amber accent on paper. Conservative — this is a
 * confidence note, not an alarm. Mike's law: "verify before
 * presenting" framing, not trigger codes.
 */

.gate-banner {
  border: 1px solid #d9b67a;
  background: #fdf6e8;
  border-left: 4px solid #b88a3a;
  border-radius: 4px;
  padding: 14px 16px 14px 18px;
  margin: 16px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #4a3e1d;
}

.gate-banner__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #6b4f1a;
  margin-bottom: 6px;
}

.gate-banner__head::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #b88a3a;
  border-radius: 50%;
}

.gate-banner__headline {
  font-size: 14px;
  font-weight: 600;
  color: #2b2418;
  margin: 0 0 8px;
  line-height: 1.4;
}

.gate-banner__cap-line {
  font-size: 12px;
  color: #6b5d3e;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gate-banner__cap-arrow {
  color: #b88a3a;
  font-weight: 700;
}

.gate-banner__cap-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #d9b67a;
  color: #6b5d3e;
}

.gate-banner__cap-pill--low      { background: #f4e7e7; border-color: #c4a0a0; color: #7a3838; }
.gate-banner__cap-pill--moderate { background: #fef3e0; border-color: #d9b67a; color: #6b4f1a; }
.gate-banner__cap-pill--high     { background: #e6efe7; border-color: #8eb59a; color: #2f5d3f; }

.gate-banner__reasons {
  margin: 6px 0 0;
  padding-left: 20px;
  font-size: 12px;
  color: #4a3e1d;
  line-height: 1.5;
}
.gate-banner__reasons li { margin: 2px 0; }

.gate-banner__verify {
  font-size: 12px;
  font-style: italic;
  color: #6b5d3e;
  margin: 10px 0 0;
  padding-top: 8px;
  border-top: 1px dashed #d9b67a;
}

/* PDF-print variant — keeps the amber accent visible in print */
@media print {
  .gate-banner { break-inside: avoid; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* Compact variant for Studio rail preview */
.gate-banner--compact {
  padding: 10px 12px;
  margin: 8px 0;
}
.gate-banner--compact .gate-banner__head { font-size: 11px; }
.gate-banner--compact .gate-banner__headline { font-size: 13px; }
.gate-banner--compact .gate-banner__verify { display: none; }
