.market-reports-body {
  background:
    radial-gradient(circle at top right, rgba(214, 40, 40, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 1) 18%);
}

.report-hero {
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.report-landing-hero .hero-grid,
.report-hero .hero-grid {
  align-items: stretch;
}

.report-dashboard-card {
  height: 100%;
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  background:
    linear-gradient(180deg, rgba(15, 42, 68, 0.96), rgba(15, 42, 68, 0.88)),
    radial-gradient(circle at 15% 10%, rgba(214, 40, 40, 0.18), transparent 35%);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 22px 54px rgba(15, 42, 68, 0.18);
  padding: 2rem;
}

.report-dashboard-card .dashboard-label,
.report-dashboard-card .dashboard-text,
.report-dashboard-card h2 {
  color: var(--white);
}

.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.report-metric-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.report-metric-card {
  background: var(--white);
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.report-metric-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.report-metric-card h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.report-metric-detail {
  color: var(--muted);
  margin-bottom: 0;
}

.report-link-card,
.report-insight-card,
.report-interpretation-card {
  position: relative;
  overflow: hidden;
}

.report-link-card::before,
.report-insight-card::before,
.report-interpretation-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(15, 42, 68, 0.6));
}

.report-inline-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.report-inline-link-row {
  margin: 0.85rem 0 0;
}

.report-status-pill {
  display: inline-flex;
  width: fit-content;
  background: rgba(214, 40, 40, 0.12);
  border-radius: 999px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
}

.text-link {
  color: var(--red);
  font-weight: 700;
}

.text-link.is-muted {
  color: var(--muted);
}

.report-list {
  margin: 0;
  padding-left: 1.1rem;
}

.report-list li + li {
  margin-top: 0.55rem;
}

.report-placeholder-grid {
  display: grid;
  gap: 0.9rem;
}

.report-placeholder-card {
  border: 1px dashed rgba(15, 42, 68, 0.18);
  border-radius: 12px;
  padding: 1rem;
}

.report-chart-grid {
  align-items: start;
}

.report-chart-card {
  background: var(--white);
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.report-chart-header h3 {
  margin-bottom: 0.35rem;
}

.report-chart-header p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.report-chart svg {
  display: block;
  height: auto;
  width: 100%;
}

.report-chart-empty {
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.035), rgba(214, 40, 40, 0.06));
  border: 1px dashed rgba(15, 42, 68, 0.14);
  border-radius: 12px;
  color: var(--muted);
  display: grid;
  min-height: 260px;
  padding: 1.25rem;
  text-align: center;
}

.report-axis-label,
.report-axis-text {
  fill: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.report-axis-line,
.report-grid-line {
  stroke: rgba(15, 42, 68, 0.14);
  stroke-width: 1;
}

.report-grid-line {
  stroke-dasharray: 3 4;
}

.report-bar {
  fill: rgba(15, 42, 68, 0.9);
}

.report-bar-accent {
  fill: rgba(214, 40, 40, 0.88);
}

.report-point {
  fill: rgba(214, 40, 40, 0.78);
  stroke: rgba(15, 42, 68, 0.2);
  stroke-width: 1;
}

.report-cta-section {
  position: relative;
  overflow: hidden;
}

.report-cta-card {
  display: grid;
  gap: 1.25rem;
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.market-reports-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.market-reports-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.report-takeaway {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .market-reports-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
