/**
 * newsletter-hub theme CSS — byte-for-byte port of
 *   /Volumes/x9/claude-design/ui_kits/newsletter-hub/{index,blog,post,page}.html
 *
 * Generated by scripts/port-theme-css.py.
 *
 * NOTE: top-level `:root` and `html, body` selectors are mechanically
 * rewritten to `body[data-theme="newsletter-hub"]` so multiple theme.css
 * files can coexist in the bundle without overriding each other's
 * CSS custom properties. Other selectors (.brand, .nav-link, etc.)
 * are preserved verbatim from source — they reference var(--bg)/
 * var(--fg) which inherit from the scoped body.
 */

/* ===== newsletter-hub/index.html <style> ===== */
body[data-theme="newsletter-hub"], [data-theme="newsletter-hub"] {
    --bg:        #ffffff;
    --ink:       #111827;
    --soft:      #6b7280;
    --hair:      #f3f4f6;
    --border:    #e5e7eb;
    --orange:    #ea580c;
    --orange-50: #fff7ed;
    --green-50:  #f0fdf4;
    --green-600: #16a34a;
    --sans:  'Inter', system-ui, -apple-system, sans-serif;
    --serif: Georgia, 'Times New Roman', serif;
  }
  [data-theme="newsletter-hub"] * { box-sizing: border-box; }
  body[data-theme="newsletter-hub"], [data-theme="newsletter-hub"] {
    margin: 0; padding: 0;
    background: var(--bg); color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  [data-theme="newsletter-hub"] a { color: inherit; text-decoration: none; }

  /* Nav */
  [data-theme="newsletter-hub"] nav.site-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hair);
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  [data-theme="newsletter-hub"] .brand {
    font-size: 16px; font-weight: 700;
    letter-spacing: -0.01em;
  }
  [data-theme="newsletter-hub"] .nav-links { display: flex; gap: 24px; align-items: center; }
  [data-theme="newsletter-hub"] .nav-link {
    font-size: 14px; color: var(--soft);
    transition: color 150ms;
  }
  [data-theme="newsletter-hub"] .nav-link:hover { color: var(--ink); }
  [data-theme="newsletter-hub"] .member {
    width: 32px; height: 32px;
    border-radius: 9999px;
    background: var(--ink); color: #fff;
    font-size: 11px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* Hero */
  [data-theme="newsletter-hub"] .hero {
    padding: 96px 24px 112px;
    text-align: center;
    border-bottom: 1px solid var(--hair);
  }
  [data-theme="newsletter-hub"] .mail-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 9999px;
    background: var(--green-50);
    color: var(--green-600);
    margin-bottom: 24px;
  }
  [data-theme="newsletter-hub"] .mail-circle svg { width: 22px; height: 22px; }
  [data-theme="newsletter-hub"] .hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 24px;
    color: var(--ink);
  }
  [data-theme="newsletter-hub"] .hero p.tag {
    font-size: 20px;
    line-height: 1.55;
    color: var(--soft);
    max-width: 580px;
    margin: 0 auto 40px;
  }
  [data-theme="newsletter-hub"] .sub-form {
    display: flex; max-width: 460px; margin: 0 auto 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  [data-theme="newsletter-hub"] .sub-form input {
    flex: 1; min-width: 0;
    background: #fff;
    border: none;
    padding: 16px 22px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    outline: none;
  }
  [data-theme="newsletter-hub"] .sub-form input::placeholder { color: #9ca3af; }
  [data-theme="newsletter-hub"] .sub-form button {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 150ms;
  }
  [data-theme="newsletter-hub"] .sub-form button:hover { opacity: 0.92; }
  [data-theme="newsletter-hub"] .sub-form-mini button {
    background: var(--ink) !important;
  }
  [data-theme="newsletter-hub"] .hero .fine {
    font-size: 12px; color: #9ca3af;
  }

  /* Recent issues */
  [data-theme="newsletter-hub"] .archive {
    max-width: 680px; margin: 0 auto;
    padding: 48px 24px;
  }
  [data-theme="newsletter-hub"] .label-caps {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 32px;
  }
  [data-theme="newsletter-hub"] .issue {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--hair);
  }
  [data-theme="newsletter-hub"] .issue:last-child { border-bottom: none; }
  [data-theme="newsletter-hub"] .issue-meta {
    display: flex; gap: 12px; align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
  }
  [data-theme="newsletter-hub"] .issue-meta time { color: #9ca3af; }
  [data-theme="newsletter-hub"] .issue-meta .tag {
    color: var(--orange);
    font-weight: 600;
  }
  [data-theme="newsletter-hub"] .issue h3 {
    font-size: 18px; font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
    color: var(--ink);
  }
  [data-theme="newsletter-hub"] .issue:hover h3 {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  [data-theme="newsletter-hub"] .issue p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  [data-theme="newsletter-hub"] .issue .reading {
    margin-top: 8px;
    font-size: 12px; color: #9ca3af;
  }
  [data-theme="newsletter-hub"] .archive-link {
    display: block;
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--soft);
  }
  [data-theme="newsletter-hub"] .archive-link:hover { color: var(--ink); }

  /* About */
  [data-theme="newsletter-hub"] .about-wrap {
    max-width: 680px; margin: 0 auto;
    padding: 48px 24px;
    border-top: 1px solid var(--hair);
  }
  [data-theme="newsletter-hub"] .about-body {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
  }
  [data-theme="newsletter-hub"] .about-body p { margin: 0 0 16px; }

  /* FAQ + small CTA */
  [data-theme="newsletter-hub"] .closer {
    max-width: 680px; margin: 0 auto;
    padding: 48px 24px;
    border-top: 1px solid var(--hair);
  }
  [data-theme="newsletter-hub"] .closer .lead {
    text-align: center;
    font-size: 17px; font-weight: 600;
    margin: 0 0 20px;
    color: #374151;
  }
  [data-theme="newsletter-hub"] .sub-form-mini {
    display: flex; max-width: 380px; margin: 0 auto 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  [data-theme="newsletter-hub"] .sub-form-mini input {
    flex: 1; min-width: 0;
    border: none; padding: 12px 18px;
    font-family: inherit; font-size: 14px;
    outline: none;
  }
  [data-theme="newsletter-hub"] .faq-item {
    border-bottom: 1px solid var(--hair);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  [data-theme="newsletter-hub"] .faq-q { font-size: 14px; font-weight: 600; margin: 0; color: #374151; }
  [data-theme="newsletter-hub"] .faq-a { font-size: 14px; line-height: 1.6; color: var(--soft); margin: 6px 0 0; }

  /* Footer */
  [data-theme="newsletter-hub"] footer.site-footer {
    border-top: 1px solid var(--hair);
    padding: 32px 24px;
  }
  [data-theme="newsletter-hub"] .footer-inner {
    max-width: 680px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    font-size: 12px; color: #9ca3af;
  }
  [data-theme="newsletter-hub"] .footer-links { display: flex; gap: 20px; }
  [data-theme="newsletter-hub"] .footer-links a:hover { color: #374151; }

/* ===== newsletter-hub/blog.html <style> ===== */
/* === Inner page (blog/post/page) — inherits theme typography & color from body === */
  [data-theme="newsletter-hub"] .ip-wrap { max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="newsletter-hub"] .ip-narrow { max-width: 760px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="newsletter-hub"] .ip-prose-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
  [data-theme="newsletter-hub"] .ip-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; margin: 0 0 18px; }
  [data-theme="newsletter-hub"] .ip-h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="newsletter-hub"] .ip-h1-serif { font-family: var(--vb-heading-font, var(--heading, var(--display, inherit))); font-size: clamp(40px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="newsletter-hub"] .ip-dek { font-size: 19px; line-height: 1.55; opacity: 0.7; margin: 0 0 28px; max-width: 640px; text-wrap: pretty; }
  [data-theme="newsletter-hub"] .ip-byline { display: flex; align-items: center; gap: 14px; margin: 0 0 40px; padding: 14px 0; border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="newsletter-hub"] .ip-byline > div { min-width: 0; flex: 1; }
  [data-theme="newsletter-hub"] .ip-avatar { width: 40px; height: 40px; border-radius: 9999px; background: color-mix(in srgb, currentColor 12%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  [data-theme="newsletter-hub"] .ip-byline .author { font-size: 14px; font-weight: 600; }
  [data-theme="newsletter-hub"] .ip-byline .meta { font-size: 13px; opacity: 0.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  [data-theme="newsletter-hub"] .ip-cover { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; margin: 0 0 40px; }
  [data-theme="newsletter-hub"] .ip-prose { font-size: 18px; line-height: 1.75; }
  [data-theme="newsletter-hub"] .ip-prose p { margin: 0 0 22px; opacity: 0.92; }
  [data-theme="newsletter-hub"] .ip-prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin: 40px 0 16px; }
  [data-theme="newsletter-hub"] .ip-prose h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; margin: 32px 0 12px; }
  [data-theme="newsletter-hub"] .ip-prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid color-mix(in srgb, currentColor 35%, transparent); font-style: italic; font-size: 21px; line-height: 1.5; opacity: 0.78; }
  [data-theme="newsletter-hub"] .ip-prose ul, [data-theme="newsletter-hub"] .ip-prose ol { margin: 0 0 22px; padding-left: 22px; }
  [data-theme="newsletter-hub"] .ip-prose li { margin: 0 0 8px; opacity: 0.92; line-height: 1.7; }
  [data-theme="newsletter-hub"] .ip-prose code:not(pre code) { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; font-size: 0.88em; background: color-mix(in srgb, currentColor 8%, transparent); padding: 1px 6px; border-radius: 4px; }
  [data-theme="newsletter-hub"] .ip-prose pre { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; background: color-mix(in srgb, currentColor 4%, transparent); border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.65; margin: 22px 0; }
  [data-theme="newsletter-hub"] .ip-prose hr { border: none; height: 1px; background: color-mix(in srgb, currentColor 14%, transparent); margin: 36px 0; }
  [data-theme="newsletter-hub"] .ip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  [data-theme="newsletter-hub"] .ip-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 9999px; opacity: 0.7; text-decoration: none; color: inherit; white-space: nowrap; }
  [data-theme="newsletter-hub"] .ip-tag:hover { opacity: 1; }
  /* Blog index */
  [data-theme="newsletter-hub"] .ip-index-head { margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="newsletter-hub"] .ip-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
  [data-theme="newsletter-hub"] .ip-filter { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 9999px; text-decoration: none; color: inherit; opacity: 0.7; white-space: nowrap; }
  [data-theme="newsletter-hub"] .ip-filter:hover { opacity: 1; border-color: color-mix(in srgb, currentColor 32%, transparent); }
  [data-theme="newsletter-hub"] .ip-filter.active { background: color-mix(in srgb, currentColor 14%, transparent); border-width: 2px; padding: 5px 13px; opacity: 1; font-weight: 700; }
  [data-theme="newsletter-hub"] .ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { [data-theme="newsletter-hub"] .ip-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { [data-theme="newsletter-hub"] .ip-grid { grid-template-columns: 1fr; } }
  [data-theme="newsletter-hub"] .ip-card { display: block; border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 200ms, transform 200ms; }
  [data-theme="newsletter-hub"] .ip-card:hover { border-color: color-mix(in srgb, currentColor 30%, transparent); transform: translateY(-2px); }
  [data-theme="newsletter-hub"] .ip-card .img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
  [data-theme="newsletter-hub"] .ip-card .body { padding: 18px 20px 20px; }
  [data-theme="newsletter-hub"] .ip-card .kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin: 0 0 8px; }
  [data-theme="newsletter-hub"] .ip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 8px; }
  [data-theme="newsletter-hub"] .ip-card p { font-size: 14px; line-height: 1.55; opacity: 0.7; margin: 0 0 12px; }
  [data-theme="newsletter-hub"] .ip-card .meta { font-size: 12px; opacity: 0.55; }
  [data-theme="newsletter-hub"] .ip-pag { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 56px 0 0; }
  [data-theme="newsletter-hub"] .ip-pag a, [data-theme="newsletter-hub"] .ip-pag span { min-width: 36px; height: 36px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-radius: 6px; text-decoration: none; color: inherit; font-size: 13px; font-weight: 600; }
  [data-theme="newsletter-hub"] .ip-pag .current { background: color-mix(in srgb, currentColor 12%, transparent); }
  /* Inline newsletter CTA — outline style, no blend tricks */
  [data-theme="newsletter-hub"] .ip-inline-cta { margin: 56px 0 0; padding: 36px; border: 1px solid color-mix(in srgb, currentColor 14%, transparent); border-radius: 12px; text-align: center; }
  [data-theme="newsletter-hub"] .ip-inline-cta h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  [data-theme="newsletter-hub"] .ip-inline-cta p { font-size: 14px; opacity: 0.7; margin: 0 0 18px; }
  [data-theme="newsletter-hub"] .ip-inline-cta form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
  [data-theme="newsletter-hub"] .ip-inline-cta input { flex: 1; min-width: 0; background: transparent; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; padding: 10px 14px; outline: none; }
  [data-theme="newsletter-hub"] .ip-inline-cta button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 9px 22px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="newsletter-hub"] .ip-inline-cta button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
  /* Comments */
  [data-theme="newsletter-hub"] .ip-comments { margin: 64px 0 0; padding-top: 32px; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
  [data-theme="newsletter-hub"] .ip-comments h3 { font-size: 18px; font-weight: 700; margin: 0 0 24px; }
  [data-theme="newsletter-hub"] .ip-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent); }
  [data-theme="newsletter-hub"] .ip-comment > div { min-width: 0; flex: 1; }
  [data-theme="newsletter-hub"] .ip-comment:last-child { border-bottom: none; }
  [data-theme="newsletter-hub"] .ip-comment .who { font-size: 13px; font-weight: 600; }
  [data-theme="newsletter-hub"] .ip-comment .when { font-size: 12px; opacity: 0.55; }
  [data-theme="newsletter-hub"] .ip-comment .text { font-size: 14px; line-height: 1.55; opacity: 0.85; margin: 6px 0 0; }
  /* Back link */
  [data-theme="newsletter-hub"] .ip-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: inherit; opacity: 0.65; margin: 0 0 24px; white-space: nowrap; }
  [data-theme="newsletter-hub"] .ip-back:hover { opacity: 1; }
  /* Static page form */
  [data-theme="newsletter-hub"] .ip-form { max-width: 520px; margin: 32px 0 0; }
  [data-theme="newsletter-hub"] .ip-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; margin: 0 0 6px; }
  [data-theme="newsletter-hub"] .ip-form .row { margin: 0 0 16px; }
  [data-theme="newsletter-hub"] .ip-form input, [data-theme="newsletter-hub"] .ip-form textarea { width: 100%; background: transparent; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 15px; padding: 10px 14px; outline: none; }
  [data-theme="newsletter-hub"] .ip-form textarea { min-height: 120px; resize: vertical; }
  [data-theme="newsletter-hub"] .ip-form button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; padding: 10px 24px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="newsletter-hub"] .ip-form button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

