/* Banokes — Design Variant G · DM Sans + Lora · Green Health Palette */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=Lora:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

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

:root {
  --bg:      #f8faf9;
  --ink:     #1d2326;
  --green:   #0f6b4c;
  --green-dk:#0a4f38;
  --green-lt:#e6f4ef;
  --muted:   #5a6e62;
  --border:  #d0dcd2;
  --warm-bg: #f2f7f4;
  --white:   #ffffff;
  --gold:    #d4900a;
  --amber-bg:#fff8e6;
  --amber-bd:#e8c84a;
  --red-text:#c0392b;
}

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.82;
}

/* ── HEADER ── */
.site-top {
  background: var(--white);
  border-bottom: 3px solid var(--green);
}

.brand-wrap {
  text-align: center;
  padding: 1.4rem 1rem 0.7rem;
  border-bottom: 1px solid var(--border);
}

.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: block;
}

.brand-name:hover { color: var(--green); }

.brand-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-bar { background: var(--white); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: block;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); border-bottom-color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── HOMEPAGE HERO ── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  padding: 2rem 3rem;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}

.hero-text h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.hero-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.read-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.read-btn:hover { background: var(--green-dk); }

/* ── HOMEPAGE CARD GRID ── */
.zone-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.zone-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}

.zone-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.post-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.post-card:hover { box-shadow: 0 4px 18px rgba(15,107,76,0.1); }

.card-thumb { overflow: hidden; height: 200px; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .card-thumb img { transform: scale(1.03); }

.card-body { padding: 1.4rem; }

.topic-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.card-blurb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.more-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.more-link:hover { color: var(--green-dk); text-decoration: underline; }

/* ── ARTICLE PAGES ── */
.post-hero {
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  background: var(--ink);
}

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

.entry-header {
  max-width: 780px;
  margin: 2.2rem auto 0;
  padding: 0 1.5rem;
}

.entry-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.topic-pill {
  background: var(--green-lt);
  color: var(--green);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

/* ── CONTENT ZONE (article + sidebar) ── */
.content-zone { padding: 2.5rem 1.5rem 4rem; }

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ── MAIN ARTICLE BODY ── */
.main-col {}

.entry-body h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--border);
}

.entry-body h2:first-of-type { border-top: none; margin-top: 0; }

.entry-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin: 1.8rem 0 0.5rem;
}

.entry-body p { margin-bottom: 1.2rem; }

.entry-body ul, .entry-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.entry-body li { margin-bottom: 0.5rem; }

.entry-body a { color: var(--green); }
.entry-body a:hover { color: var(--green-dk); }

.entry-body strong { font-weight: 700; }

/* ── NOTICE BOX (affiliate/FDA) ── */
.notice-box {
  background: var(--amber-bg);
  border: 1px solid var(--amber-bd);
  border-left: 4px solid var(--amber-bd);
  padding: 0.9rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #7a5c00;
  border-radius: 4px;
  margin-bottom: 1.8rem;
}

.fda-box {
  background: #f1f4f2;
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  border-radius: 4px;
  font-style: italic;
  margin-top: 2.5rem;
  line-height: 1.6;
}

/* ── STAR RATING ── */
.star-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-lt);
  border: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.gold-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }

.score-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.score-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── PULLOUT QUOTE ── */
.pullout {
  border-left: 4px solid var(--green);
  background: var(--warm-bg);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 6px 6px 0;
}

.pullout p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.7;
}

/* ── INLINE PHOTOS ── */
.photo-block {
  margin: 2rem 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-block img { width: 100%; display: block; }

.photo-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.6rem 0.9rem;
  background: var(--warm-bg);
  font-style: italic;
}

/* ── VERDICT GRID (pros/cons) ── */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.verdict-pros, .verdict-cons {
  padding: 1.2rem 1.4rem;
  border-radius: 6px;
}

.verdict-pros {
  background: #e8f5ee;
  border: 1px solid #a8d5bb;
}

.verdict-cons {
  background: #fdf3f2;
  border: 1px solid #e8bdb9;
}

.verdict-pros h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #1a6636;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.verdict-cons h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #8b2a22;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.verdict-pros ul, .verdict-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
}

.verdict-pros li { padding-left: 1.2rem; position: relative; margin-bottom: 0.45rem; color: #1a4428; }
.verdict-pros li::before { content: "✓"; position: absolute; left: 0; color: #1a6636; font-weight: 700; }

.verdict-cons li { padding-left: 1.2rem; position: relative; margin-bottom: 0.45rem; color: #5a1a14; }
.verdict-cons li::before { content: "·"; position: absolute; left: 0; color: #8b2a22; font-weight: 900; }

/* ── TESTIMONIAL BLOCKQUOTES ── */
.testi {
  border-left: 4px solid var(--green);
  background: var(--green-lt);
  padding: 1.1rem 1.4rem;
  margin: 1.4rem 0;
  border-radius: 0 6px 6px 0;
}

.testi p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.testi cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  color: var(--green);
}

/* ── MID + BOTTOM CTA ── */
.action-box {
  background: var(--green-lt);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 1.8rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.action-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.action-box p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.action-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  width: 100%;
  max-width: 420px;
}

.action-btn:hover { background: var(--green-dk); }

/* ── SIDEBAR ── */
.sidebar-col { position: sticky; top: 1.5rem; }

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.6rem 1.1rem;
}

.widget-body {
  padding: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--ink);
}

.widget-body p { margin-bottom: 0.6rem; line-height: 1.55; }
.widget-body a { color: var(--green); text-decoration: none; }
.widget-body a:hover { text-decoration: underline; }

.widget-body ul { list-style: none; padding: 0; margin: 0; }

.widget-body li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.widget-body li:last-child { border-bottom: none; }

.widget-body li a {
  display: block;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.widget-body li span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

.quick-badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}

/* ── EMAIL SIGNUP ── */
.signup-strip {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
}

.signup-strip h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.signup-strip p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  opacity: 0.88;
  margin-bottom: 1.4rem;
}

