/* ====== Report Page (scoped) ====== */
.report .block__header h2 {
  color: #9deae4;
  letter-spacing: .3px;
  margin-bottom: .5rem;
}
.report .block__header p {
  color: #c7e8e5;
  max-width: 72ch;
}

/* Light cards on dark site */
.report .feature__content,
.report .feature.grid .feature__content {
  background: #ffffff;
  color: #0e1726;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.report .feature__heading {
  color: #0e1726;
  font-weight: 800;
  font-size: 1.4rem;
  margin: .25rem 0 0.75rem;
}

/* Body text inside the white cards */
.report .feature__content p {
  color: #2b3a4a;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Lists inside report */
.report .list,
.report .feature__content .list {
  margin: .25rem 0 1rem;
}
.report .list li {
  color: #233244;
  margin: .35rem 0;
}

/* Images (illustrations / dashboards) */
.report .feature__img {
  width: 100%;
  height: auto;
  max-width: 640px; /* keep images tidy */
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  display: block;
  margin: 0 auto;
}

/* Grid spacing tweaks (reuse your grid but add breathing space) */
.report .feature.grid {
  gap: 2rem;
  align-items: center;
  margin: 1.25rem 0 2.25rem;
}
@media (max-width: 900px) {
  .report .feature.grid {
    gap: 1.25rem;
  }
  .report .feature__content {
    padding: 1rem 1rem 1.25rem;
    border-radius: 14px;
  }
  .report .feature__img {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* Link arrow (clean arrow, not "-->") */
.report .link-arrow {
  color: var(--color-accent, #00e6a8);
  text-transform: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2px;
}
.report .link-arrow::after {
  content: '→';
  margin-left: 6px;
  transition: transform .15s ease;
}
.report .link-arrow:hover::after {
  transform: translateX(3px);
}

/* Section footer inside report */
.report .block__footer {
  color: #9deae4;
}
.report .block__footer p {
  opacity: .9;
}

/* Optional accent icon container on dark */
.report .icon-container {
  background: #00e6a81a;
  border-radius: 12px;
  padding: .5rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: .75rem;
}

/* Print-friendly (for exporting the report) */
@media print {
  /* White background for the whole report */
  body { background: #fff !important; }
  .report .block__header h2 { color: #0e1726 !important; }
  .report .block__header p { color: #31465a !important; }
  .report .feature__content {
    box-shadow: none !important;
    border: 1px solid #e7ecef;
    break-inside: avoid;
  }
  .report .feature__img {
    box-shadow: none !important;
  }
  .report .link-arrow::after {
    content: ' → ';
  }
}
