/*
  Green Tones Mag v2 — Main Stylesheet
  Print-inspired editorial design system
  =========================================
  Self-hosted fonts: drop @font-face blocks here if using Neue Haas Grotesk.

  @font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('/wp-content/themes/greentonesmag-theme-v2/assets/fonts/NeueHaasGroteskDisplay-45Light.woff2') format('woff2');
    font-weight: 300; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('/wp-content/themes/greentonesmag-theme-v2/assets/fonts/NeueHaasGroteskDisplay-55Roman.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('/wp-content/themes/greentonesmag-theme-v2/assets/fonts/NeueHaasGroteskDisplay-65Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
  }
*/

/* ── DESIGN TOKENS ───────────────────── */
:root {
  --cream: #F5F0E8;
  --paper: #EDE7D9;
  --ink: #1A1A16;
  --ink-light: #3D3D35;
  --green: #333b21;
  --green-light: #4a5630;
  --green-pale: #c5cbb4;
  --rule: #C4BAA8;
  --accent: #8B6E4E;

  --font-display: 'Neue Haas Grotesk Display', 'HelveticaNeue-Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-script: 'Dancing Script', Georgia, serif;
  --verdant-color: #a3b45a; /* sampled from magazine cover */

  --max-width: 1280px;
  --page-padding: 40px;
}

/* ── RESET ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* ── BASE ────────────────────────────── */
body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

/* ── UTILITY ─────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--page-padding); }
.rule { border: none; border-top: 1px solid var(--rule); }

/* ── DATELINE BAR ────────────────────── */
.dateline {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 9px 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  animation: fadeIn 0.8s 0.3s ease both;
}

.dateline__link {
  color: var(--cream);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.dateline__link:hover {
  opacity: 0.75;
}

.dateline__arrow {
  font-size: 12px;
  line-height: 1;
  display: inline-block;
}

/* ── SITE HEADER ─────────────────────── */
.site-header {
  padding: 0 var(--page-padding);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 200; /* above issue page header stacking context */
  animation: fadeDown 0.6s ease both;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo { display: flex; align-items: center; }
.header-logo img { height: 36px; width: auto; display: block; }
.header-logo .site-name {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink);
}

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

.header-nav a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-light);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--green); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  background: var(--green);
  padding: 10px 20px;
  transition: background 0.2s;
}

.header-cta:hover { background: var(--green-light); }

/* ── SECTION HEADER ──────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── READ MORE LINK ──────────────────── */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.2s;
  cursor: pointer;
}

.read-more::after { content: '→'; transition: transform 0.2s; }
.read-more:hover { gap: 14px; }

/* ── HERO ────────────────────────────── */
.hero {
  padding: 60px var(--page-padding) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
}

.hero-feature {
  padding: 56px 48px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--rule);
}

.hero-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(51,59,33,0.06) 0%, transparent 60%);
}

.issue-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.issue-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
  display: block;
}

.hero-feature h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 420px;
}

.hero-feature h2 em {
  font-style: italic;
  color: var(--green);
}

.hero-feature .dek {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-light);
  max-width: 360px;
  margin-bottom: 32px;
  font-weight: 300;
}

.byline {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.hero-image-panel {
  background: var(--green);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.75;
  mix-blend-mode: multiply;
}

.botanical {
  width: 260px;
  height: 260px;
  opacity: 0.18;
}

.hero-image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: rgba(245,240,232,0.6);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hero sub-stories */
.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: none;
}

.hero-sub-item {
  padding: 28px 48px;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  background: var(--cream);
  transition: background 0.2s;
  cursor: pointer;
}

.hero-sub-item:last-child { border-right: none; }
.hero-sub-item:hover { background: var(--paper); }

