/*
  Campaign Verify notice. Styles for _campaign_verify_notice.html.

  Deliberately uses the site's own tokens (--navy, --red, --paper, --rule) so
  the notice reads as part of the page rather than as a bolted-on warning
  banner. It is a requirement of the product, not an error state, and styling it
  like an alert would make people skim past it.
*/

.cv-band {
  background: var(--paper, #F5F1E8);
  border-top: 1px solid var(--rule, #DDD8CC);
  border-bottom: 1px solid var(--rule, #DDD8CC);
  padding: 56px 0;
}
.cv-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red, #B42318);
  margin: 0 0 16px;
}
.cv-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  vertical-align: 0.3em;
  margin-right: 9px;
}
.cv-band h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy, #0F1E38);
  margin: 0 0 16px;
  max-width: 720px;
}
.cv-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate, #5A6472);
  margin: 0 0 32px;
  max-width: 680px;
}
.cv-lede a,
.cv-inline a,
.cv-compact a {
  color: var(--red, #B42318);
  border-bottom: 1px solid currentColor;
}

.cv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--rule, #DDD8CC);
}
@media (max-width: 860px) {
  .cv-steps { grid-template-columns: 1fr; }
}
.cv-step {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid var(--rule, #DDD8CC);
}
.cv-step dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate, #5A6472);
  margin-bottom: 8px;
}
.cv-step dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink, #1A1A1A);
}
.cv-foot {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate, #5A6472);
  max-width: 680px;
}

/* Inline card, for use inside an existing section. */
.cv-inline {
  background: var(--paper, #F5F1E8);
  border: 1px solid var(--rule, #DDD8CC);
  border-left: 3px solid var(--red, #B42318);
  padding: 24px 28px;
  margin: 32px 0;
}
.cv-inline h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy, #0F1E38);
  margin: 0 0 12px;
}
.cv-inline p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate, #5A6472);
}
.cv-inline p:last-child { margin-bottom: 0; }

/* One-liner, for a form or a status page. */
.cv-compact {
  font-size: 13px;
  line-height: 1.55;
  color: var(--slate, #5A6472);
  background: var(--paper, #F5F1E8);
  border: 1px solid var(--rule, #DDD8CC);
  padding: 12px 14px;
  margin: 16px 0 0;
}
.cv-compact strong { color: var(--navy, #0F1E38); }
