.report-page {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.report-hero,
.report-note,
.sample-leads,
.report-cta,
.report-footer {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.report-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.report-hero p,
.report-note p,
.report-cta p,
.report-footer p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.report-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.report-summary div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.report-summary div:last-child {
  border-bottom: none;
}

.report-summary span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-summary strong {
  display: block;
  margin-top: 4px;
}

.report-note,
.sample-leads,
.report-cta,
.report-footer {
  margin-top: 22px;
}

.sample-leads h2,
.report-note h2,
.report-cta h2 {
  font-size: 26px;
}

.report-lead {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  page-break-inside: avoid;
  break-inside: avoid;
}

.report-lead-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.report-lead-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-lead-head strong {
  flex: 0 0 auto;
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 7px 9px;
  color: var(--teal-dark);
}

.report-lead dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.report-lead p {
  margin-top: 9px;
}

.source {
  color: var(--muted);
}

.report-cta {
  background: #eef5f1;
  border-color: #b9d0c5;
}

.report-cta .button {
  margin-top: 22px;
}

.report-footer {
  color: var(--muted);
  font-size: 14px;
}

.report-footer a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

@media print {
  @page {
    margin: 0.55in;
  }

  .site-header {
    display: none;
  }

  body {
    background: #ffffff;
    font-size: 11.5px;
  }

  .report-page {
    width: 100%;
    padding: 0;
  }

  .report-hero,
  .report-note,
  .sample-leads,
  .report-cta,
  .report-footer,
  .report-lead {
    box-shadow: none;
    border-color: #cfd6cf;
  }

  .report-hero {
    grid-template-columns: 1fr;
  }

  .report-hero h1 {
    font-size: 26px;
  }

  .sample-leads h2,
  .report-note h2,
  .report-cta h2 {
    font-size: 17px;
  }

  .report-lead {
    padding: 13px;
    margin-top: 10px;
  }

  .report-lead h3 {
    font-size: 14px;
  }

  .report-lead dl {
    gap: 8px 14px;
  }

  .report-cta .button {
    display: none;
  }
}

@media (max-width: 760px) {
  .report-hero {
    grid-template-columns: 1fr;
  }

  .report-lead dl {
    grid-template-columns: 1fr;
  }

  .report-lead-head {
    flex-direction: column;
  }
}