.hero-sub-item .category {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-sub-item h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-sub-item p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── SNEAK PEEK / INSIDE THE ISSUE ───────────────── */
.gtm-sneak {
  border-top: 1px solid var(--rule);
  padding: 64px 0 72px;
  overflow: hidden;
}

.gtm-sneak__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.gtm-sneak__header {
  margin-bottom: 48px;
}

/* Pull-quote */
.gtm-sneak__manifesto {
  border-left: 2px solid var(--green);
  padding: 0 0 0 28px;
  margin-bottom: 56px;
  max-width: 680px;
}

.gtm-sneak__manifesto blockquote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
  position: relative;
}

.gtm-sneak__manifesto-open,
.gtm-sneak__manifesto-close {
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.25em;
  color: var(--green-pale);
  font-style: normal;
  margin: 0 2px;
}

.gtm-sneak__manifesto cite {
  display: block;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}

/* Scrollable track */
.gtm-sneak__track-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--page-padding));
}

.gtm-sneak__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--page-padding);
  padding-right: calc(var(--page-padding) + 60px);
}

.gtm-sneak__track::-webkit-scrollbar { display: none; }

/* Spread card */
.gtm-sneak__card {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
  border: 1px solid var(--rule);
  border-right: none;
  background: var(--cream);
  transition: background 0.2s;
}

.gtm-sneak__card:last-child {
  border-right: 1px solid var(--rule);
}

.gtm-sneak__card:hover {
  background: var(--paper);
}

/* Spread image */
.gtm-sneak__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--green);
}

.gtm-sneak__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  display: block;
}

.gtm-sneak__card:hover .gtm-sneak__img-wrap img {
  transform: scale(1.04);
}

.gtm-sneak__page-ref {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26, 26, 22, 0.72);
  color: var(--cream);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 8px;
  font-weight: 400;
  backdrop-filter: blur(4px);
}

/* Card text */
.gtm-sneak__card-body {
  padding: 24px 24px 28px;
  border-top: 1px solid var(--rule);
}

.gtm-sneak__section-label {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 10px;
}

.gtm-sneak__title {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.gtm-sneak__excerpt {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* Scroll arrows */
.gtm-sneak__arrow {
  position: absolute;
  top: calc(50% - 48px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 10;
  font-family: var(--font-display);
}

.gtm-sneak__arrow:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.gtm-sneak__arrow--prev { left: var(--page-padding); }
.gtm-sneak__arrow--next { right: var(--page-padding); }

/* Footer row */
.gtm-sneak__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.gtm-sneak__issue-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
  flex-wrap: wrap;
}

.gtm-sneak__issue-label {
  color: var(--green);
  font-weight: 500;
}

.gtm-sneak__dot { color: var(--rule); }

/* ── PULL QUOTE BAND ─────────────────── */
.pullquote-band {
  background: var(--green);
  color: var(--cream);
  padding: 64px var(--page-padding);
  text-align: center;
  animation: fadeIn 1s 0.4s ease both;
}

.pullquote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--cream);
}

.pullquote-band cite {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-style: normal;
}

.pullquote-band .quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--green-light);
  display: block;
  margin-bottom: 16px;
}

/* ── FEATURES GRID ───────────────────── */
.features-section {
  padding: 64px var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeUp 0.9s 0.5s ease both;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
}

.feature-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
  cursor: pointer;
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--paper); }

.feature-card .img-placeholder,
.feature-card .img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--green-pale);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.feature-card.large .img-placeholder,
.feature-card.large .img-wrapper { aspect-ratio: 16/9; }

.feature-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .img-wrapper img { transform: scale(1.03); }

.img-placeholder svg { opacity: 0.25; width: 48px; height: 48px; }

.feature-card .category {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature-card.large h3 { font-size: 32px; }

.feature-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 16px;
}

/* ── LATEST GRID ─────────────────────── */
.latest-section {
  padding: 64px var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeUp 0.9s 0.6s ease both;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.latest-item {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
}

.latest-item:last-child { border-right: none; }
.latest-item:hover { background: var(--paper); }

.latest-item .number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}

.latest-item .category {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 8px;
}

