:root {
  --bg: #f7f8fa;
  --panel: #ffffff;
  --text: #1d252d;
  --muted: #5c6975;
  --line: #d8dee6;
  --accent: #1261a6;
  --accent-dark: #0a436f;
  --good: #1d6f50;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
}

.brand {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

nav a {
  font-size: .92rem;
  text-decoration: none;
}

.page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px clamp(16px, 4vw, 48px) 56px;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  margin: 24px 0 10px;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 14px;
}

h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 780px;
}

.search {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(220px, 1fr) auto;
  margin: 0 0 20px;
}

.search label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 650;
}

.search div {
  display: contents;
}

input[type="search"] {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  min-height: 42px;
  padding: 8px 12px;
  width: 100%;
}

button {
  background: var(--accent);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  min-height: 42px;
  padding: 8px 16px;
}

button:hover {
  background: var(--accent-dark);
}

.section {
  margin: 26px 0;
}

.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.card p {
  margin: 8px 0 0;
}

.meta {
  color: var(--muted);
  font-size: .9rem;
}

.notice {
  background: #eef7f3;
  border: 1px solid #cfe6db;
  border-radius: 8px;
  color: var(--good);
  padding: 12px 14px;
}

.disclaimer {
  background: #fff8e8;
  border: 1px solid #ead7a2;
  border-radius: 8px;
  color: #584319;
  margin: 18px 0;
  padding: 12px 14px;
}

.table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef2f6;
  font-size: .88rem;
}

tr:last-child td {
  border-bottom: 0;
}

.details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  margin: 18px 0;
  overflow: hidden;
}

.details div {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(150px, 260px) 1fr;
}

.details div:last-child {
  border-bottom: 0;
}

dt {
  background: #eef2f6;
  font-weight: 700;
  padding: 10px 12px;
}

dd {
  margin: 0;
  padding: 10px 12px;
  word-break: break-word;
}

.empty {
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-list li {
  background: #eef2f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
}

.spl-section {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.spl-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.spl-section h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.spl-section p {
  max-width: 1000px;
}

.spl-priority-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.spl-priority {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.spl-priority h3 {
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.spl-priority h4 {
  font-size: .94rem;
  margin: 12px 0 4px;
}

.spl-priority p {
  margin: 0;
}

.spl-section p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 18px clamp(16px, 4vw, 48px);
}

@media (max-width: 720px) {
  .site-header,
  .search,
  .details div {
    display: block;
  }

  nav {
    margin-top: 10px;
  }

  .search button {
    margin-top: 8px;
    width: 100%;
  }
}
