/* report.html — additions on top of pages.css / content-pages.css.
 * Reuses --gm-* tokens throughout; no new colors introduced beyond the
 * existing palette. .resource-grid / .resource-card / .callout are already
 * defined in content-pages.css and are reused as-is for the "Know more"
 * links — this file only adds what's genuinely new: the audience cards,
 * the receipt/secret-code callout, and the opsec checklist.
 */

/* ---- "Before you write anything" checklist ---- */

.opsec-list {
  max-width: 45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.opsec-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--gm-text);
  font-size: clamp(1.02rem, 0.25vw + 0.98rem, 1.18rem);
  line-height: 1.5;
}

.opsec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--gm-ink);
  transform: rotate(45deg);
}

/* ---- Receipt / secret-code callout ---- */

.receipt-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  max-width: 52rem;
  margin-top: 1.4rem;
  padding: 1.1rem 1.3rem;
  border: 1.5px solid rgba(5, 5, 5, 0.55);
  background: var(--gm-cream);
}

.receipt-callout__code {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border: 1.5px dashed rgba(5, 5, 5, 0.55);
  background: rgba(255, 255, 255, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gm-ink);
}

.receipt-callout p {
  margin: 0;
  max-width: none;
  font-weight: 650;
}

/* ---- Audience cards ("Choose your questionnaire") ---- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 64rem;
  margin-top: 1.5rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem;
  border: 1px solid rgba(7, 26, 51, 0.32);
  background: rgba(255, 231, 168, 0.13);
  box-shadow: 4px 4px 0 rgba(5, 5, 5, 0.13);
}

.audience-card:hover,
.audience-card:focus-visible {
  background: var(--gm-cream);
  border-color: rgba(5, 5, 5, 0.7);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(5, 5, 5, 0.18);
  outline: none;
}

.audience-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	/* border: 1px solid rgba(5, 5, 5, 0.4); */
	background: var(--gm-cream);
	color: var(--gm-ink);
	border-radius: 10px;
	margin-left: 1rem;
}

.audience-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.audience-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gm-ink);
}

.audience-card p {
  margin: 0;
  max-width: none;
  color: var(--gm-muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.audience-card__cta {
  margin-top: auto;
  padding-top: 0.4rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gm-ink);
}

.audience-card__cta::after {
  content: " \2197"; /* ↗ */
}

@media (max-width: 680px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .receipt-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}
