/* ------------------------------------------------------------------
   /features/reports — the hub grid linking each individual report.

   Brand variables come from styles.css, loaded globally by root.tsx.
   ------------------------------------------------------------------ */

.report-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.report-hub-card {
  display: block;
  padding: 20px 22px;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(47, 72, 80, 0.14);
  /* Square left edge under the accent, for the same reason as the guide
     cards: a thick stripe bending round a rounded corner tapers and reads
     as a mistake. */
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.report-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 72, 80, 0.12);
  border-color: rgba(47, 72, 80, 0.22);
  border-left-color: var(--green);
}

.report-hub-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 6px;
}

/* The question each report answers, which is what the reader is scanning for. */
.report-hub-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(47, 72, 80, 0.68);
}

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