:root {
  /* Brand palette */
  --ink: #0B1F3A;       /* deep navy — text, headers, ghost buttons */
  --rally: #E5462C;     /* warm red — primary CTA, triggered state */
  --cyan: #3DA9C7;      /* medium cyan — secondary accents */
  --cyan-deep: #1F6F8B; /* deeper cyan — progress bar, links */
  --paper: #F4EFE6;     /* warm off-white — page background */

  /* Semantic mappings */
  --bg: var(--paper);
  --fg: var(--ink);
  --muted: rgba(11, 31, 58, 0.62);
  --accent: var(--rally);
  --accent-fg: #fff;
  --line: rgba(11, 31, 58, 0.14);
  --bar-bg: rgba(11, 31, 58, 0.10);
  --bar-fill: var(--cyan-deep);
  --triggered: var(--rally);
  --hi: #ffe9d8;        /* tinted highlight, derived from rally */
  --card: #fff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
}

header.site, footer.site {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

footer.site {
  border-top: 1px solid var(--line);
  border-bottom: none;
  margin-top: 64px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site .footer-nav { display: flex; gap: 18px; }
footer.site .footer-nav a {
  color: var(--muted);
  text-decoration: none;
}
footer.site .footer-nav a:hover { color: var(--ink); text-decoration: underline; }

/* LEGAL PAGES */
article.legal h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 8px;
}
article.legal p, article.legal li { font-size: 15px; line-height: 1.6; }
article.legal ul { padding-left: 20px; }
article.legal a { color: var(--cyan-deep); }

.brand {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 96px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
header.site {
  gap: 12px;
}
header.site .brand {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 120px);
  overflow: hidden;
}
header.site nav { flex: 0 0 auto; }

@media (max-width: 700px) {
  .brand-logo {
    height: auto;
    max-height: 56px;
    max-width: 70vw;
  }
}
@media (max-width: 600px) {
  header.site {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: none;
  }
  header.site .brand {
    max-width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }
  .brand-logo {
    max-height: 64px;
    max-width: 80vw;
    margin: 0 auto;
  }
  header.site nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 12px 14px;
  }
  header.site nav .btn {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 1;
    padding: 0 16px;
    font-size: 14px;
    margin: 0;
    vertical-align: middle;
  }
  header.site nav form {
    display: inline-flex !important;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  header.site nav .who { display: none; }
}

nav .who { color: var(--muted); margin-right: 12px; font-size: 14px; }

main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;
}
main .hero .lede,
main .lede { margin-left: auto; margin-right: auto; }
main .section-head { justify-content: center; }
main .campaigns-grid { justify-content: center; }
main .campaign-card-body { text-align: left; }
main .steps,
main .affected-grid { text-align: left; }
/* Forms inherit `main`'s text-align: center, which made labels,
   helper text, fieldset legends and pressure-level descriptions
   render centered — readable as headlines, hard to scan as a form.
   Left-align all form internals so labels and helper copy line up
   under their fields. */
main form,
main form label,
main form legend,
main form .pressure-blurb,
main form small,
main form p { text-align: left; }

h1 { font-size: 40px; line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.02em; }
h2 { font-size: 24px; margin: 48px 0 16px; letter-spacing: -0.01em; }
h3 { font-size: 18px; margin: 0 0 6px; }

.muted { color: var(--muted); }
.small { font-size: 13px; }

/* HERO */
.hero { padding: 24px 0 8px; }
.hero h1 br { display: block; }
.hero .lede { font-size: 19px; color: #333; max-width: 580px; margin: 0 0 24px; }
.btn.big { padding: 14px 22px; font-size: 16px; }

/* HOW IT WORKS */
.how ol.steps { list-style: none; padding: 0; counter-reset: step; }
.how ol.steps li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 12px;
  background: var(--card);
}
.how h3 {
  font-size: 17px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-weight: 700;
}

/* AFFECTED CATEGORIES */
.affected-grid {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.affected-grid li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--card);
}