.signup-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
  border-radius: 5px;
  overflow: hidden;
}

.signup-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.signup-form button {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.signup-form button:hover { background: #2e3c42; }

/* ── FOOTER ── */
.site-footer {
  background: #1d2326;
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-about .brand-name {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.footer-about .brand-name:hover { color: #6ecfab; }

.footer-about p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-nav h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.footer-nav ul { list-style: none; padding: 0; }

.footer-nav li { margin-bottom: 0.45rem; }

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #6ecfab; }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

/* ── STANDALONE PAGES (about/privacy/terms) ── */
.plain-page {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}

.plain-page h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.plain-page h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
  color: var(--ink);
}

.plain-page p, .plain-page li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #3a4a40;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.plain-page ul { padding-left: 1.3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar-col { position: static; }
  .post-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.nav-open { display: flex; }
  .nav-links a { border-bottom: 1px solid var(--border); padding: 0.8rem 1.5rem; }
  .hero-banner { height: 380px; }
  .hero-text { padding: 1.5rem; }
  .hero-text h1 { font-size: 1.5rem; }
  .entry-title { font-size: 1.5rem; }
  .post-list { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: span 1; }
  .signup-form { flex-direction: column; }
  .signup-form input, .signup-form button { border-radius: 4px; width: 100%; }
  .action-btn { font-size: 0.88rem; }
}

/* ── ARTICLE HERO IMAGE ── */
.hero-banner { background: var(--ink); overflow: hidden; }
.hero-banner img, img.post-hero {
  width: 100%; max-height: 460px; object-fit: cover; display: block;
}

/* ── ARTICLE LAYOUT — full-width single-column ── */
.content-zone .page-wrap { gap: 2.5rem; }

.page-wrap > .main-col:only-child,
.full-width-col {
  grid-column: 1 / -1;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── INLINE FLOATED WIDGET (inside main-col) ── */
.main-col .widget {
  float: right;
  width: 290px;
  margin: 0 0 1.5rem 2rem;
  clear: right;
}
.main-col::after { content: ''; display: block; clear: both; }

/* ── BYLINE ELEMENTS ── */
.byline-author { font-weight: 600; color: var(--ink); }
.byline-sep { color: var(--border); }
.star-label { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; }

/* ── PULLOUT direct text (no wrapping p) ── */
.pullout {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
}

/* ── TESTIMONIAL blockquote direct text ── */
.testi {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink);
}
.testi cite {
  display: block;
  margin-top: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 700;
  color: var(--green);
}

/* ── VERDICT H3 variants ── */
.verdict-pros h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #1a6636;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.verdict-cons h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #8b2a22;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── WIDGET QUICK-FACTS ── */
.widget-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.widget-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
}
.widget-list li:last-child { border-bottom: none; }
.widget-btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
}

/* ── ACTION BOX TEXT ── */
.action-lead {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.action-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ── TOPIC PILL SMALL ── */
.topic-pill.small { font-size: 0.65rem; }

/* ── PLAIN PAGES (about/privacy/terms) ── */
.plain-zone .page-wrap { display: block; }
.narrow-wrap { max-width: 760px; margin: 0 auto; }
.plain-header {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}
.plain-header .entry-title { margin-bottom: 0.5rem; }

/* ── HOMEPAGE STRUCTURE ── */
.home-main {}

.feature-hero { padding: 2.5rem 1.5rem; }
.feature-hero .page-wrap { display: block; }
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(15,107,76,0.08);
}
.feature-img-link { display: block; overflow: hidden; }
.feature-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.feature-img-link:hover .feature-img { transform: scale(1.03); }
.feature-body {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0.7rem 0 0.9rem;
}
.feature-title a { color: var(--ink); text-decoration: none; }
.feature-title a:hover { color: var(--green); }
.feature-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.read-more-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
}
.read-more-link:hover { color: var(--green-dk); text-decoration: underline; }

.article-grid-section { padding: 0 1.5rem 3.5rem; }
.article-grid-section .page-wrap { display: block; }
.section-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 18px rgba(15,107,76,0.1); }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.card:hover .card-img { transform: scale(1.03); }
.card .card-body { padding: 1.4rem; }
.card .card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.card .card-title a { color: var(--ink); text-decoration: none; }
.card .card-title a:hover { color: var(--green); }
.card .card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.card .card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── FOOTER — updated 4-column layout ── */
.site-footer .footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.footer-col {}
.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  display: block;
}
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #6ecfab; }
p.footer-about {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .page-wrap { display: block; max-width: 1100px; margin: 0 auto; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-img { height: 260px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .main-col .widget { float: none; width: 100%; margin: 0 0 1.5rem; }
}

@media (max-width: 640px) {
  .feature-body { padding: 1.4rem; }
  .feature-title { font-size: 1.2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
