/* rklb.dev — space theme */
:root {
  --bg:        #10111e;
  --bg2:       #181929;
  --bg3:       #1e2035;
  --card:      #161726;
  --border:    #2a2b40;
  --accent:    #e05050;
  --accent2:   #b91c2c;
  --text:      #f0ece8;
  --text2:     #c8c4c0;
  --text3:     #7a7890;
  --success:   #4ade80;
  --failure:   #e05050;
  --suborbital:#60a5fa;
  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --tab-h:     56px;
  --max-w:     900px;
  --radius:    10px;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100dvh;
  padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom));
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Tab bar ── */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  z-index: 100;
}

.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
  padding: 6px 4px 4px;
  text-align: center;
}
.tab-bar a .icon {
  font-size: 20px;
  line-height: 1;
  filter: grayscale(1) brightness(2.5) contrast(0.7);
}
/* Active tab: keep metallic filter but slightly brighter - no raw color */
.tab-bar a.active .icon {
  filter: grayscale(1) brightness(3.5) contrast(0.8);
}
/* SVG tab icons */
.tab-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.tab-bar a.active .tab-svg {
  opacity: 1;
}
.tab-bar a.active { color: var(--text); }
.tab-bar a:hover  { color: var(--text); }

/* ── Page header ── */
.page-header {
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 90;
  padding: 0 16px;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-logo:hover { text-decoration: none; opacity: 0.85; }
.logo-dot { color: var(--text3); }
/* ticker removed */

/* ── Site footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 16px;
  margin-bottom: calc(60px + env(safe-area-inset-bottom));
}
.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text3);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-links a {
  color: var(--text3);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-icon {
  width: 18px;
  height: 18px;
}

/* ── Main content ── */
.main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 16px;
}

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.pill:hover { border-color: var(--text3); color: var(--text); text-decoration: none; }
.pill.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.filter-label {
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 4px;
  align-self: center;
}

/* ── Stats bar ── */
.stats-bar {
  display: flex;
  column-gap: 20px;
  row-gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  align-items: flex-start;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-val {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Economics stat group ── */
a.stat-econ-group {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 12px;
  position: relative;
  border-left: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-left: 10px;
  cursor: pointer;
}
a.stat-econ-group:hover { border-left-color: var(--accent); }
a.stat-econ-group:hover .stat-val { opacity: 0.8; }
a.stat-econ-group:hover .econ-arrow { color: var(--accent); }
.econ-arrow {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 0.65rem;
  color: var(--text3);
  line-height: 1;
  transition: color 0.15s;
}
.econ-year {
  position: absolute;
  top: -12px;
  left: 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.65;
  line-height: 1;
}

/* ── Launch cards ── */
.launches-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.launch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 36px 64px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  color: inherit;
}
.launch-card:hover {
  border-color: var(--text3);
  background: var(--bg3);
  text-decoration: none;
}

/* Flight number column to the left of patch */
.flight-num-col {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text3);
  text-align: right;
  letter-spacing: 0.01em;
  line-height: 1;
  flex-shrink: 0;
}

