:root {
  color-scheme: dark;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #091921;
  color: #ecf1ee;
  line-height: 1.7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header,
main,
footer {
  width: min(850px, calc(100% - 40px));
  margin-inline: auto;
}
header {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #35505a;
}
.brand {
  font-size: 21px;
  letter-spacing: 0.09em;
  text-decoration: none;
  font-weight: 800;
}
.brand span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #b1c4c9;
}
a {
  color: #e3c785;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
a:hover {
  color: #fff;
}
a:focus-visible {
  outline: 3px solid #e3c785;
  outline-offset: 5px;
}
main {
  padding: 56px 0;
}
h1 {
  font-size: clamp(29px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  margin: 16px 0;
}
h2 {
  font-size: 22px;
  line-height: 1.35;
  margin: 38px 0 14px;
  color: #e3c785;
}
p {
  margin: 16px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #e3c785;
}
.date {
  color: #a3b9bf;
  font-size: 14px;
}
.lead {
  font-size: 19px;
  color: #d0deda;
  margin-top: 28px;
}
footer {
  padding: 24px 0 40px;
  border-top: 1px solid #35505a;
  font-size: 13px;
  color: #b1c4c9;
}
nav {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
}
.skip {
  position: absolute;
  top: -80px;
  padding: 10px;
  background: #091921;
}
.skip:focus {
  top: 0;
}
@media (max-width: 520px) {
  header {
    align-items: flex-start;
    font-size: 13px;
  }
  .brand {
    font-size: 17px;
  }
  main {
    padding: 30px 0;
  }
  h2 {
    font-size: 20px;
  }
}
@media print {
  :root {
    color-scheme: light;
    background: white;
    color: black;
  }
  header,
  footer,
  .skip {
    display: none;
  }
  main {
    width: auto;
    padding: 0;
  }
  a,
  h2,
  .eyebrow {
    color: black;
  }
  h2 {
    break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
}