/* CAMPAIGNS LIST */
ul.campaigns { list-style: none; padding: 0; margin: 0; }
ul.campaigns li {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--card);
}
ul.campaigns a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
}
ul.campaigns .campaign-row-body { flex: 1; min-width: 0; }
ul.campaigns .meta { color: var(--muted); font-size: 14px; margin: 6px 0; }

/* LOGO + CANCEL STAMP */
.logo-stamp {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.logo-stamp img {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
}
.logo-stamp .stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--rally);
  text-transform: uppercase;
  transform: rotate(-18deg);
  pointer-events: none;
  text-shadow: 0 0 1px rgba(255,255,255,0.9);
}
.logo-stamp.no-logo .stamp { display: none; }

/* small (campaigns list) */
.logo-stamp.small img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  padding: 6px;
}
.logo-stamp.small .stamp {
  font-size: 14px;
  border: 2px solid var(--rally);
  border-radius: 4px;
  padding: 1px 4px;
  background: rgba(255, 255, 255, 0.55);
  width: max-content;
  height: max-content;
  margin: auto;
  inset: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

/* big (campaign detail hero) */
.logo-stamp.big {
  display: block;
  width: 240px;
  margin: 0 0 24px;
}
.logo-stamp.big img {
  width: 240px;
  height: 240px;
  border-radius: 24px;
  object-fit: contain;
  padding: 28px;
}
.logo-stamp.big .stamp {
  font-size: 56px;
  border: 4px solid var(--rally);
  border-radius: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.55);
  width: max-content;
  height: max-content;
  margin: auto;
  inset: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

/* CLOSER */
.closer { margin-top: 64px; padding: 32px 0; border-top: 1px solid var(--line); }

.narrow { max-width: 580px; margin-left: auto; margin-right: auto; }
article.legal { text-align: left; }
article.legal h1, article.legal h2 { text-align: center; }
.privacy-tldr {
  background: #fff;
  border: 2px solid var(--rally);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.55;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
.btn:active { opacity: .85; }
.btn.primary { background: var(--accent); }
.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}

/* FORMS */
form label { display: block; margin: 16px 0; font-weight: 600; font-size: 14px; }
form input[type="text"], form input[type="email"], form input[type="number"],
form input[type="date"], form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 400;
  background: var(--card);
}
form .row { display: flex; gap: 16px; }
form .row label { flex: 1; }
form button { margin-top: 8px; }
form small.muted { font-weight: 400; display: block; margin-top: 6px; }
/* File inputs default to inline-block, which lands them on the same
   line as the label text. Force a line break so the upload control
   sits cleanly under the label and helper text appears under it. */
form input[type="file"] { display: block; margin-top: 6px; }

/* AUTOCOMPLETE */
.suggestions {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  max-height: 240px;
  overflow-y: auto;
}
.suggestions li {
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 400;
}
.suggestions li:hover { background: var(--hi); }

/* PRESSURE LEVEL FIELDSET */
fieldset.pressure {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0;
  background: var(--card);
}
fieldset.pressure legend { padding: 0 8px; font-weight: 600; font-size: 14px; }
.pressure-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-areas: "radio label" ". blurb";
  gap: 4px 10px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-weight: 500;
}
.pressure-option:last-child { border-bottom: none; }
.pressure-option input { grid-area: radio; align-self: start; margin-top: 4px; }
.pressure-label { grid-area: label; }
.pressure-blurb { grid-area: blurb; font-size: 13px; line-height: 1.45; }

/* THRESHOLD PREVIEW */
.preview {
  background: var(--hi);
  border: 1px solid rgba(229, 70, 44, 0.30);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
}
.preview-headline { margin: 0 0 6px; font-size: 18px; }
.preview-headline strong { font-size: 24px; letter-spacing: -0.01em; }

/* CAMPAIGN DETAIL */
.bar { background: var(--bar-bg); border-radius: 999px; height: 6px; overflow: hidden; margin: 8px 0; }
.bar.big { height: 12px; margin: 16px 0; }
.bar > span { display: block; height: 100%; background: var(--bar-fill); }

