/* === S.O.N. — IMPACT REPORTS PAGE STYLES === */

/* ─── REPORTS SECTION ─── */
.reports-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 6rem;
}

.reports-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}

.reports-intro p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: .75rem;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

/* ─── REPORT CARD ─── */
.report-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.report-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

/* Thumbnail — letter paper ratio */
.report-thumb {
  aspect-ratio: 8.5 / 11;
  background: linear-gradient(150deg, #012B78 0%, #0a1628 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  object-position: left;
}

/* Year shown as large overlay when no image fills the thumb */
.report-thumb-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(248,218,64,.18);
  letter-spacing: .05em;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

/* Small S.O.N. label inside thumb */
.report-thumb-label {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.25);
  z-index: 1;
}

/* Card body */
.report-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.report-year-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: .04em;
}

.report-meta {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lt-blue);
}

.report-cta {
  margin-top: .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.report-cta::after {
  content: '→';
  transition: transform .18s;
}

.report-card:hover .report-cta::after {
  transform: translateX(4px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .reports-section { padding: 3.5rem 1.8rem; }
  .reports-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 500px) {
  .reports-grid { grid-template-columns: 1fr; }
}
