:root {
  color: #1d1d1f;
  background: #f6f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

.page-shell {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 46px 0 72px;
}

.site-header {
  margin-bottom: 34px;
}

.eyebrow {
  margin-bottom: 7px;
  color: #6e6e73;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

.intro {
  max-width: 660px;
  margin-top: 13px;
  color: #515154;
  font-size: 17px;
  line-height: 1.5;
}

.report-section {
  display: grid;
  gap: 18px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 4px;
}

.section-header h2 {
  font-size: 20px;
  line-height: 1.2;
}

.section-header p {
  color: #6e6e73;
  font-size: 14px;
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #dfdfe5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 4%), 0 1px 2px rgb(0 0 0 / 5%);
}

.report-card:focus-visible,
.report-card:hover {
  border-color: #b7b7c1;
  outline: none;
}

.report-date {
  margin-bottom: 6px;
  color: #86868b;
  font-size: 13px;
  line-height: 1.35;
}

.report-card h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: 12px;
}

.report-stats div {
  min-width: 0;
}

.report-stats dt {
  color: #86868b;
  font-size: 12px;
  line-height: 1.25;
}

.report-stats dd {
  margin-top: 3px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.empty-state {
  padding: 22px;
  color: #6e6e73;
  border: 1px solid #dfdfe5;
  border-radius: 8px;
  background: #ffffff;
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 32px;
  }

  .section-header,
  .report-card {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 6px;
  }

  .report-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

