/* ═══════════════════════════════════════════════════════════════════════
   GAZETTE · re-skinned to the main marketing aesthetic
   Reuses tokens from styles.css (Inter + Bricolage Grotesque · brand blue ·
   ink scale · soft shadows · rounded cards). No newsprint serif.
   ═══════════════════════════════════════════════════════════════════════ */

.gz-body {
  font-family: var(--font-sans);
  background: var(--ink-50);
  color: var(--ink-900);
}
.gz-wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─── KICKER (pill eyebrow, matches hero-eyebrow on main page) ─── */
.gz-kicker {
  display: inline-flex; align-items: center;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 5px 11px;
  border-radius: var(--r-full);
  border: 1px solid var(--brand-100);
}

/* ═════ MASTHEAD ═════ */
.gz-mast {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(139, 92, 246, 0.10), transparent 60%),
    radial-gradient(900px 500px at 20% 100%, rgba(37, 99, 235, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-50) 0%, white 100%);
  border-bottom: 1px solid var(--ink-200);
}
.gz-mast::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(28, 25, 23, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.gz-mast > * { position: relative; z-index: 1; }

.gz-edition {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 16px;
  font-size: var(--text-xs); font-weight: 500;
  color: var(--ink-600);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.gz-edition span:first-child {
  font-weight: 700; color: var(--ink-900);
  padding: 4px 10px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-soft);
}
.gz-edition-price { color: var(--brand-700); font-weight: 600; }

.gz-mast-title h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 18ch;
}
.gz-mast-tagline {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}
.gz-mast-tagline em {
  font-style: normal;
  color: var(--ink-400);
  margin: 0 6px;
}

/* ─── Section nav · pill row ─── */
.gz-sections {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px;
  margin-top: 28px;
}
.gz-sections a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-soft);
  transition: all 0.15s;
}
.gz-sections a:hover { border-color: var(--brand-300); color: var(--brand-700); transform: translateY(-1px); }
.gz-sections a.is-active {
  background: var(--ink-900);
  color: white;
  border-color: var(--ink-900);
}
.gz-sections-dot { display: none; }

/* ═════ LEAD STORY ═════ */
.gz-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ink-200);
}
@media (min-width: 900px) {
  .gz-lead { grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
}

.gz-lead h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink-900);
  margin: 14px 0 14px;
  max-width: 22ch;
  text-wrap: balance;
}
.gz-lead h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-600), var(--violet-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gz-dek {
  font-size: var(--text-lg);
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.gz-byline {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--ink-600);
  font-variant-numeric: tabular-nums;
}
.gz-byline-author { color: var(--ink-900); font-weight: 600; }
.gz-byline-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }

.gz-lead-image {
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.gz-lead-image::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  background: white;
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid var(--ink-200);
}
.gz-imgph {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-400);
  text-align: center;
  padding: 16px 24px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--ink-100), var(--ink-50));
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.gz-lead-lede {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.gz-lead-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-600);
  transition: gap 0.18s;
}
.gz-lead-readmore:hover { gap: 10px; }

/* ═════ STORIES GRID ═════ */
.gz-grid-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 56px 0 24px;
}

.gz-grid {
  display: grid;
  gap: 24px;
}
.gz-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px)  { .gz-grid-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gz-grid-row { grid-template-columns: 1fr 1fr 1fr; } }

.gz-card {
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease-out, box-shadow 0.18s, border-color 0.18s;
  text-decoration: none;
  color: inherit;
}
.gz-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
}
.gz-card .gz-kicker { align-self: flex-start; margin-bottom: 12px; }
.gz-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink-900);
  margin-bottom: 10px;
  text-wrap: balance;
}
.gz-card-dek {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.gz-card-byline {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: var(--text-xs);
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
  padding-top: 14px;
  border-top: 1px solid var(--ink-200);
}
.gz-card-byline strong { color: var(--ink-900); font-weight: 600; }
.gz-card-byline span:nth-child(even) { color: var(--ink-300); }

/* ═════ TWO-COLUMN: LETTERS + TRACKER ═════ */
.gz-twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 0;
}
@media (min-width: 900px) { .gz-twocol { grid-template-columns: 1.4fr 1fr; gap: 48px; } }

