  :root {
  --red: #C0152A;
  --red-dark: #a01020;
  --yellow: #ffd61e;
  --yellow-dark: #f0c100;
  --green: #5A9E1A;
  --green-dark: #4a8414;
  --navy: #1B2A6B;
  --white: #ffffff;
  --black: #111111;
}


.card {
  background: white;
  max-width: 900px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

/* ── Header ── */
.card-header {
  background: var(--navy);
  padding: 1.25rem 2rem;
  text-align: center;
  margin-top: 50px;
}

.card-header p {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Three-column layout
   Desktop: CSS Grid with subgrid so all 3 action boxes share one row height.
   Each .col has two children: .col-top (badge+situation) and .action.
   Mobile: plain flex column — each .col stacks fully before the next. */
.crisis-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}

.crisis-columns .col {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}

.col-top {
  display: flex;
  flex-direction: column;
}

/* ── Badge ── */
.badge-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: white;
}

.badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  border: 4px solid white;
}

.col-yes .badge   { background: var(--red);   color: white; box-shadow: 0 0 0 3px var(--red); }
.col-unsure .badge{ background: var(--yellow); color: var(--black); box-shadow: 0 0 0 3px var(--yellow); }
.col-no .badge    { background: var(--green);  color: black; box-shadow: 0 0 0 3px var(--green); }

/* ── Situation box ── */
.situation {
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.col-yes .situation    { background: var(--red);    color: white; }
.col-unsure .situation { background: var(--yellow); color: var(--black); }
.col-no .situation     { background: var(--green);  color: black; }

.situation::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  margin: 0.75rem auto 0;
}

.col-yes .situation::after    { border-top: 18px solid var(--red); }
.col-unsure .situation::after { border-top: 18px solid var(--yellow); }
.col-no .situation::after     { border-top: 18px solid var(--green); }

/* ── Action box ── */
.action {
  padding: 1.25rem 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  text-align: center;
  border: 3px solid var(--black);
}

.col-yes .action    { background: var(--red-dark);    color: white; }
.col-unsure .action { background: var(--yellow-dark); color: var(--black); }
.col-no .action     { background: var(--green-dark);  color: white; }

.action .action-cta {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.action p { margin-top: 0.5rem; }

.crisis-columns a {
  color: inherit;
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 2px;
}



/* ── Responsive ── */
@media (max-width: 600px) {
  .crisis-columns {
    display: flex;
    flex-direction: column;
  }

  .crisis-columns .col {
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid var(--navy);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}