/* ===== Report Page Styles ===== */

.report-hero {
  background: var(--navy);
  padding: calc(72px + 3rem) 0 3rem;
  color: var(--white);
}

.report-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 1rem;
}

.report-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 700px;
}

.report-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

/* Layout */
.report-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: var(--section-pad);
}

/* Sticky TOC */
.report-toc {
  position: relative;
}

.report-toc nav {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.report-toc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.report-toc ul {
  list-style: none;
}

.report-toc li {
  margin-bottom: 0.4rem;
}

.report-toc a {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: block;
  padding: 0.3rem 0;
  padding-left: 0.75rem;
  border-left: 2px solid transparent;
  transition: all 0.2s var(--ease);
  line-height: 1.4;
}

.report-toc a:hover,
.report-toc a.active {
  color: var(--navy);
  border-left-color: var(--crimson);
}

/* Report Content */
.report-content {
  max-width: 780px;
  min-width: 0;
}

.report-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  line-height: 1.2;
}

.report-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.report-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.report-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.report-content p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

.report-content .bib-entry {
  font-size: 0.9rem;
  padding-left: 2rem;
  text-indent: -2rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* Responsive */
@media (max-width: 968px) {
  .report-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .report-toc nav {
    position: static;
    max-height: none;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
  }
}
