:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f6f8;
  color: #17202a;
}

body {
  margin: 0;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 6px;
  color: #4f6b86;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

h2 {
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.status-pill {
  border: 1px solid #9bb4cc;
  border-radius: 999px;
  padding: 8px 12px;
  color: #284968;
  font-weight: 700;
  white-space: nowrap;
}

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

.panel {
  background: #ffffff;
  border: 1px solid #d8e0e8;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(23, 32, 42, 0.04);
}

.wide {
  margin-top: 18px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

dl div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  gap: 16px;
}

dt {
  color: #66788a;
  font-weight: 700;
}

dd {
  margin: 0;
  word-break: break-word;
}

p,
li {
  line-height: 1.55;
}

p {
  margin: 0;
  color: #3e5366;
}

ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 760px) {
  .page-header,
  .grid {
    display: block;
  }

  .status-pill {
    display: inline-block;
    margin-top: 16px;
  }

  .panel {
    margin-bottom: 16px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