/* ===== Page-builder token bridge =====
 * Maps generic --vb-* block renderer variables to Newsletter Hub's palette.
 */
[data-theme="newsletter-hub"] main {
  --vb-color-bg:          var(--bg);
  --vb-color-surface:     var(--hair);
  --vb-color-bg-elevated: var(--hair);
  --vb-color-fg:          var(--ink);
  --vb-color-heading:     var(--ink);
  --vb-color-muted:       var(--soft);
  --vb-color-text-muted:  var(--soft);
  --vb-color-border:      var(--border);
  --vb-color-primary:     var(--orange);
  --vb-color-primary-bg:  var(--orange-50);
  --vb-color-primary-fg:  var(--bg);
  --vb-color-cta-btn-bg:  var(--orange);
  --vb-color-cta-btn-fg:  var(--bg);
  --vb-color-secondary:   var(--soft);
  --vb-heading-font:      var(--serif);
}

/* Mobile nav — hide desktop links below lg (1024px) */
@media (max-width: 1023px) {
  [data-theme="newsletter-hub"] .nav-links { display: none !important; }
}

/* ===== Old-30 Bespoke Parity Wave 4 — bespoke mobile drawer + storefront =====
 * NewsletterHubMobileMenu / NewsletterHubShopLayout / NewsletterHubProductLayout
 * styling hooks. Hover-only rules (P-097 — CSS-only, no JS event handlers).
 */

