@font-face {
  font-family: Editorial;
  src: url("../assets/fonts/EditorialToday-Regular.otf");
}
@font-face {
  font-family: Anthem;
  src: url("../assets/fonts/NVAnthemGrotesk-Regular.woff2");
}
@font-face {
  font-family: Gail;
  src: url("../assets/fonts/Gail-Rock-Regular.woff2");
}
* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: clip;
}
body {
  margin: 0;
  background: #071719;
  color: #f4f1e8;
  font-family: Anthem, Arial, sans-serif;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.7rem;
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid #f4f1e822;
}
.nav img {
  width: 5.8rem;
}
.nav a,
footer a {
  color: inherit;
}
.article {
  width: min(74rem, calc(100% - 2rem));
  margin: 4rem auto 7rem;
  background: #f4f1e8;
  color: #10282b;
  box-shadow: 1rem 1rem 0 #16383b;
}
.head {
  padding: clamp(3rem, 8vw, 8rem);
  border-bottom: 1px solid #10282b33;
}
.label {
  color: #168b87;
  font:
    700 0.65rem Gail,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1,
h2 {
  font-family: Editorial, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 11ch;
  margin: 0.8rem 0 1.5rem;
  font-size: clamp(3.35rem, 8vw, 8rem);
  line-height: 0.82;
  overflow-wrap: anywhere;
}
.deck {
  max-width: 44rem;
  color: #10282baa;
  font-size: 1.2rem;
  line-height: 1.65;
}
.body {
  width: min(46rem, 100%);
  padding: clamp(2rem, 7vw, 7rem);
}
h2 {
  margin: 3.5rem 0 0.8rem;
  font-size: 2.8rem;
  line-height: 0.95;
}
p,
li {
  color: #10282bb3;
  line-height: 1.75;
}
.callout {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 3px solid #4dd8d2;
  background: #e8e2d4;
  font-family: Editorial, serif;
  font-size: 1.35rem;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 4vw;
  color: #f4f1e899;
  font-size: 0.78rem;
}
@media (max-width: 700px) {
  .article {
    margin-top: 1rem;
    box-shadow: 0.5rem 0.5rem 0 #16383b;
  }
  footer {
    flex-direction: column;
  }
}