.gz-letters {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-2xl);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.gz-letters::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand-500), var(--violet-500));
}
.gz-letters-body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-700);
}
.gz-letters-body p { margin-bottom: 14px; }
.gz-letters-body p:last-child { margin-bottom: 0; }
.gz-letters-sig {
  display: flex; align-items: center; gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-200);
}
.gz-letters-stamp {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-md);
  padding: 8px 12px;
  text-align: center;
  line-height: 1.3;
}
.gz-letters-stamp strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-700);
  display: block;
  letter-spacing: -0.01em;
  margin: 2px 0;
}
.gz-letters-sigtext {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.gz-letters-sigtext small {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--ink-500);
  margin-top: 2px;
}

.gz-tracker {
  background: var(--ink-900);
  color: white;
  border-radius: var(--r-2xl);
  padding: 24px 24px 8px;
  box-shadow: var(--shadow-md);
}
.gz-tracker h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-300);
  margin-bottom: 14px;
}
.gz-tracker-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gz-tracker-row:last-child { border-bottom: 0; }
.gz-tracker-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: white;
  line-height: 1.35;
}
.gz-tracker-label small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-400);
  margin-top: 3px;
}
.gz-tracker-val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.gz-tracker-val em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 2px;
}
.gz-tracker-val.is-down { color: var(--grow-300); }
.gz-tracker-val.is-down em { color: var(--grow-500); }
.gz-tracker-val.is-up em { color: var(--amber-500); }

/* ═════ SUBSCRIBE ═════ */
.gz-subscribe {
  background: var(--ink-900);
  color: white;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.gz-subscribe::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(600px 320px at 80% 100%, rgba(139, 92, 246, 0.18), transparent 60%);
  pointer-events: none;
}
.gz-subscribe-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gz-subscribe .gz-kicker {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--brand-300);
}
.gz-subscribe h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 16px 0 12px;
  text-wrap: balance;
}
.gz-subscribe p {
  font-size: var(--text-base);
  color: var(--ink-300);
  line-height: 1.6;
  margin-bottom: 24px;
}
.gz-subscribe-form {
  display: flex; gap: 8px;
  max-width: 480px;
  margin: 0 auto 14px;
  flex-wrap: wrap;
}
.gz-subscribe-form input {
  flex: 1; min-width: 220px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-md);
  color: white;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.gz-subscribe-form input::placeholder { color: var(--ink-400); }
.gz-subscribe-form input:focus { border-color: var(--brand-400); background: rgba(255,255,255,0.10); }
.gz-subscribe-form button {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-base);
  height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 0;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gz-subscribe-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.5); }
.gz-subscribe-fineprint {
  font-size: var(--text-xs);
  color: var(--ink-400);
}

/* ═════ FOOT ═════ */
.gz-foot {
  background: white;
  border-top: 1px solid var(--ink-200);
  padding: 28px 0;
}
.gz-foot-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: var(--text-sm);
  color: var(--ink-600);
}
.gz-foot a { color: var(--ink-700); transition: color 0.15s; }
.gz-foot a:hover { color: var(--brand-600); }

/* ═════ ARTICLE PAGE (blog-post.html) ═════ */
.gz-article {
  background: white;
}
.gz-article-head {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--ink-200);
}
.gz-article-head .gz-kicker { margin-bottom: 14px; }
.gz-article-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin-bottom: 18px;
  max-width: 22ch;
  text-wrap: balance;
}
.gz-article-dek {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--ink-700);
  line-height: 1.5;
  max-width: 56ch;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.gz-article-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--ink-600);
  font-variant-numeric: tabular-nums;
}
.gz-article-meta strong { color: var(--ink-900); font-weight: 600; }
.gz-article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-300); }

.gz-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--ink-800);
}
.gz-article-body p { margin-bottom: 22px; }
.gz-article-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4em;
  float: left;
  line-height: 0.9;
  margin: 4px 10px 0 0;
  color: var(--brand-600);
}
.gz-article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 36px 0 16px;
  text-wrap: balance;
}
.gz-article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 28px 0 12px;
}
.gz-article-body strong { color: var(--ink-900); font-weight: 600; }
.gz-article-body em { font-style: italic; color: var(--ink-900); }
.gz-article-body a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.gz-article-body ul, .gz-article-body ol {
  margin: 0 0 22px 22px;
  padding: 0;
  list-style: disc;
}
.gz-article-body ol { list-style: decimal; }
.gz-article-body li { margin-bottom: 8px; }

