*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  background: #0a0a0a;
  color: #eaeaea;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

.reports {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 48px);
}

/* Entry cards (populated later) */
.report-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
}

.report-card:first-child { padding-top: 0; }

.report-card:hover .report-title {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.report-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.report-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e6e;
}

.report-title {
  font-family: "Didot", "Bodoni MT", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.report-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9e9e9e;
  margin: 0;
}

.report-read {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e6e6e;
}

.reports-empty {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e6e6e;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

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