/* =============================================================
   Victory Gardens Theme — Main Stylesheet
   ============================================================= */

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

:root {
  --green-dark:  #1a4a1a;
  --green-mid:   #2d6a2d;
  --green-light: #4a8c3f;
  --green-pale:  #e8f0e8;
  --cream:       #f5f0e8;
  --tan:         #c8b89a;
  --text-dark:   #1a1a1a;
  --text-mid:    #3a3a3a;
  --white:       #ffffff;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
#site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid #ddd;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 40px; height: 40px; }

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--green-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

/* WordPress adds these classes to nav menus */
.nav-links li { list-style: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); }

.btn-hero-primary {
  background: var(--green-mid);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--green-mid);
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: var(--green-light); border-color: var(--green-light); }

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-learn {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  border-radius: 3px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-learn:hover { background: var(--green-dark); color: white; }

.btn-explore {
  display: block;
  text-align: center;
  background: var(--green-dark);
  color: white;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-explore:hover { background: var(--green-light); }

.btn-alliance {
  display: block;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: white;
  padding: 9px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-alliance:hover { background: rgba(255,255,255,0.15); }

.btn-regions {
  display: block;
  text-align: center;
  background: var(--green-dark);
  color: white;
  padding: 9px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-regions:hover { background: var(--green-light); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 2px solid var(--green-dark);
  z-index: 150;
  padding: 20px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.03em;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu .btn-primary {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 14px;
  font-size: 0.9rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 420px;
  /* Background image set inline via PHP from Appearance → Customize */
  background-color: #1a3a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
}
.hero-content { flex: 1; max-width: 560px; color: var(--white); }
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.92;
  max-width: 440px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.why-matters {
  background: rgba(255,255,255,0.93);
  border-radius: 6px;
  padding: 24px 28px;
  max-width: 300px;
  align-self: flex-start;
  margin-top: 10px;
}
.why-matters h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--green-dark);
  padding-bottom: 8px;
}
.why-matters ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.why-matters li {
  font-size: 0.82rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-matters li .icon {
  width: 20px; height: 20px;
  background: var(--green-dark);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
}
.why-tagline {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

/* ── INFO STRIP ── */
.info-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 3px solid var(--green-dark);
}
.info-strip > div {
  padding: 36px 32px;
  border-right: 1px solid #ddd;
}
.info-strip > div:last-child { border-right: none; }
.info-strip h3 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dark);
  margin-bottom: 4px; text-align: center;
}
.info-strip .sub { font-size: 0.75rem; color: #666; text-align: center; margin-bottom: 20px; }

/* Then vs Now */
.then-now { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.then-card, .now-card { border-radius: 4px; overflow: hidden; }
.then-card .card-header {
  background: #8a7a5a; color: white; font-size: 0.72rem;
  font-weight: 700; text-align: center; padding: 6px; letter-spacing: 0.08em;
}
.now-card .card-header {
  background: var(--green-dark); color: white; font-size: 0.72rem;
  font-weight: 700; text-align: center; padding: 6px; letter-spacing: 0.08em;
}
.card-body { background: #f5f5f0; padding: 12px; }
.card-body img { width: 100%; height: 80px; object-fit: cover; border-radius: 2px; margin-bottom: 8px; }
.card-body ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.card-body ul li { font-size: 0.72rem; color: #444; padding-left: 10px; position: relative; }
.card-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--green-mid); }

/* Start Here */
.start-here-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; text-align: center; }
.start-item .icon-wrap {
  width: 56px; height: 56px; background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.start-item .icon-wrap svg { width: 28px; height: 28px; fill: var(--green-dark); }
.start-item h4 { font-size: 0.82rem; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.start-item p { font-size: 0.72rem; color: #555; line-height: 1.4; margin-bottom: 10px; }

/* Resource Hub */
.resource-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.resource-chip {
  border: 1.5px solid #ccc; border-radius: 4px; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  transition: all 0.2s; font-size: 0.72rem; font-weight: 600; color: var(--text-dark);
}
.resource-chip:hover { border-color: var(--green-dark); background: var(--green-pale); color: var(--green-dark); }
.resource-chip .chip-icon {
  width: 24px; height: 24px; background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem;
}

/* ── BIG ROW ── */
.big-row { display: grid; grid-template-columns: 2fr 2fr 3fr; border-top: 1px solid #ddd; }
.big-row > div { padding: 36px 32px; border-right: 1px solid #ddd; }
.big-row > div:last-child { border-right: none; }

.section-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 4px; }
.section-sub { font-size: 0.75rem; color: #666; margin-bottom: 20px; }

/* Alliance */
.alliance-box { background: var(--green-dark); border-radius: 6px; padding: 28px 24px; color: white; }
.alliance-box h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.alliance-box .tagline { font-size: 0.75rem; opacity: 0.8; margin-bottom: 24px; font-style: italic; }
.alliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.alliance-item { text-align: center; }
.alliance-item .a-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 1.2rem;
}
.alliance-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.alliance-item p { font-size: 0.65rem; opacity: 0.75; line-height: 1.4; }

/* Map */
.map-section h3 { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.usa-map-placeholder { background: #f0ede6; border-radius: 4px; height: 180px; margin-bottom: 16px; overflow: hidden; }
.usa-map-placeholder svg { width: 100%; height: 100%; }
.region-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.region-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: #444; }
.region-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.region-dot.primary { background: var(--green-dark); }
.region-dot.secondary { background: var(--green-light); }
.region-dot.upcoming { background: #aaa; }
.region-label { font-weight: 600; font-size: 0.68rem; }
.region-note { font-size: 0.65rem; color: #888; }

/* Stories */
.stories-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.story-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 4px; margin-bottom: 8px; }
.story-card h4 { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.3; }
.story-card p { font-size: 0.68rem; color: #666; line-height: 1.4; margin-bottom: 8px; }
.read-more { font-size: 0.65rem; font-weight: 700; color: var(--green-dark); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; }
.read-more:hover { text-decoration: underline; }

/* ── MOVEMENT BANNER ── */
.movement-banner {
  /* Background image set inline via PHP from Appearance → Customize */
  background-color: #1a3a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
/* movement-banner::before removed — image now set inline via PHP */
.movement-left {
  padding: 48px 40px; position: relative; z-index: 1; color: white;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.movement-left p.italic { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; line-height: 1.4; margin-bottom: 10px; }
.movement-left p.body { font-size: 0.85rem; opacity: 0.85; line-height: 1.6; margin-bottom: 12px; }
.movement-left p.facilitated { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; opacity: 0.7; }
.movement-right { padding: 48px 40px; position: relative; z-index: 1; color: white; }
.movement-right h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.movement-right p { font-size: 0.82rem; opacity: 0.8; margin-bottom: 24px; font-style: italic; }
.movement-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-movement-primary {
  background: var(--green-light); color: white; padding: 10px 20px; border-radius: 4px;
  text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s; border: none; cursor: pointer;
}
.btn-movement-primary:hover { background: #5a9c50; }
.btn-movement-outline {
  background: transparent; color: white; padding: 10px 20px; border-radius: 4px;
  text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; border: 2px solid rgba(255,255,255,0.6); transition: all 0.2s; cursor: pointer;
}
.btn-movement-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── FOOTER ── */
#site-footer {
  background: var(--green-dark);
  color: white;
  padding: 48px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr 1.5fr 1.5fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand h2 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; margin-bottom: 4px; }
.footer-brand .tagline { font-size: 0.68rem; opacity: 0.7; margin-bottom: 14px; line-height: 1.5; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; opacity: 0.9; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-form input {
  flex: 1; padding: 9px 12px; border: none; border-radius: 3px;
  font-size: 0.78rem; background: rgba(255,255,255,0.12); color: white; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { background: rgba(255,255,255,0.2); }
.newsletter-form button {
  background: var(--green-light); color: white; border: none; padding: 9px 14px;
  border-radius: 3px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: #5a9c50; }
.social-icons { display: flex; gap: 14px; margin-top: 12px; }
.social-icons a {
  width: 34px; height: 34px; border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  color: white; font-size: 0.8rem; transition: all 0.2s;
}
.social-icons a:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── INNER PAGES (blog, single, page) ── */
.vg-page-content { padding: 60px 0; }
.vg-container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.vg-single, .vg-page { max-width: 800px; }

.vg-archive-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--green-dark);
}

.vg-posts-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.vg-post-card { border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.vg-post-card img { width: 100%; height: 180px; object-fit: cover; }
.vg-post-card-body { padding: 20px; }
.vg-post-card-body h2 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; line-height: 1.3; }
.vg-post-card-body h2 a { text-decoration: none; color: var(--text-dark); }
.vg-post-card-body h2 a:hover { color: var(--green-dark); }
.vg-post-meta { font-size: 0.72rem; color: #888; margin-bottom: 10px; }
.vg-post-card-body p { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 14px; }

.vg-post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.vg-post-thumbnail { margin: 24px 0; border-radius: 6px; overflow: hidden; }
.vg-post-thumbnail img { width: 100%; max-height: 420px; object-fit: cover; }
.vg-post-content { font-size: 1rem; line-height: 1.8; color: var(--text-mid); }
.vg-post-content h2, .vg-post-content h3 { font-family: 'Playfair Display', serif; color: var(--green-dark); margin: 28px 0 12px; }
.vg-post-content p { margin-bottom: 20px; }
.vg-post-content a { color: var(--green-mid); }
.vg-post-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid #ddd; }

.vg-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--green-dark);
}

.vg-pagination { text-align: center; margin-top: 20px; }
.vg-pagination .nav-links { justify-content: center; gap: 8px; }
.vg-pagination a, .vg-pagination span {
  display: inline-block; padding: 8px 14px; border: 1px solid #ddd; border-radius: 3px;
  font-size: 0.8rem; text-decoration: none; color: var(--text-dark);
}
.vg-pagination a:hover, .vg-pagination .current { background: var(--green-dark); color: white; border-color: var(--green-dark); }

.vg-no-posts { text-align: center; padding: 80px 20px; }
.vg-no-posts h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--green-dark); margin-bottom: 12px; }
.vg-no-posts p { margin-bottom: 24px; color: #666; }

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  #site-nav { padding: 0 20px; }

  .hero { flex-direction: column; align-items: flex-start; padding: 40px 24px; min-height: auto; }
  .why-matters { max-width: 100%; width: 100%; }

  .info-strip { grid-template-columns: 1fr; }
  .info-strip > div { border-right: none; border-bottom: 1px solid #ddd; padding: 28px 24px; }
  .info-strip > div:last-child { border-bottom: none; }

  .big-row { grid-template-columns: 1fr; }
  .big-row > div { border-right: none; border-bottom: 1px solid #ddd; padding: 28px 24px; }
  .big-row > div:last-child { border-bottom: none; }

  .movement-banner { grid-template-columns: 1fr; }
  .movement-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 36px 28px; }
  .movement-right { padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .vg-posts-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  #site-nav { padding: 0 16px; height: 58px; }
  .mobile-menu { top: 58px; }

  .hero {
    padding: 32px 16px;
    background-color: #0a1e0a;
    background-size: cover;
    background-position: center;
  }
  .hero-content h2 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; width: 100%; padding: 14px 20px; font-size: 0.88rem; }
  .why-matters { padding: 18px 16px; }

  .then-now { grid-template-columns: 1fr; }
  .start-here-grid { grid-template-columns: 1fr; gap: 20px; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .alliance-grid { grid-template-columns: 1fr; gap: 12px; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card img { height: 160px; }

  .movement-left p.italic { font-size: 1.2rem; }
  .movement-buttons { flex-direction: column; gap: 10px; }
  .btn-movement-primary, .btn-movement-outline { text-align: center; padding: 13px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  #site-footer { padding: 36px 16px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }

  .vg-container { padding: 0 16px; }
  .vg-posts-grid { grid-template-columns: 1fr; }
  .vg-post-header h1 { font-size: 1.8rem; }
}
