:root {
  color-scheme: light;
  color: #283f35;
  background: #f7f8f1;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}
header,
main,
footer {
  max-width: 900px;
  margin: auto;
  padding: 24px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #dce4d8;
}
nav {
  display: flex;
  gap: 20px;
}
.brand {
  font-size: 26px;
  font-weight: 850;
  text-decoration: none;
}
main {
  margin: 32px auto;
  background: #fffefb;
  border: 1px solid #dce4d8;
  border-radius: 24px;
  padding: clamp(24px, 5vw, 56px);
}
h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin: 12px 0;
}
h2 {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 10px;
}
section {
  margin-top: 32px;
}
a {
  color: #315e45;
  text-underline-offset: 3px;
}
a:focus-visible {
  outline: 3px solid #d5a246;
  outline-offset: 4px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 750;
}
.date,
footer {
  color: #596b60;
}
li {
  margin: 10px 0;
}
ul {
  padding-left: 22px;
}
footer {
  text-align: center;
  font-size: 14px;
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #dce4d8;
}
footer nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 600px) {
  footer {
    justify-content: center;
  }
  footer > span {
    width: 100%;
  }
}
