:root {
  --bg: #f8f9f5;
  --surface: #ffffff;
  --ink: #1e2822;
  --muted: #54635a;
  --border: #d5ddd7;
  --accent: #2f6c4f;
  --accent-ink: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Serif 4", "Georgia", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header,
.site-footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__brand {
  color: var(--ink);
  font-family: "Merriweather", "Georgia", serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.site-header__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.hero {
  margin: 10px 0 24px;
}

.post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.post__eyebrow,
.post__meta,
.post-card__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.post__dek {
  font-size: 1.05rem;
}

.post__content {
  margin-top: 20px;
}

.post__content h2 {
  margin-top: 28px;
}

.post__content [data-affiliate-link="true"] {
  text-underline-offset: 0.18em;
}

.post-grid {
  display: grid;
  gap: 14px;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.affiliate-disclosure {
  margin: 18px 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f1f4ef;
  color: var(--muted);
  font-size: 0.92rem;
}

.affiliate-module {
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfcfb;
  padding: 14px;
}

.affiliate-module__title {
  margin-top: 0;
  margin-bottom: 10px;
}

.affiliate-module__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.affiliate-module__link {
  display: inline-block;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 12px;
  text-decoration: none;
}

.affiliate-module__note {
  margin-bottom: 0;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter-module {
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: #f2f7f4;
}

.newsletter-module__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-module__form input[type="email"] {
  flex: 1 1 220px;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
}

.newsletter-module__form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  padding: 0 14px;
  cursor: pointer;
}

.newsletter-module__feedback,
.newsletter-module__hint {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.related-posts {
  margin-top: 28px;
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .post {
    padding: 18px;
  }
}