:root {
  color: #233e34;
  background: #f4f1e9;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #e6eddf 0, #f4f1e9 22rem);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(46rem, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 1.5rem;
}

.site-nav a {
  color: #52675e;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.site-nav .logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #233e34;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

main {
  width: min(46rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #386b55;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 5.3rem);
}

.intro {
  max-width: 38rem;
  margin: 1.2rem 0 2.5rem;
  color: #52675e;
  font-size: 1.12rem;
  line-height: 1.6;
}

article {
  padding: clamp(1.4rem, 5vw, 2.4rem);
  border: 1px solid #c7d2c5;
  border-radius: 1.2rem;
  background: rgba(250, 248, 241, 0.9);
  box-shadow: 0 1rem 3rem rgba(35, 62, 52, 0.08);
}

h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.75rem;
}

h2:first-child {
  margin-top: 0;
}

p,
li {
  color: #465b52;
  line-height: 1.65;
}

a {
  color: #2f7157;
  font-weight: 400;
}

.date,
footer {
  color: #6b7d75;
  font-size: 0.9rem;
}

.action {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.75rem;
  background: #386b55;
  color: white;
  text-decoration: none;
}

.link-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border: 1px solid #c7d2c5;
  border-radius: 0.8rem;
  text-decoration: none;
}

.link-list a::after {
  content: "\2192";
}

.action:hover,
.action:focus-visible {
  background: #2f5f4b;
}

footer {
  padding-top: 1.5rem;
  text-align: center;
}

@media (max-width: 32rem) {
  .site-nav {
    padding-top: 1rem;
  }

  main {
    padding-top: 2rem;
  }
}
