:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #21392a;
  background: #f6f8f3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
header {
  padding: 28px 6%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dae3d7;
  font-size: 12px;
}
header a {
  text-decoration: none;
}
header span {
  font-size: 9px;
  letter-spacing: 2px;
  margin-left: 12px;
}
main {
  max-width: 1040px;
  margin: auto;
  padding: 65px 28px;
}
h1 {
  font-size: clamp(36px, 6vw, 67px);
  font-weight: 550;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 15px 0 25px;
}
h2 {
  font-weight: 550;
}
p {
  line-height: 1.8;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 35px;
  color: #6d826a;
}
.lead {
  font-size: 18px;
  color: #75816e;
  max-width: 740px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
article {
  background: white;
  border: 1px solid #e0e7dc;
  border-radius: 8px;
  padding: 27px;
}
article a {
  text-decoration: none;
}
article p,
article small {
  color: #72816d;
  font-size: 12px;
}
article > a {
  font-size: 12px;
  color: #35724b;
}
.prose {
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin-top: 40px;
}
.prose img,
.hero {
  max-width: 100%;
  border-radius: 8px;
}
.hero {
  margin-top: 30px;
}
aside {
  background: #e6efe0;
  padding: 18px;
  border-left: 3px solid #62865b;
}
footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #e0e7dc;
  font-size: 11px;
  color: #7a8a73;
}