.latest-item h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.latest-item p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── ARTICLE PAGE ────────────────────── */
.article-header {
  padding: 80px var(--page-padding) 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}

.article-category {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-category::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}

.article-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 860px;
  margin-bottom: 28px;
}

.article-title em { font-style: italic; color: var(--green); }

.article-dek {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-light);
  max-width: 640px;
  font-weight: 300;
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.article-meta .sep { color: var(--rule); }

.article-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
}

.article-body {
  display: grid;
  grid-template-columns: 1fr 640px 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--page-padding);
}

.article-body-main {
  grid-column: 2;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 300;
}

.article-body-main p { margin-bottom: 28px; }
.article-body-main h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 48px 0 20px;
  letter-spacing: -0.015em;
}

.article-body-main blockquote {
  border-left: 2px solid var(--green);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  font-size: 22px;
  font-style: italic;
  color: var(--green);
  line-height: 1.4;
}

.article-figure {
  grid-column: 1 / -1;
  margin: 40px 0;
}

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

.article-figure figcaption {
  padding: 10px var(--page-padding) 0;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ── SHOP / MAGAZINE PAGE ────────────── */
.shop-hero {
  padding: 80px var(--page-padding) 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.shop-cover { position: relative; }

.shop-cover-img {
  width: 100%;
  display: block;
  box-shadow: 24px 24px 60px rgba(26,26,22,0.18);
}

.shop-cover-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--green);
  color: var(--cream);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.shop-issue-no {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.shop-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 8px;
  color: var(--ink);
}

.shop-subtitle {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  font-weight: 400;
}

.shop-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 40px;
  max-width: 480px;
}

.shop-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 40px;
}

.shop-spec {
  padding: 16px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.shop-spec:nth-child(even) { border-right: none; }
.shop-spec:nth-last-child(-n+2) { border-bottom: none; }

.shop-spec-label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.shop-spec-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}

.shop-price {
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.shop-price-note {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  font-family: var(--font-display);
}

.btn-primary:hover { background: var(--green-light); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--green);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--green);
  transition: all 0.2s;
  font-family: var(--font-display);
  margin-left: 12px;
}

.btn-secondary:hover { background: var(--green); color: var(--cream); }

.shop-shipping-note {
  margin-top: 16px;
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
}

