:root {
  color: #172125;
  background: #f5f3ee;
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(22, 65, 74, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 65, 74, 0.06) 1px, transparent 1px),
    #f5f3ee;
  background-size: 44px 44px;
}

a {
  color: #194f5f;
  font-weight: 700;
}

a:focus-visible {
  outline: 3px solid #1f9d7a;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  transform: translateY(-160%);
  background: #ffffff;
  border: 2px solid #194f5f;
  border-radius: 6px;
  padding: 8px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.document-header,
.document-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #ded8ce;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(41, 35, 26, 0.08);
}

.document-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #10233f;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.document-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.document-card {
  padding: clamp(24px, 4vw, 44px);
}

.eyebrow {
  color: #1f6d74;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1 {
  color: #10233f;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

h2 {
  color: #10233f;
  margin-top: 34px;
}

ul {
  padding-left: 1.3rem;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ead8ac;
  border-radius: 8px;
  padding: 14px 16px;
}

.document-footer {
  margin-top: 24px;
  color: #5a6462;
  font-size: 0.9rem;
}

@media (max-width: 680px) {
  .document-header {
    display: block;
  }

  .document-nav {
    margin-top: 16px;
  }
}