.tag { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; background: rgba(11, 31, 58, 0.10); color: var(--ink); margin-left: 6px; font-weight: 600; }
.tag.triggered { background: var(--triggered); color: #fff; }

aside.rationale {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}
aside.rationale h3 { margin-top: 0; }

.description-block { margin: 24px 0; }
.description { white-space: pre-wrap; }

.action-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--card);
  margin: 32px 0;
}

/* SHARE */
.share-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  background: var(--card);
  margin: 24px 0;
}
.share-block h3 { margin-top: 0; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.share, button.share {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--fg);
  cursor: pointer;
}
.share:hover, button.share:hover { background: var(--hi); }
.share.twitter  { border-color: #000;     color: #000;     }
.share.facebook { border-color: #1877f2;  color: #1877f2;  }
.share.linkedin { border-color: #0a66c2;  color: #0a66c2;  }
.share.reddit   { border-color: #ff4500;  color: #ff4500;  }
.share.whatsapp { border-color: #25d366;  color: #1a8a45;  }

ul.flash {
  list-style: none;
  margin: 0;
  padding: 12px 24px;
  background: var(--hi);
  color: var(--ink);
  border-bottom: 1px solid rgba(229, 70, 44, 0.30);
}

/* === Campaign grid (homepage + all-campaigns page) === */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2 { margin: 0; }
.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--rally, #c63);
  text-decoration: none;
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

.hero.compact { padding: 24px 0 8px; }
.hero.compact h1 { font-size: 36px; line-height: 1.1; }

.campaigns-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.campaigns-grid .campaign-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.campaigns-grid .campaign-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.campaigns-grid .campaign-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
}
.campaigns-grid .campaign-card-body { margin-top: 12px; }
.campaigns-grid .campaign-card-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.campaigns-grid .campaign-card-body .title {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.campaigns-grid .campaign-card-body .meta {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* medium logo-stamp for cards */
.logo-stamp.medium {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.logo-stamp.medium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  border: none;
  background: transparent;
}
.logo-stamp.medium .stamp {
  font-size: 22px;
  line-height: 1.05;
  text-align: center;
  border: 3px solid var(--rally);
  border-radius: 6px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.7);
  width: max-content;
  height: max-content;
  margin: auto;
  inset: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.logo-stamp.medium.no-logo {
  background: #f4ede2;
}

/* === Page head + search (all-campaigns page) === */

.page-head { margin: 16px 0 24px; }
.page-head h1 { margin: 0 0 4px; }
.page-head .muted { margin: 0 0 16px; }
.search-input {
  width: 100%;
  max-width: 480px;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--fg);
  font-family: inherit;
}
.search-input:focus {
  outline: 2px solid var(--rally);
  outline-offset: 2px;
}
.no-results { margin-top: 24px; }

/* === Headers: Kite One + brand color === */
h1, h2, h3, h4, h5, h6,
.brand {
  font-family: "Kite One", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #004671;
  font-weight: bold;
  text-transform: capitalize;
}

.hero h1 .line {
  display: block;
}
.hero h1 .line + .line {
  margin-top: 18px;
}
.hero h1 .line.lowercase {
  text-transform: none;
}
.hero h1 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  margin: 0 auto 24px;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(0, 70, 113, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-word {
  color: var(--rally);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.15em;
}

.cta-lede {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.tagline {
  font-family: "Kite One", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  color: #004671;
  text-align: center;
  margin: 28px auto 20px;
  font-weight: 400;
}

.campaigns-section {
  margin-top: 40px;
}
.campaigns-section h2 { margin-top: 0; }
.campaigns-section h2,
.how h2 {
  color: var(--rally);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

/* Campaign detail title split */
article.narrow h1 .title-main,
article.narrow h1 .title-sub {
  display: block;
  text-align: center;
}
article.narrow h1 .title-sub {
  font-size: 0.7em;
  margin-top: 8px;
  font-weight: 400;
  color: var(--cyan-deep);
}
article.narrow .logo-stamp.big { margin-left: auto; margin-right: auto; }
article.narrow { text-align: center; }
article.narrow .description-block,
article.narrow .rationale { text-align: left; }

/* Share block centering */
.share-block { text-align: center; }
.share-block .share-buttons { justify-content: center; }

/* Override grid: fixed-width cards, centered */
.campaigns-grid {
  grid-template-columns: repeat(auto-fit, 280px);
  justify-content: center;
}

/* === Phone capture modal === */
body .modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  inset: 0;
  background: rgba(11, 31, 58, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
body .modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  text-decoration: none;
  border-radius: 50%;
  font-weight: 400;
}
.modal-close:hover { background: rgba(11, 31, 58, 0.06); color: var(--ink); }
@media (max-width: 600px) {
  body .modal-overlay { padding: 0; }
  body .modal {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
  }
}
.modal h2 {
  color: var(--rally);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.modal p { font-size: 15px; margin: 0 0 16px; }
.modal input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 0 16px;
  font-family: inherit;
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}
.modal-actions .btn { white-space: nowrap; }
@media (max-width: 600px) {
  .modal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .modal-actions .btn { width: 100%; }
}
.modal .small { font-size: 12px; }

/* Attestation checkbox row on the campaign-create form */
label.attest {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  margin: 20px 0;
}
label.attest input[type="checkbox"] {
  margin: 4px 0 0;
  flex: 0 0 auto;
}
label.attest span { color: var(--ink); line-height: 1.45; }

/* Stamp picker on the campaign-create form. Same layout language as
   the pressure-level picker so they read as a matched set. */
.stamp-picker { border: none; padding: 0; margin: 24px 0 0; }
.stamp-picker > legend {
  font-weight: 600; font-size: 14px; padding: 0; margin-bottom: 4px;
}
.stamp-picker > small { display: block; margin-bottom: 12px; }
.stamp-option {
  display: grid;
  /* radio | preview tile | label+blurb */
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.stamp-option:last-child { border-bottom: 1px solid var(--line); }
.stamp-option input[type="radio"] {
  grid-row: 1 / span 2; grid-column: 1;
  align-self: center;
}
.stamp-option .stamp-preview {
  grid-row: 1 / span 2; grid-column: 2;
}
.stamp-label  { grid-row: 1; grid-column: 3; font-weight: 700; font-size: 15px; }
.stamp-blurb  { grid-row: 2; grid-column: 3; font-size: 13px; }

/* Stamp preview tile — placeholder square that mimics how the stamp
   will look composited over the campaign image. Same rotated red
   rubber-stamp visual language as the live render. */
.stamp-preview-tile {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  /* Subtle "your image goes here" check pattern so the preview reads
     as a placeholder, not as a real avatar. */
  background:
    repeating-conic-gradient(rgba(11,31,58,0.04) 0% 25%, transparent 0% 50%) 0 0 / 14px 14px,
    var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
}
.stamp-preview-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--rally);
  text-transform: uppercase;
  transform: rotate(-18deg);
  /* tiny stamp-y border to mirror the OG share card's rectangular
     stamp outline at this small scale. */
  border: 1.5px solid var(--rally);
  border-radius: 3px;
  padding: 2px 4px;
  margin: auto;
  width: max-content;
  height: max-content;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

/* Helper-text block under the campaign image upload. */
.image-tips { margin-top: 12px; padding: 12px 14px; background: var(--paper); border-radius: 8px; }
.image-tips p { margin: 0 0 6px; }
.image-tips p:last-child { margin-bottom: 0; }
.image-tips .image-ideas { margin-top: 8px; }
.image-tips .image-ideas summary { cursor: pointer; font-weight: 600; }
.image-tips .image-ideas ul { margin: 8px 0 0 18px; padding: 0; }
.image-tips .image-ideas li { margin-bottom: 4px; }
