/**
 * studio-newsroom theme CSS — byte-for-byte port of
 *   /Volumes/x9/claude-design/ui_kits/studio-newsroom/{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="studio-newsroom"]` 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.
 */

/* ===== studio-newsroom/index.html <style> ===== */
body[data-theme="studio-newsroom"], [data-theme="studio-newsroom"] {
    overflow-x: clip;
    --bg:        oklch(95.4% 0.027 57.6);   /* #FFF1E5 salmon */
    --surface:   oklch(92.4% 0.038 55.8);   /* #FAE9D8 */
    --surface-h: oklch(89.0% 0.046 55.2);
    --fg:        oklch(17.8% 0.046 244.0);  /* #0C2340 navy */
    --muted-fg:  oklch(44.5% 0.044 224.5);  /* #4A6580 slate */
    --subtle-fg: oklch(56.0% 0.038 220.0);
    --border:    oklch(81.0% 0.033 60.5);   /* #D6C4B0 beige hairline */
    --border-s:  oklch(87.0% 0.024 62.0);
    --teal:      oklch(44.0% 0.072 210.5);  /* #13687A */
    --teal-h:    oklch(56.0% 0.060 210.0);
    --teal-bg:   oklch(88.0% 0.040 208.0);
    --on-teal:   oklch(97.5% 0.008 200.0);
    --footer-bg: oklch(17.8% 0.046 244.0);
    --footer-fg: oklch(92.4% 0.038 55.8);
    --footer-muted: oklch(68.0% 0.030 220.0);
    --heading: var(--font-lora, 'Lora'), Georgia, 'Times New Roman', serif;
    --body:    'Source Sans 3', system-ui, -apple-system, sans-serif;
    --mono:    'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    --container: 1280px;
  }
  [data-theme="studio-newsroom"] * { box-sizing: border-box; }
  body[data-theme="studio-newsroom"], [data-theme="studio-newsroom"] {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
  }
  [data-theme="studio-newsroom"] a { color: inherit; text-decoration: none; }

  /* Top teal bar */
  [data-theme="studio-newsroom"] .top-rule { height: 3px; background: var(--teal); }

  /* Header */
  [data-theme="studio-newsroom"] header.site-nav {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }
  [data-theme="studio-newsroom"] .header-inner {
    max-width: var(--container); margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
  }
  [data-theme="studio-newsroom"] .nav-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  [data-theme="studio-newsroom"] .pub-mark {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--fg);
  }
  [data-theme="studio-newsroom"] .nav-links { display: flex; align-items: center; gap: 28px; }
  @media (max-width: 1023px) { [data-theme="studio-newsroom"] .nav-links { display: none; } }
  [data-theme="studio-newsroom"] .nav-link {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-fg);
    transition: color 150ms;
  }
  [data-theme="studio-newsroom"] .nav-link:hover { color: var(--fg); }
  [data-theme="studio-newsroom"] .member-disc {
    width: 30px; height: 30px;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg);
    font-family: var(--mono);
    font-size: 10px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  [data-theme="studio-newsroom"] .pills-row {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 0 12px;
    border-top: 1px solid var(--border);
    overflow-x: auto; scrollbar-width: none;
  }
  [data-theme="studio-newsroom"] .pills-row::-webkit-scrollbar { display: none; }
  [data-theme="studio-newsroom"] .section-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
  }
  [data-theme="studio-newsroom"] .pill {
    padding: 4px 12px;
    border: 1px solid var(--teal);
    border-radius: 2px;
    white-space: nowrap;
    transition: background 150ms, color 150ms;
  }
  [data-theme="studio-newsroom"] .pill:hover {
    background: var(--teal);
    color: var(--on-teal);
  }

  /* Newsroom grid */
  [data-theme="studio-newsroom"] .newsroom {
    max-width: var(--container); margin: 0 auto;
    padding: 40px clamp(16px, 4vw, 48px) 64px;
  }
  [data-theme="studio-newsroom"] .row {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
  }
  @media (max-width: 1100px) {
    [data-theme="studio-newsroom"] .row { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
    [data-theme="studio-newsroom"] .sidebar { display: none; }
  }
  @media (max-width: 760px) {
    [data-theme="studio-newsroom"] .row { grid-template-columns: 1fr; }
    [data-theme="studio-newsroom"] .secondary { display: none; }
  }

  /* Lead */
  [data-theme="studio-newsroom"] .lead-img {
    width: 100%; aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 2px;
    background-size: cover; background-position: center;
    background-image: linear-gradient(135deg, var(--teal) 0%, var(--surface) 100%);
  }
  [data-theme="studio-newsroom"] .lead .cat-pill {
    display: inline-block;
    margin-bottom: 14px;
    padding: 3px 10px;
    border: 1px solid var(--teal);
    border-radius: 2px;
  }
  [data-theme="studio-newsroom"] .lead h2 {
    font-family: var(--heading);
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--fg);
    margin: 0 0 16px;
  }
  [data-theme="studio-newsroom"] .lead h2 a:hover { color: var(--teal); }
  [data-theme="studio-newsroom"] .lead .deck {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted-fg);
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  [data-theme="studio-newsroom"] .byline-row {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 12px;
  }
  [data-theme="studio-newsroom"] .byline-row .sep { color: var(--border); }
  [data-theme="studio-newsroom"] .byline-row .byline {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted-fg);
  }
  [data-theme="studio-newsroom"] .dateline {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-fg);
  }

  /* Secondary stories */
  [data-theme="studio-newsroom"] .secondary .head {
    border-top: 2px solid var(--teal);
    padding-top: 12px;
    margin-bottom: 24px;
  }
  [data-theme="studio-newsroom"] .sec-card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
  }
  [data-theme="studio-newsroom"] .sec-card:last-child { border-bottom: none; margin-bottom: 0; }
  [data-theme="studio-newsroom"] .sec-card .cat-pill {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid var(--teal);
    border-radius: 2px;
    margin-bottom: 8px;
  }
  [data-theme="studio-newsroom"] .sec-card h3 {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--fg);
    margin: 0 0 8px;
  }
  [data-theme="studio-newsroom"] .sec-card h3 a:hover { color: var(--teal); }

  /* Sidebar */
  [data-theme="studio-newsroom"] .sidebar { display: flex; flex-direction: column; gap: 20px; }
  [data-theme="studio-newsroom"] .widget {
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
  }
  [data-theme="studio-newsroom"] .widget-head {
    background: var(--teal);
    padding: 10px 16px;
  }
  [data-theme="studio-newsroom"] .widget-head .section-label { color: var(--on-teal); }
  [data-theme="studio-newsroom"] .widget-body { padding: 16px; }
  [data-theme="studio-newsroom"] .briefing-item {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
  }
  [data-theme="studio-newsroom"] .briefing-item:last-child { padding: 0; border: none; margin: 0; }
  [data-theme="studio-newsroom"] .briefing-item .dateline { display: block; margin-bottom: 4px; }
  [data-theme="studio-newsroom"] .briefing-item a {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--fg);
  }
  [data-theme="studio-newsroom"] .briefing-item a:hover { color: var(--teal); }

  [data-theme="studio-newsroom"] .nl-card {
    background: var(--surface);
    border-top: 2px solid var(--teal);
    padding: 16px;
    border-radius: 0 0 2px 2px;
  }
  [data-theme="studio-newsroom"] .nl-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted-fg);
    margin: 8px 0 14px;
  }
  [data-theme="studio-newsroom"] .nl-cta {
    display: block; text-align: center;
    background: var(--teal);
    color: var(--on-teal);
    font-family: var(--body);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 2px;
    transition: opacity 150ms;
    white-space: nowrap;
  }
  [data-theme="studio-newsroom"] .nl-cta:hover { opacity: 0.92; }

  /* More stories grid */
  [data-theme="studio-newsroom"] .more-wrap {
    max-width: var(--container); margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px) 96px;
  }
  [data-theme="studio-newsroom"] .more-rule { height: 1px; background: var(--border); margin-bottom: 32px; }
  [data-theme="studio-newsroom"] .more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
  [data-theme="studio-newsroom"] .more-item {
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  [data-theme="studio-newsroom"] .more-item .cat-pill {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid var(--teal);
    border-radius: 2px;
    margin-bottom: 8px;
  }
  [data-theme="studio-newsroom"] .more-item h3 {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--fg);
    margin: 0 0 8px;
  }
  [data-theme="studio-newsroom"] .more-item h3 a:hover { color: var(--teal); }

  /* Footer */
  [data-theme="studio-newsroom"] footer.site-footer {
    background: var(--footer-bg);
    color: var(--footer-fg);
  }
  [data-theme="studio-newsroom"] .footer-inner {
    max-width: var(--container); margin: 0 auto;
    padding: 40px clamp(16px, 4vw, 48px);
  }
  [data-theme="studio-newsroom"] .footer-top {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 24px;
  }
  [data-theme="studio-newsroom"] .footer-pub {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--footer-fg);
  }
  [data-theme="studio-newsroom"] .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  [data-theme="studio-newsroom"] .footer-link {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--footer-muted);
    transition: color 150ms;
  }
  [data-theme="studio-newsroom"] .footer-link:hover { color: var(--footer-fg); }
  [data-theme="studio-newsroom"] .footer-rule {
    height: 1px;
    background: oklch(25% 0.04 244 / 60%);
    margin-bottom: 20px;
  }
  [data-theme="studio-newsroom"] .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
    font-size: 12px;
    color: var(--footer-muted);
  }
  [data-theme="studio-newsroom"] .powered-by {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--footer-muted);
    border: 1px solid oklch(25% 0.04 244 / 60%);
    padding: 5px 10px;
    border-radius: 2px;
  }