.launch-patch {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.launch-patch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.launch-info {
  min-width: 0;
}
.launch-mission {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.launch-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text2);
}
.lv-pill {
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lv-electron { background: rgba(224,80,80,0.15); color: var(--accent); }
.lv-haste    { background: rgba(96,165,250,0.15); color: var(--suborbital); }
.program-scale {
  padding: 2px 7px;
  border: 1px solid rgba(96,165,250,0.4);
  border-radius: 10px;
  background: rgba(96,165,250,0.1);
  color: var(--suborbital);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.launch-outcome {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.outcome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.outcome-success    { background: var(--success); }
.outcome-failure    { background: var(--failure); }
.outcome-suborbital { background: var(--suborbital); }
.outcome-upcoming   { background: var(--accent2); }
.outcome-other      { background: var(--text3); }
.launch-date-col {
  font-size: 0.7rem;
  color: var(--text3);
  text-align: right;
  white-space: nowrap;
}
/* arrow icon for RL-linked cards */
.ext-link-hint {
  font-size: 0.6rem;
  color: var(--text3);
  line-height: 1;
}



/* ── Empty state ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text3);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: 0.9rem; }

/* ── Placeholder page ── */
.placeholder-page {
  text-align: center;
  padding: 80px 20px;
}
.placeholder-page .icon { font-size: 4rem; margin-bottom: 16px; }
.placeholder-page h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}
.placeholder-page p {
  color: var(--text3);
  font-size: 0.9rem;
}

/* ── About page ── */
.about-section {
  margin-bottom: 28px;
}
.about-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  margin-bottom: 12px;
}
.about-body {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
}
.citation-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.citation-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}
.citation-body {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 6px;
}
.citation-body a { color: var(--text2); text-decoration: underline; }
.citation-meta {
  font-size: 0.7rem;
  color: var(--text3);
}
/* GoFundMe custom card */
.gfm-wrap {
  margin-top: 12px;
}
.gfm-card {
  background: rgba(185,28,44,0.10);
  border: 1px solid rgba(224,80,80,0.30);
  border-radius: 10px;
  padding: 16px 18px;
}
.gfm-header {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 8px;
}
.gfm-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}
.gfm-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.gfm-btn:hover { opacity: 0.85; text-decoration: none; }
.legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text2);
}

/* ── Patches gallery ── */
.patches-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.patches-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
}
.patches-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}
.patches-shop-btn:hover { opacity: 0.85; text-decoration: none; }
.patches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.patch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.patch-item:hover .patch-img-wrap { border-color: var(--accent); }
.patch-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.15s;
  position: relative;
}
.patch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Shop available indicator */
.patch-shop-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(224,80,80,0.7);
  flex-shrink: 0;
}
.patch-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.patch-flight {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text3);
  letter-spacing: 0.02em;
}
.patch-shop-dot.coming-soon {
  background: #888;
  box-shadow: 0 0 6px rgba(136,136,136,0.5);
}
.patch-shop-badge.coming-soon {
  color: #999;
  background: rgba(136,136,136,0.1);
  border-color: rgba(136,136,136,0.3);
}
.patch-shop-dot.out-of-stock {
  background: #c87020;
  box-shadow: 0 0 6px rgba(200,112,32,0.5);
}
.patch-shop-badge.out-of-stock {
  color: #c87020;
  background: rgba(200,112,32,0.1);
  border-color: rgba(200,112,32,0.3);
}
.patch-shop-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(224,80,80,0.12);
  border: 1px solid rgba(224,80,80,0.35);
  border-radius: 4px;
  padding: 1px 5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.patch-name {
  font-size: 0.72rem;
  color: var(--text2);
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}

/* Failed pill - red accent */
.pill-failed { border-color: rgba(224,80,80,0.4); color: var(--failure); }
.pill-failed:hover { border-color: var(--failure); color: var(--failure); }
.pill-failed.active { background: var(--failure); color: #fff; border-color: var(--failure); }

/* Patches button in filter bar */
.pill-patches {
  margin-left: auto;
  background: transparent;
  border-color: var(--border);
  color: var(--text2);
  gap: 5px;
}
.pill-patches:hover { border-color: var(--accent); color: var(--accent); }

/* Disabled pills (greyed, not clickable) */
.pill-disabled {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text3);
  opacity: 0.4;
  cursor: not-allowed;
  white-space: nowrap;
  user-select: none;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .launch-card {
    grid-template-columns: 28px 54px 1fr auto;
    gap: 8px;
    padding: 8px 10px;
  }
  .launch-patch {
    width: 54px;
    height: 54px;
  }
  .flight-num-col { font-size: 0.7rem; }
  .stats-bar { column-gap: 12px; row-gap: 10px; }
  .stat-val { font-size: 1.35rem; }
  a.stat-econ-group { padding-top: 14px; }
  a.stat-econ-group .econ-year { top: 0px; }
  a.stat-econ-group .econ-arrow { top: 2px; }
}

/* Ensure HTML hidden attribute is respected even on flex elements */
.next-launch-bar [hidden] { display: none !important; }