.shop-contents {
  padding: 64px var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.contents-item {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.contents-item:nth-child(3n) { border-right: none; }
.contents-item:nth-last-child(-n+3) { border-bottom: none; }

.contents-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 12px;
}

.contents-type {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.contents-item h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contents-item p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── ABOUT PAGE ──────────────────────── */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.about-hero-text {
  padding: 80px var(--page-padding);
  border-right: 1px solid var(--rule);
}

.about-hero-image {
  background: var(--green);
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.about-section {
  padding: 64px var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.about-columns p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 20px;
}

/* ── ARCHIVE / ISSUES PAGE ───────────── */
.archive-section {
  padding: 64px var(--page-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.archive-issue {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
}

.archive-issue:nth-child(3n) { border-right: none; }
.archive-issue:hover { background: var(--paper); }

.archive-issue .cover-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--green-pale);
  margin-bottom: 20px;
  display: block;
}

.archive-issue .issue-no {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.archive-issue h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.archive-issue .issue-date {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}

/* ── FOOTER ──────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--page-padding);
  border-bottom: 1px solid var(--rule);
}

.footer-brand p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}

.footer-brand .custom-logo-link,
.footer-brand a { display: inline-block; }

.footer-brand .custom-logo-link img,
.footer-brand a > img,
.footer-brand img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}

.header-logo .custom-logo-link img,
.header-logo a > img,
.header-logo img {
  height: 36px;
  width: auto;
  display: block;
  max-width: 200px;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 12px;
  color: var(--ink-light);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--green); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--rule);
  letter-spacing: 0.1em;
}

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── RESPONSIVE ──────────────────────── */

/* Tablet — 1024px and below */
@media (max-width: 1024px) {
  :root { --page-padding: 24px; }

  .hero-grid,
  .hero-sub,
  .shop-hero-grid,
  .about-hero { grid-template-columns: 1fr; }

  .hero-feature { min-height: 380px; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-image-panel { min-height: 300px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--rule); }

  .latest-grid { grid-template-columns: 1fr 1fr; }
  .latest-item:nth-child(2n) { border-right: none; }

  .article-body { grid-template-columns: 1fr; padding: 40px var(--page-padding); }
  .article-body-main { grid-column: 1; }

  .contents-grid { grid-template-columns: 1fr 1fr; }
  .contents-item:nth-child(2n) { border-right: none; }
  .contents-item:nth-child(3n) { border-right: 1px solid var(--rule); }

  .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-issue:nth-child(2n) { border-right: none; }
  .archive-issue:nth-child(3n) { border-right: 1px solid var(--rule); }

  .shop-hero-grid { gap: 40px; }
  .about-hero-text { border-right: none; border-bottom: 1px solid var(--rule); }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }

  /* Sneak peek */
  .gtm-sneak__arrow { display: none; }
  .gtm-sneak__footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Mobile — 640px and below */
@media (max-width: 640px) {
  :root { --page-padding: 20px; }

  .dateline {
    font-size: 7px;
    letter-spacing: 0.15em;
    padding: 5px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-nav { display: none; }
  .header-inner { height: 60px; }
  .header-cta { font-size: 8px; padding: 8px 14px; letter-spacing: 0.15em; }

  .hero { padding-top: 32px; }
  .hero-feature { padding: 32px 24px; min-height: 280px; }
  .hero-image-panel { min-height: 220px; }
  .hero-sub-item { padding: 20px 24px; }

  .latest-grid { grid-template-columns: 1fr; }
  .latest-item { border-right: none; border-bottom: 1px solid var(--rule); }

  .contents-grid,
  .archive-grid { grid-template-columns: 1fr; }
  .contents-item,
  .archive-issue { border-right: none; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 32px var(--page-padding);
  }
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 20px;
    margin-bottom: 4px;
  }
  .footer-brand p { display: none; }
  .footer-col h4 { font-size: 8px; letter-spacing: 0.2em; }
  .footer-col ul a { font-size: 11px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px var(--page-padding);
    font-size: 9px;
  }

  .pullquote-band { padding: 40px 24px; }

  .features-section,
  .latest-section,
  .shop-contents,
  .archive-section { padding: 40px var(--page-padding); }

  .article-header { padding: 48px var(--page-padding) 32px; }
  .article-body { padding: 32px var(--page-padding); }

  .shop-hero { padding: 48px var(--page-padding) 40px; }

  .about-hero-text { padding: 48px var(--page-padding); }
  .about-section { padding: 40px var(--page-padding); }
  .about-columns { grid-template-columns: 1fr; gap: 0; }

  /* Sneak peek */
  .gtm-sneak { padding: 40px 0 48px; }
  .gtm-sneak__card { flex: 0 0 260px; width: 260px; }
  .gtm-sneak__manifesto { margin-bottom: 32px; }
  .gtm-sneak__manifesto blockquote { font-size: 16px; }
}

/* ── HOMEPAGE ISSUE HERO ─────────────────────────── */
.gtm-home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green);
}

.gtm-home-hero__cover {
  position: absolute;
  inset: 0;
}

.gtm-home-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gtm-home-hero__cover--empty {
  background: var(--green);
}

.gtm-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,22,0.88) 0%,
    rgba(26,26,22,0.4) 50%,
    rgba(26,26,22,0.1) 100%
  );
}

.gtm-home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--page-padding) 72px;
  color: var(--cream);
}

.gtm-home-hero__eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-pale);
  font-weight: 500;
  margin-bottom: 20px;
}

.gtm-home-hero__title {
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--verdant-color);
  margin-bottom: 24px;
  max-width: 900px;
  font-family: var(--font-script);
}