/* ===== studio-newsroom/blog.html <style> ===== */
/* === Inner page (blog/post/page) — inherits theme typography & color from body === */
  [data-theme="studio-newsroom"] .ip-wrap { max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="studio-newsroom"] .ip-narrow { max-width: 760px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="studio-newsroom"] .ip-prose-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
  [data-theme="studio-newsroom"] .ip-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; margin: 0 0 18px; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .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="studio-newsroom"] .ip-dek { font-size: 19px; line-height: 1.55; opacity: 0.7; margin: 0 0 28px; max-width: 640px; text-wrap: pretty; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-byline > div { min-width: 0; flex: 1; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-byline .author { font-size: 14px; font-weight: 600; }
  [data-theme="studio-newsroom"] .ip-byline .meta { font-size: 13px; opacity: 0.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  [data-theme="studio-newsroom"] .ip-cover { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; margin: 0 0 40px; }
  [data-theme="studio-newsroom"] .ip-prose { font-size: 18px; line-height: 1.75; }
  [data-theme="studio-newsroom"] .ip-prose p { margin: 0 0 22px; opacity: 0.92; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-prose h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; margin: 32px 0 12px; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-prose ul, [data-theme="studio-newsroom"] .ip-prose ol { margin: 0 0 22px; padding-left: 22px; }
  [data-theme="studio-newsroom"] .ip-prose li { margin: 0 0 8px; opacity: 0.92; line-height: 1.7; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .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="studio-newsroom"] .ip-prose hr { border: none; height: 1px; background: color-mix(in srgb, currentColor 14%, transparent); margin: 36px 0; }
  [data-theme="studio-newsroom"] .ip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-tag:hover { opacity: 1; }
  /* Blog index */
  [data-theme="studio-newsroom"] .ip-index-head { margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="studio-newsroom"] .ip-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-filter:hover { opacity: 1; border-color: color-mix(in srgb, currentColor 32%, transparent); }
  [data-theme="studio-newsroom"] .ip-filter.active { background: color-mix(in srgb, currentColor 14%, transparent); border-width: 2px; padding: 5px 13px; opacity: 1; font-weight: 700; }
  [data-theme="studio-newsroom"] .ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { [data-theme="studio-newsroom"] .ip-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { [data-theme="studio-newsroom"] .ip-grid { grid-template-columns: 1fr; } }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-card:hover { border-color: color-mix(in srgb, currentColor 30%, transparent); transform: translateY(-2px); }
  [data-theme="studio-newsroom"] .ip-card .img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
  [data-theme="studio-newsroom"] .ip-card .body { padding: 18px 20px 20px; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 8px; }
  [data-theme="studio-newsroom"] .ip-card p { font-size: 14px; line-height: 1.55; opacity: 0.7; margin: 0 0 12px; }
  [data-theme="studio-newsroom"] .ip-card .meta { font-size: 12px; opacity: 0.55; }
  [data-theme="studio-newsroom"] .ip-pag { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 56px 0 0; }
  [data-theme="studio-newsroom"] .ip-pag a, [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-pag .current { background: color-mix(in srgb, currentColor 12%, transparent); }
  /* Inline newsletter CTA — outline style, no blend tricks */
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-inline-cta h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  [data-theme="studio-newsroom"] .ip-inline-cta p { font-size: 14px; opacity: 0.7; margin: 0 0 18px; }
  [data-theme="studio-newsroom"] .ip-inline-cta form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .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="studio-newsroom"] .ip-inline-cta button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
  /* Comments */
  [data-theme="studio-newsroom"] .ip-comments { margin: 64px 0 0; padding-top: 32px; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
  [data-theme="studio-newsroom"] .ip-comments h3 { font-size: 18px; font-weight: 700; margin: 0 0 24px; }
  [data-theme="studio-newsroom"] .ip-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent); }
  [data-theme="studio-newsroom"] .ip-comment > div { min-width: 0; flex: 1; }
  [data-theme="studio-newsroom"] .ip-comment:last-child { border-bottom: none; }
  [data-theme="studio-newsroom"] .ip-comment .who { font-size: 13px; font-weight: 600; }
  [data-theme="studio-newsroom"] .ip-comment .when { font-size: 12px; opacity: 0.55; }
  [data-theme="studio-newsroom"] .ip-comment .text { font-size: 14px; line-height: 1.55; opacity: 0.85; margin: 6px 0 0; }
  /* Back link */
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-back:hover { opacity: 1; }
  /* Static page form */
  [data-theme="studio-newsroom"] .ip-form { max-width: 520px; margin: 32px 0 0; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-form .row { margin: 0 0 16px; }
  [data-theme="studio-newsroom"] .ip-form input, [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-form textarea { min-height: 120px; resize: vertical; }
  [data-theme="studio-newsroom"] .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="studio-newsroom"] .ip-form button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

/* ===== Old-30 Bespoke Parity Wave 6: bespoke drawer + shop CSS-only hover
 * rules (P-097 — ShopLayout is a server component, zero JS handlers). */
[data-theme="studio-newsroom"] .sn-shop-card:hover h3 {
  color: var(--teal);
}
[data-theme="studio-newsroom"] .sn-shop-pill:hover {
  background: var(--teal-h);
  border-color: var(--teal-h);
}
[data-theme="studio-newsroom"] .sn-shop-input:focus {
  border-color: var(--teal);
}

/* ===== Page-builder block token bridge (Theme Data Contract V2) ===== */
/* Maps generic --vb-* block-renderer variables to studio-newsroom palette. */
[data-theme="studio-newsroom"] main {
  --vb-color-bg:          var(--bg);
  --vb-color-fg:          var(--fg);
  --vb-color-muted:       var(--muted-fg);
  --vb-color-surface:     var(--surface);
  --vb-color-border:      var(--border);
  --vb-color-primary:     var(--teal);
  --vb-color-primary-fg:  var(--on-teal);
  --vb-color-cta-btn-bg:  var(--teal);
  --vb-color-cta-btn-fg:  var(--on-teal);
  --vb-font-heading:      var(--heading);
  --vb-font-body:         var(--body);
}
