:root {
  --green-dark: #2d5a3d;
  --green: #4a7c59;
  --green-light: #e8f0ea;
  --cream: #faf8f3;
  --text: #2b2b2b;
  --muted: #6b7280;
  --accent: #c96f2f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

header {
  background: var(--green-dark);
  padding: 1.2rem 1rem;
}

.header-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo span { color: #a8d5b0; }

nav a {
  color: #d9e8dd;
  text-decoration: none;
  margin-left: 1.2rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}

nav a:hover { color: #fff; text-decoration: underline; }

.hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1rem;
  background: linear-gradient(rgba(20, 45, 30, 0.55), rgba(20, 45, 30, 0.65)), var(--hero-img, var(--green-light)) center/cover no-repeat;
}

.hero h1 { font-size: 2.4rem; color: #fff; margin-bottom: 0.8rem; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero p { font-size: 1.15rem; color: #eef4ef; max-width: 560px; margin: 0 auto; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid #e3e0d8;
  border-radius: 8px;
  padding: 0 0 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { transform: translateY(-3px); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

.card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.card .tag, .card h3, .card p { padding: 0 1.4rem; }

.card .tag {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: bold;
}

.card h3 { margin: 0.5rem 0; font-size: 1.15rem; }
.card h3 a { color: var(--green-dark); text-decoration: none; }
.card h3 a:hover { text-decoration: underline; }
.card p { font-size: 0.92rem; color: var(--muted); }

article h1 { font-size: 2.1rem; color: var(--green-dark); margin-bottom: 0.4rem; line-height: 1.25; }
article .meta { color: var(--muted); font-size: 0.9rem; font-family: Helvetica, Arial, sans-serif; margin-bottom: 1.8rem; }
article h2 { color: var(--green-dark); margin: 2rem 0 0.7rem; font-size: 1.45rem; }
article h3 { color: var(--green); margin: 1.4rem 0 0.5rem; font-size: 1.15rem; }
article p, article li { margin-bottom: 0.9rem; }
article ul, article ol { padding-left: 1.4rem; margin-bottom: 1rem; }
article a { color: var(--green); }

.post-hero { margin: 0 0 1.6rem; }

.post-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.post-hero figcaption {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: right;
}

.post-hero figcaption a { color: var(--muted); }

.affiliate-box {
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}

.affiliate-box strong { color: var(--green-dark); }
.affiliate-box .btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 5px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.disclosure-note {
  background: var(--green-light);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 1.8rem;
}

footer {
  background: var(--green-dark);
  color: #d9e8dd;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  font-family: Helvetica, Arial, sans-serif;
}

footer a { color: #a8d5b0; }