/* ── Next Launch Countdown Bar ── */
.next-launch-bar {
  background: linear-gradient(135deg, #1a1030 0%, #12121a 50%, #1a1030 100%);
  border-bottom: 1px solid rgba(200,80,80,0.2);
  border-top: 1px solid rgba(200,80,80,0.12);
  padding: 10px 16px;
  margin-bottom: 14px;
}
.next-launch-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nl-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nl-patch-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(224,80,80,0.35);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
a.nl-patch-wrap:hover {
  border-color: rgba(224,80,80,0.8);
  box-shadow: 0 0 8px rgba(224,80,80,0.3);
  text-decoration: none;
}
.nl-patch {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}
.nl-text {
  min-width: 0;
}
.nl-eyebrow {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.95;
}
.nl-clock {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.nl-seg {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nl-num {
  font-size: 1.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(240,236,232,0.15);
}
.nl-unit {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 3px;
}
.nl-sep {
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--accent);
  opacity: 0.4;
  padding: 0 2px;
  align-self: center;
}

/* Status states */
.nl-status {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text2);
  gap: 6px;
  align-items: center;
}
.nl-status.status-open {
  color: var(--success);
}
.nl-status.status-awaiting {
  color: var(--text3);
}
.nl-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  flex-shrink: 0;
  animation: nlpulse 1.4s ease-in-out infinite;
}
@keyframes nlpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* Action buttons */
.nl-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nl-action-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  padding: 6px 8px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  position: relative;
}
.nl-action-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  text-decoration: none;
}
.nl-action-x {
  color: var(--text2);
}
.nl-action-x:hover {
  color: #1d9bf0;
  border-color: #1d9bf0;
  text-decoration: none;
}
/* YouTube webcast button */
.nl-action-webcast {
  background: rgba(255,0,0,0.08);
  border-color: rgba(255,0,0,0.25);
  color: #ff4444;
  gap: 5px;
  font-size: 0 !important;
  padding: 6px 10px;
}
.nl-action-webcast:hover:not(.nl-action-tbd) {
  background: rgba(255,0,0,0.18);
  border-color: #ff4444;
  color: #ff4444;
  text-decoration: none;
}
.nl-action-tbd {
  opacity: 0.38;
  cursor: default;
}
a.nl-action-tbd { pointer-events: none; }
.nl-webcast-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: inherit;
}

/* Desktop-only buttons (hidden on mobile) */
.nl-desktop-only { /* shown by default, hidden via media query */ }

/* Info popover */
#nlInfoBtn {
  font-size: 0;
}
.nl-popover {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-width: 230px;
  text-align: left;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: none;
}
#nlInfoBtn:hover .nl-popover,
#nlInfoBtn:focus .nl-popover,
.nl-popover.nl-popover-open {
  display: block;
  pointer-events: auto;
}
.nl-pop-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.nl-pop-window {
  font-size: 0.72rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--text3);
  line-height: 1.7;
  white-space: pre-line;
}
/* Extra links inside popover (visible on all sizes, useful on mobile) */
.nl-pop-links {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nl-pop-link {
  font-size: 0.75rem;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nl-pop-link:hover {
  color: var(--accent);
}

/* Window open animation on bar */
.next-launch-bar.window-open {
  animation: windowglow 2s ease-in-out infinite alternate;
}
@keyframes windowglow {
  from { border-bottom-color: rgba(74,222,128,0.2); border-top-color: rgba(74,222,128,0.1); }
  to   { border-bottom-color: rgba(74,222,128,0.5); border-top-color: rgba(74,222,128,0.35); }
}

@media (max-width: 540px) {
  /* Mobile: hide secondary buttons — keep ⓘ + X + YouTube */
  .nl-desktop-only { display: none !important; }
  /* Popover: right-align from ⓘ button, but clamp so it doesn't overflow viewport */
  .nl-popover { right: 0; left: auto; min-width: 0; width: 230px; max-width: calc(100vw - 24px); }
  /* Slightly smaller clock numbers */
  .nl-num { font-size: 1.45rem; }
  /* Webcast: icon only */
  .nl-webcast-label { display: none; }
  .nl-action-webcast { padding: 6px 8px; }
  /* Tighter button gap */
  .nl-actions { gap: 6px; }
}
