.reports-title {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

.report-head {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.report-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.report-list {
  display: grid;
  gap: 14px;
}

.report-card,
.meta-card,
.chart-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.report-card-inner,
.meta-card,
.chart-card {
  padding: 16px 18px;
}

.report-card-feature .report-card-inner {
  padding: 20px 22px;
}

.report-date {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-name {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.report-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.report-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-dark);
  color: var(--text);
  font-size: 0.92rem;
}

.report-link-primary {
  border-color: rgba(246, 183, 86, 0.45);
  background: rgba(246, 183, 86, 0.12);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card h3 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.meta-card p {
  margin: 0;
  color: var(--text);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  word-break: break-word;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.chart-card {
  margin: 0;
}

.chart-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.chart-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.report-body {
  color: var(--text-soft);
  line-height: 1.7;
}

.report-body h1,
.report-body h2,
.report-body h3,
.report-body h4 {
  color: var(--text);
  margin-top: 1.8rem;
}

.report-body p,
.report-body li {
  color: var(--text-soft);
}

.report-body hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  margin: 1.6rem 0;
}

.report-body ul {
  padding-left: 1.2rem;
}

.report-body strong {
  color: var(--text);
}

.report-body-fallback {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-soft);
  font-family: var(--font-mono);
  line-height: 1.65;
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 760px) {
  .meta-grid,
  .chart-grid {
    grid-template-columns: 1fr;
  }
}

.chart-link {
  display: block;
  text-decoration: none;
}

.chart-link:hover img,
.chart-link:focus-visible img {
  border-color: rgba(246, 183, 86, 0.45);
  box-shadow: 0 0 0 1px rgba(246, 183, 86, 0.2);
}