:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #17171c;
  background: #f5f6f8;
  line-height: 1.65;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 40px auto;
  padding: clamp(24px, 5vw, 56px);
  background: #fff;
  border: 1px solid #e2e4e9;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(22, 24, 31, 0.08);
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 7vw, 3.25rem);
}

h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

p,
li {
  color: #4a4d57;
}

.eyebrow,
.updated {
  color: #007f8f;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

a {
  color: #006d7a;
  font-weight: 700;
}

nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #b9dfe3;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 540px) {
  main {
    margin: 0;
    width: 100%;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }
}