[data-theme="newsletter-hub"] .nh-shop-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 7px 14px;
  transition: background-color 200ms, color 200ms, border-color 200ms;
}
[data-theme="newsletter-hub"] .nh-shop-pill:hover {
  border-color: var(--orange);
  color: var(--ink);
}
[data-theme="newsletter-hub"] .nh-shop-pill[data-active] {
  background: var(--orange-50);
  color: var(--orange);
  border-color: var(--orange-50);
}

[data-theme="newsletter-hub"] .nh-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  [data-theme="newsletter-hub"] .nh-shop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  [data-theme="newsletter-hub"] .nh-shop-grid { grid-template-columns: 1fr; }
}

[data-theme="newsletter-hub"] .nh-shop-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 200ms, transform 200ms;
}
[data-theme="newsletter-hub"] .nh-shop-item:hover {
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

[data-theme="newsletter-hub"] .nh-shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

[data-theme="newsletter-hub"] .nh-add-to-cart {
  font-size: 13px;
  font-weight: 600;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 10px 16px;
  cursor: pointer;
  transition: opacity 200ms;
}
[data-theme="newsletter-hub"] .nh-add-to-cart:hover {
  opacity: 0.88;
}

@media (max-width: 768px) {
  [data-theme="newsletter-hub"] .nh-product-grid {
    grid-template-columns: 1fr !important;
  }
}