.gtm-home-hero__tagline {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
  color: rgba(245,240,232,0.72);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
}

.gtm-home-hero__actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .gtm-home-hero { min-height: 85vh; }
  .gtm-home-hero__content { padding: 48px var(--page-padding) 52px; }
  .gtm-home-hero__actions { gap: 12px; flex-direction: column; align-items: flex-start; }
  .btn-secondary { margin-left: 0; }
}

/* ── v3 HOMEPAGE HERO BUTTONS (visible on dark bg) ──────────────── */
.gtm-home-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--green);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-display);
  text-decoration: none;
}

.gtm-home-hero__btn-primary:hover {
  background: var(--paper);
  color: var(--green);
}

.gtm-home-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  padding: 16px 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(245,240,232,0.5);
  transition: all 0.2s;
  font-family: var(--font-display);
  text-decoration: none;
  margin-left: 12px;
}

.gtm-home-hero__btn-secondary:hover {
  background: rgba(245,240,232,0.12);
  border-color: var(--cream);
  color: var(--cream);
}

/* ── v3 RECENT POSTS SECTION ─────────────────────────────────────── */
.gtm-posts {
  border-top: 1px solid var(--rule);
  padding: 64px 0 80px;
  background: var(--cream);
}

.gtm-posts__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

/* Featured highlight — 2-col: image left, text right */
.gtm-posts__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 0;
  transition: background 0.2s;
  color: inherit;
}

.gtm-posts__featured:hover { background: var(--paper); }

.gtm-posts__featured-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-pale);
}

.gtm-posts__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gtm-posts__featured:hover .gtm-posts__featured-img img {
  transform: scale(1.03);
}

.gtm-posts__featured-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--rule);
}

.gtm-posts__cat {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 12px;
}

.gtm-posts__featured-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.gtm-posts__featured-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: 24px;
}

/* 3-card grid below */
.gtm-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-top: none;
}

.gtm-posts__card {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.gtm-posts__card:last-child { border-right: none; }
.gtm-posts__card:hover { background: var(--paper); }

.gtm-posts__card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-pale);
  margin-bottom: 20px;
}

.gtm-posts__card-img--empty { background: var(--paper); }

.gtm-posts__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gtm-posts__card:hover .gtm-posts__card-img img {
  transform: scale(1.04);
}

.gtm-posts__card-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}

.gtm-posts__card-excerpt {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 16px;
  flex: 1;
}

/* Responsive — posts section */
@media (max-width: 1024px) {
  .gtm-posts__featured { grid-template-columns: 1fr; }
  .gtm-posts__featured-img { aspect-ratio: 16 / 9; }
  .gtm-posts__featured-text { border-left: none; border-top: 1px solid var(--rule); padding: 36px 32px; }
  .gtm-posts__grid { grid-template-columns: 1fr 1fr; }
  .gtm-posts__card:nth-child(2n) { border-right: none; }
  .gtm-posts__card:nth-child(n+3) { border-top: 1px solid var(--rule); }
}

@media (max-width: 640px) {
  .gtm-posts { padding: 48px 0 64px; }
  .gtm-posts__featured-text { padding: 28px var(--page-padding); }
  .gtm-posts__grid { grid-template-columns: 1fr; }
  .gtm-posts__card { border-right: none; border-bottom: 1px solid var(--rule); }
  .gtm-posts__card:last-child { border-bottom: none; }
  .gtm-home-hero__btn-secondary { margin-left: 0; }
}

/* ── HOMEPAGE HERO: Coming Soon badge ───────────────────────────── */
.gtm-home-hero__coming-soon {
  cursor: default;
  opacity: 0.7;
}
.gtm-home-hero__coming-soon:hover {
  background: transparent;
  border-color: rgba(245,240,232,0.5);
  color: var(--cream);
  opacity: 0.7;
}

