/*
  Shared report landing page components.
  This stylesheet avoids body/html overrides and only targets report-specific primitives.
*/

.report-page .report-container {
  width: min(var(--maxw), calc(100% - 32px));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.report-page .report-card {
  background: var(--hvb-paper);
  border: 1px solid rgba(14, 59, 46, 0.12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-1);
  padding: clamp(18px, 2vw, 30px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.report-page .report-card:focus-visible,
.report-page .report-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
}

.report-page .report-takeaways {
  margin: clamp(12px, 1vw, 18px) 0;
  padding-inline: clamp(10px, 2vw, 20px);
  color: var(--hvb-slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

.report-page .report-takeaways li {
  margin-bottom: 10px;
}

.report-page .report-preview__grid {
  display: grid;
  gap: clamp(16px, 3vw, 32px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: flex-start;
}

.report-page .report-preview__figure {
  margin: 0;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 520px;
}

.report-page .report-preview__figure img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(14, 59, 46, 0.12);
  display: block;
}

.report-page .report-preview__figure figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--hvb-slate);
}

@media (max-width: 720px) {
  .report-page .report-preview__grid {
    grid-template-columns: 1fr;
  }

  .report-page .report-preview__figure {
    justify-self: stretch;
    align-items: center;
  }
}

.report-page .report-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.report-page .report-embed-actions .btn {
  flex: 1 1 220px;
}

.report-page .report-cta-band {
  border-radius: var(--radius-card);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(14, 59, 46, 0.15);
  background:
    linear-gradient(180deg, rgba(14, 59, 46, 0.16), rgba(14, 59, 46, 0.04)),
    url("/assets/textures/tx_recycled-paper_tile.png");
  background-size: cover, 640px 640px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--hvb-black);
}

@media (prefers-reduced-motion: reduce) {
  .report-page .report-card,
  .report-page .report-preview__figure img {
    transition: none;
    transform: none;
  }
}

.report-page section {
  padding: 56px 0;
}

.report-page .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.report-page .kicker {
  font-family: var(--font-head);
  color: var(--hvb-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.report-page h2 {
  margin: 6px 0 0;
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--hvb-black);
}

.report-page .subhead {
  margin: 10px 0 0;
  color: var(--hvb-slate);
  max-width: 80ch;
}

.report-page .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.report-page .grid3 .card figure {
  margin: 0 0 12px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.report-page .grid3 .card figure img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.report-page .mini {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-page .grid3 .card .media-frame--4-3 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.report-page .grid3 .card .media-frame--4-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .report-page .grid3 {
    grid-template-columns: 1fr;
  }
}
