:root {
  --bg-1: #f4f7fb;
  --bg-2: #e9eef7;
  --ink: #162033;
  --muted: #5d6a80;
  --surface: #ffffff;
  --line: #d2dae8;
  --brand: #143c7d;
  --brand-strong: #0b2a5f;
  --accent: #0d9488;
  --shadow: 0 18px 45px rgba(18, 33, 64, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(20, 60, 125, 0.08), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(13, 148, 136, 0.08), transparent 32%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #dbe3f1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(9px);
}

.header-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  color: var(--brand-strong);
  font-family: 'Merriweather', serif;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 10px 16px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 0.93rem;
}

.site-nav a:hover {
  color: var(--brand);
}

.app {
  width: min(1180px, 94%);
  margin: 28px auto 44px;
  background: var(--surface);
  border: 1px solid #e4eaf4;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px 20px;
}

.hero {
  position: relative;
  padding: 6px 2px 20px;
  border-bottom: 1px dashed var(--line);
}

.kicker {
  margin: 0;
  color: var(--brand);
  font-family: 'Merriweather', serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 8px;
  font-family: 'Merriweather', serif;
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  line-height: 1.18;
  color: #101a31;
}

.desc {
  margin: 0;
  max-width: 930px;
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.62;
}

.meta-line {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.panel {
  margin-top: 18px;
  border: 1px solid #e4eaf3;
  border-radius: 14px;
  padding: 16px 14px;
  background: #fff;
}

.panel h2 {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  color: #16294d;
}

.metrics-panel {
  background: linear-gradient(180deg, #f8fbff, #f4f8ff);
}

.metric-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  border: 1px solid #d8e3f4;
  border-radius: 12px;
  background: #fff;
  padding: 12px 10px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  color: #0f2852;
  font-size: 1.35rem;
  font-family: 'Merriweather', serif;
}

.cards {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-card {
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  background: #fbfdff;
  padding: 12px;
}

.report-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-family: 'Merriweather', serif;
}

.report-card h3 a {
  text-decoration: none;
  color: #102449;
}

.report-card p {
  margin: 4px 0;
  color: #394a64;
  font-size: 0.94rem;
}

.read-link {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
}

.pager {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pager-link {
  text-decoration: none;
  border: 1px solid #c7d4ea;
  border-radius: 999px;
  padding: 7px 12px;
  color: #17335f;
  font-weight: 700;
  background: #fff;
}

.pager-link:hover {
  border-color: var(--brand);
}

.pager-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #dee7f4;
  padding: 8px;
  text-align: left;
  font-size: 0.9rem;
}

th {
  background: #edf3ff;
  color: #15336c;
  font-weight: 700;
}

tbody tr:nth-child(even) {
  background: #f9fbff;
}

.policy-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #374763;
  line-height: 1.66;
}

.insight-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card {
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  background: #f9fbff;
  padding: 12px;
}

.insight-card h4 {
  margin: 0;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #12284f;
  line-height: 1.35;
}

.insight-card h4 span {
  color: #4b5a75;
  font-size: 0.9rem;
  font-family: 'Source Sans 3', sans-serif;
}

.insight-card p {
  margin: 8px 0 0;
  color: #334155;
  line-height: 1.58;
}

.news-links {
  margin: 8px 0 0;
  padding-left: 18px;
}

.news-links li {
  margin: 4px 0;
}

.news-links a {
  color: #0f3f8a;
  font-weight: 700;
  text-decoration: none;
}

.news-links a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 18px;
  border-top: 1px dashed #d5deed;
  padding-top: 12px;
  color: #5d6a80;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 980px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .app {
    padding: 20px 14px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}