/* ── RECENT POSTS PAGE ───────────────────────────────────────────── */
.gtm-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.gtm-recent-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: background 0.2s;
}

.gtm-recent-card:nth-child(3n) { border-right: none; }
.gtm-recent-card:hover { background: var(--paper); }

.gtm-recent-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-pale);
}

.gtm-recent-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gtm-recent-card:hover .gtm-recent-card__img img { transform: scale(1.03); }

.gtm-recent-card__img-empty {
  width: 100%;
  height: 100%;
  background: var(--paper);
}

.gtm-recent-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gtm-recent-card__cat {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 10px;
}

.gtm-recent-card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
  flex: 1;
}

.gtm-recent-card__excerpt {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.gtm-recent-card__date {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rule);
  font-weight: 400;
}

.gtm-recent-pagination {
  margin-top: 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gtm-recent-pagination a,
.gtm-recent-pagination span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s;
}

.gtm-recent-pagination a:hover { background: var(--paper); }
.gtm-recent-pagination .current { background: var(--green); color: var(--cream); border-color: var(--green); }

.gtm-recent-empty {
  padding: 80px 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .gtm-recent-grid { grid-template-columns: repeat(2, 1fr); }
  .gtm-recent-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .gtm-recent-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .gtm-recent-grid { grid-template-columns: 1fr; }
  .gtm-recent-card { border-right: none; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────────────── */
.gtm-about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
}

.gtm-about-block {
  padding: 48px 44px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.gtm-about-block:nth-child(2n) { border-right: none; }
.gtm-about-block:nth-last-child(-n+2) { border-bottom: none; }

.gtm-about-heading {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
}

.gtm-about-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 16px;
}

.gtm-about-block p:last-child { margin-bottom: 0; }

.gtm-about-block em {
  font-style: italic;
  color: var(--ink);
}

/* Special thanks grid */
.gtm-about-thanks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 24px;
}

.gtm-about-thanks__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gtm-about-thanks__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
}

.gtm-about-thanks__handle {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

.gtm-about-thanks__handle:hover { color: var(--green-light); }

/* Links row at bottom */
.gtm-about-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.gtm-about-link-item {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}

.gtm-about-link-item:last-child { border-right: none; }

.gtm-about-link-label {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.gtm-about-link-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.gtm-about-link-desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* About responsive */
@media (max-width: 1024px) {
  .gtm-about-text { grid-template-columns: 1fr; }
  .gtm-about-block { border-right: none; }
  .gtm-about-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .gtm-about-block:last-child { border-bottom: none; }
  .gtm-about-links { grid-template-columns: 1fr 1fr; }
  .gtm-about-link-item:nth-child(2n) { border-right: none; }
  .gtm-about-link-item:nth-child(n+3) { border-top: 1px solid var(--rule); }
}

@media (max-width: 640px) {
  .gtm-about-block { padding: 36px var(--page-padding); }
  .gtm-about-thanks { grid-template-columns: 1fr; }
  .gtm-about-links { grid-template-columns: 1fr; }
  .gtm-about-link-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .gtm-about-link-item:last-child { border-bottom: none; }
}

/* ── ABOUT PAGE — manifesto grid responsive ──────────────────────── */
.gtm-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .gtm-manifesto-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* On mobile the blockquote alone is enough — hide full text column
     to avoid wall of text. Show it stacked below in a readable size. */
  .gtm-manifesto-grid blockquote {
    font-size: clamp(18px, 5vw, 24px) !important;
    border-left-width: 2px !important;
    padding-left: 20px !important;
  }

  .gtm-manifesto-grid > div {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .gtm-manifesto-grid > div p {
    margin-bottom: 16px !important;
  }
}

/* ── ISSUE PAGE — available soon mobile width ────────────────────── */
@media (max-width: 1024px) {
  .gtm-issue__header-text .gtm-issue__available-soon,
  .gtm-issue__available-soon--large {
    max-width: 100%;
    width: 100%;
  }
}