.gz-pullquote {
  margin: 36px -8px;
  padding: 24px 28px;
  border-left: 4px solid var(--brand-500);
  background: var(--brand-50);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--ink-900);
}
.gz-pullquote-cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-600);
  letter-spacing: 0;
}
.gz-figure {
  margin: 32px -8px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gz-figure-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ink-100), var(--ink-50));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ink-400);
  letter-spacing: 0.04em;
}
.gz-figure-caption {
  padding: 12px 18px;
  border-top: 1px solid var(--ink-200);
  font-size: var(--text-sm);
  color: var(--ink-600);
  background: var(--ink-50);
}
.gz-figure-caption strong { color: var(--ink-900); font-weight: 600; }
.gz-endmark {
  text-align: center;
  margin: 32px 0 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.gz-endmark::before, .gz-endmark::after {
  content: '·';
  margin: 0 12px;
  color: var(--ink-300);
}

/* ═════ COMMENTS ═════ */
.gz-comments {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}
.gz-comments-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 12px;
  padding-top: 36px;
  margin-bottom: 28px;
  border-top: 1px solid var(--ink-200);
}
.gz-comments-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.gz-comments-head-meta {
  font-size: var(--text-sm);
  color: var(--ink-600);
  font-variant-numeric: tabular-nums;
}
.gz-policy {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  margin-bottom: 28px;
  font-size: var(--text-sm);
  color: var(--ink-800);
  line-height: 1.5;
  display: flex; gap: 14px; align-items: flex-start;
}
.gz-policy-mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
}
.gz-policy strong { color: var(--ink-900); font-weight: 600; }

.gz-comment {
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-200);
}
.gz-comment:first-of-type { padding-top: 4px; }
.gz-comment-head {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gz-comment-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--violet-500));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}
.gz-comment-author {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink-900);
}
.gz-comment-meta {
  font-size: var(--text-xs);
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}
.gz-comment-verified {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grow-700);
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--r-full);
  padding: 3px 9px;
  display: inline-flex; align-items: center; gap: 5px;
}
.gz-comment-verified::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grow-500);
}
.gz-comment-body {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-800);
}
.gz-comment-body p { margin-bottom: 8px; }
.gz-comment-body p:last-child { margin-bottom: 0; }

.gz-reply {
  margin-top: 16px;
  margin-left: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--brand-300);
  background: var(--brand-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 14px 16px;
}
.gz-reply .gz-comment-author { color: var(--brand-700); }
.gz-reply .gz-comment-verified {
  color: var(--brand-700);
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}
.gz-reply .gz-comment-verified::before { background: var(--brand-500); }

/* ─── Comment form ─── */
.gz-form {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.gz-form h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.018em;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.gz-form-sub {
  font-size: var(--text-sm);
  color: var(--ink-600);
  margin-bottom: 18px;
  line-height: 1.5;
}
.gz-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .gz-form-row { grid-template-columns: 1fr 1fr; } }
.gz-form label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 5px;
}
.gz-form input, .gz-form textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  padding: 11px 14px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gz-form input:focus, .gz-form textarea:focus {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.gz-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.gz-form-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}
.gz-form-foot-note {
  font-size: var(--text-xs);
  color: var(--ink-600);
  flex: 1;
  min-width: 220px;
  line-height: 1.45;
}
.gz-form-submit {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-base);
  height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: white;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gz-form-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

/* ─── Held-for-review state ─── */
.gz-pending {
  margin-top: 18px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--amber-500);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.10);
  display: flex; gap: 14px; align-items: flex-start;
}
.gz-pending-stamp {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B45309;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--r-md);
  padding: 8px 12px;
  text-align: center;
  line-height: 1.3;
}
.gz-pending-body {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-800);
}
.gz-pending-body strong { color: var(--ink-900); font-weight: 600; }

/* ─── Related ─── */
.gz-related {
  background: var(--ink-50);
  padding: 56px 0;
  border-top: 1px solid var(--ink-200);
}
