/* ============================================
   Before The Data — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Microgramma';
  src: url('https://btd-medias.b-cdn.net/images/btd/fonts/Microgramma.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MicrogrammaDBolExt';
  src: url('https://btd-medias.b-cdn.net/images/btd/fonts/Microgramma.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --tx-1: #000000;
  --tx-2: #222222;
  --tx-3: #888888;
  --bd: #e0e0e0;
  --acc: #000000;
  --sidebar-w: 230px;
  --player-h: 56px;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--tx-2);
  line-height: 1.5;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   PLAYER BAR (fixed top)
   ============================================ */
/* ── Player Bar (Hillydilly-style) ── */
#player-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--player-h);
  background: var(--bg);
  border-bottom: 1px solid var(--bd);
  display: flex; align-items: center;
  padding: 0;
  z-index: 1000;
}

/* Brand — sits inside the sidebar width, left of the divider */
.player-brand {
  width: var(--sidebar-w);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--bd);
  height: 100%;
  text-decoration: none;
}
.player-brand img {
  height: 36px; width: auto; display: block;
}

/* Controls — start right of the sidebar divider */
#player-bar .player-controls {
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
  padding: 0 12px 0 16px;
}
#player-bar .player-controls button {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-2);
  border-radius: 50%;
  transition: background .15s, color .15s;
}
#player-bar .player-controls button svg { width: 20px; height: 20px; }
#player-bar .player-controls button:hover { background: var(--bg-2); }
#player-bar .player-controls .play-btn {
  width: 44px; height: 44px;
  background: transparent; color: var(--tx);
  border-radius: 50%; font-size: 20px; padding-left: 3px;
}
#player-bar .player-controls .play-btn svg { width: 22px; height: 22px; }
#player-bar .player-controls .play-btn:hover { background: var(--bg-2); }

/* Center — art + title + progress */
.player-center {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0; padding-right: 16px;
}
.player-center .player-art {
  width: 36px; height: 36px;
  border-radius: 3px; object-fit: cover;
  background: var(--bg-2); flex-shrink: 0;
  display: none; /* hidden until a track loads */
}
.player-center .player-art.has-art { display: block; }
#player-bar .player-info {
  display: flex; flex-direction: column; gap: 1px;
  min-width: 0; flex-shrink: 0; max-width: 260px;
}
#player-bar .player-info .player-title {
  font-size: 13px; font-weight: 500; color: var(--tx);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#player-bar .player-info .player-source,
#player-bar .player-info a.player-source {
  font-size: 10px; color: var(--tx-3);
  text-transform: uppercase; letter-spacing: .6px;
  text-decoration: none; font-weight: 500;
}
#player-bar .player-info a.player-source:hover { color: var(--acc); }
.player-progress-wrap {
  flex: 1; min-width: 0;
  display: flex; align-items: center;
  background: var(--bg-2);
  height: 100%;
  padding: 0 16px;
  border-left: 1px solid var(--bd);
}
#player-bar .player-progress {
  width: 100%; height: 3px;
  background: var(--bd); border-radius: 2px; cursor: pointer;
}
#player-bar .player-progress-fill {
  height: 100%; background: var(--tx-3);
  width: 0%; transition: width .3s linear; border-radius: 2px;
}

/* Right zone — volume button then empty sidebar-width gap */
#player-bar .player-right {
  display: flex; align-items: center; justify-content: flex-start;
  flex-shrink: 0;
  width: calc(56px + var(--sidebar-w));
  padding: 0 0 0 8px;
  background: transparent;
  height: 100%;
  position: relative;
}
#player-bar .player-right-shade { display: none; }

#player-bar .player-right .volume-btn {
  color: var(--tx-3);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  transition: background .15s, color .15s; flex-shrink: 0;
  position: relative;
}
#player-bar .player-right .volume-btn svg { width: 24px; height: 24px; }
#player-bar .player-right .volume-btn:hover { background: var(--bg-2); color: var(--tx-2); }

/* Volume popup — drops DOWN below the bar */
.volume-popup {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  padding: 12px 10px;
  display: none; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2000;
  width: 36px;
}
.volume-popup.open { display: flex; }
.volume-popup .volume-label {
  font-size: 10px; color: var(--tx-3); font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
}
.volume-slider {
  -webkit-appearance: slider-vertical; appearance: slider-vertical;
  writing-mode: vertical-lr; direction: rtl;
  width: 4px; height: 72px;
  background: var(--bd); border-radius: 2px; outline: none; cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  background: var(--tx-2); border-radius: 50%; cursor: pointer;
}
/* Player bar search — hidden until search icon clicked */
.player-search-wrap {
  position: relative;
  flex-shrink: 0;
}
.player-search-input {
  width: 0; overflow: hidden;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 12px;
  background: var(--bg-2);
  color: var(--tx-1);
  outline: none;
  transition: width .2s ease, padding .2s ease, border-color .2s ease;
  opacity: 0;
}
.player-search-wrap.search-open .player-search-input {
  width: 200px; padding: 0 10px;
  border-color: var(--bd); opacity: 1;
}
.player-search-wrap.search-open .player-search-input:focus { border-color: var(--acc); }
.player-search-input::placeholder { color: var(--tx-3); }
.player-search-results {
  position: absolute; top: 36px; right: 0;
  width: 280px;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 2000;
  max-height: 360px;
  overflow-y: auto;
  display: none;
}
.player-search-results.open { display: block; }
.player-search-result {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background .1s;
}
.player-search-result:hover { background: var(--bg-2); }
.player-search-result img {
  width: 36px; height: 36px; border-radius: 4px; object-fit: cover; flex-shrink: 0;
}
.player-search-result .psr-info { min-width: 0; }
.player-search-result .psr-title {
  font-size: 13px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-search-result .psr-artist {
  font-size: 11px; color: var(--tx-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Hide search on small screens */
@media (max-width: 767px) {
  .player-search-wrap { display: none; }
}

/* ============================================
   SIDEBAR
   ============================================ */
#sidebar {
  position: fixed; top: var(--player-h); left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg);
  border-right: 1px solid var(--bd);
  display: flex; flex-direction: column;
  z-index: 900;
  padding: 24px 0;
  overflow-y: auto;
}
#sidebar .sidebar-brand {
  padding: 0 24px; margin-bottom: 8px;
  display: flex; align-items: center;
  text-decoration: none;
}
#sidebar .sidebar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--tx-1);
}
#sidebar .sidebar-user {
  padding: 12px 24px 16px;
  font-size: 13px; font-weight: 500; color: var(--tx-2);
  border-bottom: 1px solid var(--bd);
  margin-bottom: 16px;
}
#sidebar nav { flex: 1; }
#sidebar nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  font-size: 14px; font-weight: 500;
  color: var(--tx-3);
  transition: color .15s, background .15s;
  border-left: 3px solid transparent;
}
#sidebar nav a:hover { color: var(--tx-2); background: var(--bg-2); }
#sidebar nav a.active {
  color: var(--acc); border-left-color: var(--acc); font-weight: 600;
}
#sidebar nav a .nav-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
/* ── Sidebar login block ── */
#sidebar-login-block {
  padding: 14px 24px;
  border-top: 1px solid var(--bd);
}
#sidebar-login-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--tx-2); cursor: pointer;
  background: none; border: none; padding: 0;
  letter-spacing: 0.3px;
}
#sidebar-login-btn:hover { color: var(--tx-1); }
#sidebar-login-btn .login-icon { font-size: 14px; }
#sidebar-account-info {
  font-size: 11px; color: var(--tx-3); line-height: 1.5;
}
#sidebar-account-info strong { color: var(--tx-2); font-size: 12px; display: block; margin-bottom: 2px; }
#sidebar-account-info .sidebar-logout {
  color: var(--tx-3); cursor: pointer; text-decoration: underline; font-size: 10px;
  background: none; border: none; padding: 0;
}

#sidebar .sidebar-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--bd);
  display: flex; flex-wrap: wrap; gap: 8px 16px;
}
#sidebar .sidebar-footer a {
  font-size: 11px; color: var(--tx-3);
}
#sidebar .sidebar-footer a:hover { color: var(--tx-2); }

/* Account tab — mobile bottom nav only, hidden on desktop */
#btd-mobile-account-tab { display: none; }
@media (max-width: 767px) {
  #btd-mobile-account-tab { display: flex; }
  /* Kill 300ms iOS tap delay on all nav items */
  #sidebar nav a, #btd-mobile-account-tab { touch-action: manipulation; }
}

/* ── Mobile top bar ── */
#btd-mobile-topbar {
  display: none;
}
@media (max-width: 767px) {
  #btd-mobile-topbar {
    display: flex;
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 48px;
    align-items: center; justify-content: space-between;
    padding: 0 16px;
    background: var(--bg-1);
    border-bottom: 1px solid var(--bd);
  }
  #btd-mobile-topbar .mtb-brand {
    font-size: 13px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; color: var(--tx-1); text-decoration: none;
  }
  #btd-mobile-topbar .mtb-account-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-2); border: 1px solid var(--bd);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer; color: var(--tx-2);
    position: relative;
  }
  #btd-mobile-topbar .mtb-account-btn.logged-in {
    background: var(--tx-1); color: var(--bg-1); border-color: var(--tx-1);
    font-size: 11px; font-weight: 700;
  }
  /* No mobile top bar — account accessible via bottom nav */
}

/* ── Mobile account dropdown ── */
#btd-mobile-account-menu {
  display: none;
  position: fixed; top: 56px; right: 12px; z-index: 300;
  background: var(--bg-1); border: 1px solid var(--bd);
  padding: 14px 18px; min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
#btd-mobile-account-menu.visible { display: block; }
#btd-mobile-account-menu .mam-email { font-size: 13px; font-weight: 700; color: var(--tx-1); margin-bottom: 2px; }
#btd-mobile-account-menu .mam-tier { font-size: 11px; color: var(--tx-3); margin-bottom: 12px; }
#btd-mobile-account-menu a, #btd-mobile-account-menu button {
  display: block; font-size: 12px; color: var(--tx-2);
  text-decoration: underline; background: none; border: none;
  cursor: pointer; padding: 3px 0;
}

/* ── Site auth modal ── */
#btd-auth-modal {
  position: fixed; inset: 0; z-index: 9100;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6);
}
#btd-auth-modal.visible { display: flex; }
#btd-auth-modal .am-card {
  background: #ffffff; color: #111111;
  padding: 36px 32px; max-width: 380px; width: 90%;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  border-radius: 2px;
}
#btd-auth-modal .am-title {
  font-size: 20px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin: 0 0 8px;
}
#btd-auth-modal .am-sub {
  font-size: 13px; color: #666; margin: 0 0 20px; line-height: 1.5;
}
#btd-auth-modal .am-input {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd;
  background: #f8f8f8; color: #111;
  font-size: 14px; outline: none; box-sizing: border-box; margin-bottom: 10px;
}
#btd-auth-modal .am-input:focus { border-color: #111; }
#btd-auth-modal .am-btn {
  width: 100%; padding: 13px; background: #111111; color: #ffffff;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border: none; cursor: pointer;
}
#btd-auth-modal .am-btn:hover { opacity: 0.85; }
#btd-auth-modal .am-note {
  font-size: 11px; color: #888; text-align: center;
  margin: 12px 0 0; line-height: 1.5;
}
#btd-auth-modal .am-note a { color: #444; }
#btd-auth-modal .am-dismiss {
  display: block; text-align: center; margin-top: 14px;
  font-size: 12px; color: #888; cursor: pointer;
  background: none; border: none;
}
#btd-auth-modal .am-dismiss:hover { color: #111; }
#btd-auth-modal .am-success { text-align: center; padding: 8px 0; }
#btd-auth-modal .am-success p { font-size: 14px; color: #333; line-height: 1.6; }

/* ============================================
   MAIN CONTENT
   ============================================ */
#main {
  margin-left: var(--sidebar-w);
  margin-top: var(--player-h);
  min-height: calc(100vh - var(--player-h));
  padding: 0 40px 60px;
}

/* --- Section Headers --- */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--acc);
  padding: 24px 0 8px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-header .updated {
  font-size: 12px; color: var(--tx-3);
}

/* ============================================
   NEW MUSIC — Horizontal Scroll
   ============================================ */
.music-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.music-scroll::-webkit-scrollbar { display: none; }
.scroll-view-more {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-3);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 8px;
  transition: color .15s;
}
.scroll-view-more:hover { color: var(--tx-1); }

.music-card {
  flex: 0 0 170px;
  scroll-snap-align: start;
  cursor: pointer;
}
.music-card .card-art {
  position: relative;
  width: 170px; height: 170px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
}
.music-card .card-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .2s;
}
.music-card .card-art:hover img { transform: scale(1.05); }
.music-card .card-art .play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0; transition: opacity .2s;
}
.music-card .card-art:hover .play-overlay { opacity: 1; }
/* Keep overlay visible + show pause when this card is actively playing */
.music-card .card-art.is-playing .play-overlay { opacity: 1; }
.play-overlay .play-circle {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--tx-1);
}
/* Swap ▶ to ⏸ when playing */
.card-art.is-playing .play-circle { font-size: 0; }
.card-art.is-playing .play-circle::before { content: '⏸'; font-size: 18px; color: var(--tx-1); }
.music-card .card-title {
  display: block;
  margin-top: 8px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  cursor: pointer; text-decoration: none; color: var(--tx-1);
}
.music-card .card-title:hover { text-decoration: underline; }
.music-card .card-artist {
  display: block;
  font-size: 12px; color: var(--tx-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  cursor: pointer; text-decoration: none;
}
.music-card .card-artist:hover { text-decoration: underline; }
.card-flag { font-size: 12px; margin-left: 4px; vertical-align: middle; }

/* ============================================
   CHARTS / POPULAR LIST
   ============================================ */
.chart-list { margin-top: 8px; }
.chart-row {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-2);
  transition: background .15s;
  cursor: pointer;
}
.chart-row:hover { background: var(--bg-2); }
.chart-rank {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--acc);
  width: 32px; text-align: center; flex-shrink: 0;
}
/* Chart play button is now overlaid on art — hide standalone button */
.chart-play { display: none; }
.chart-art-wrap {
  position: relative; flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 4px; overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}
.chart-art {
  width: 48px; height: 48px;
  border-radius: 4px; object-fit: cover;
  display: block;
}
.chart-art-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.chart-row:hover .chart-art-overlay,
.chart-art-wrap.is-playing .chart-art-overlay { opacity: 1; }
.chart-art-overlay .chart-play-circle {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #000; padding-left: 1px;
}
.chart-info { flex: 1; min-width: 0; }
.chart-info .chart-artist {
  font-size: 13px; color: var(--tx-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chart-info .chart-title {
  font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chart-actions {
  display: flex; gap: 12px; flex-shrink: 0;
}
.chart-actions button {
  color: var(--tx-3); font-size: 16px;
  transition: color .15s;
}
.chart-actions button:hover { color: var(--tx-2); }

/* ============================================
   NEW MUSIC PAGE — Grid
   ============================================ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.music-grid .music-card { flex: none; width: auto; }
.music-grid .music-card .card-art { width: 100%; height: 0; padding-bottom: 100%; }
.music-grid .music-card .card-art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.music-grid .music-card .card-art .play-overlay { position: absolute; }
.music-grid .card-date { font-size: 11px; color: var(--tx-3); margin-top: 4px; }

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-container { max-width: 700px; }
.search-input-wrap {
  position: relative; margin-bottom: 32px;
}
.search-input-wrap input {
  width: 100%; padding: 14px 20px 14px 48px;
  font-size: 16px; font-family: var(--font-body);
  border: 2px solid var(--bd); border-radius: 8px;
  outline: none; transition: border-color .15s;
  background: var(--bg);
}
.search-input-wrap input:focus { border-color: var(--acc); }
.search-input-wrap .search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 20px; color: var(--tx-3);
}
.search-results { display: flex; flex-direction: column; gap: 12px; }
.search-result {
  display: flex; align-items: center; gap: 16px;
  padding: 12px; border-radius: 8px;
  transition: background .15s; cursor: pointer;
}
.search-result:hover { background: var(--bg-2); }
.search-result img {
  width: 56px; height: 56px; border-radius: 4px; object-fit: cover;
  background: var(--bg-2); flex-shrink: 0;
}
.search-result .result-info { flex: 1; min-width: 0; }
.search-result .result-artist {
  font-size: 13px; color: var(--tx-3);
}
.search-result .result-title {
  font-size: 15px; font-weight: 600;
}
.search-result .result-date {
  font-size: 11px; color: var(--tx-3);
}

/* ============================================
   POST DETAIL
   ============================================ */

/* Post page: grey body, hero flush to player bar */
body[data-page="post"] {
  background: var(--bg-2);
}
body[data-page="post"] #main {
  background: var(--bg-2);
  position: fixed !important;
  top: var(--player-h) !important;
  left: var(--sidebar-w) !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 0 var(--sidebar-w) 60px 0 !important;
  width: auto !important;
  min-height: unset !important;
}

/* The post card — fills content area, flush to top */
#post-content {
  background: var(--bg);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  overflow: hidden;
  width: 100%;
}

.post-hero {
  position: relative;
  margin: 0;
  padding: 40px;
  display: flex; gap: 0;
  align-items: flex-end;
  background: var(--bg-2);
  overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: -20px;
  background-size: cover; background-position: center;
  filter: blur(28px) brightness(.9);
  opacity: .9;
}
.post-art-wrap {
  position: relative; z-index: 1;
  flex-shrink: 0;
  width: 280px; height: 280px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  overflow: hidden;
  cursor: pointer;
}
.post-art-wrap:hover .post-art-overlay,
.post-art-wrap.is-playing .post-art-overlay { opacity: 1; }
.post-art-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  border-radius: 8px;
}
.post-art-overlay .art-play-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #000;
  padding-left: 4px; /* optical center for ▶ */
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .15s ease;
}
.post-art-wrap:hover .art-play-circle { transform: scale(1.08); }
.post-hero-art {
  width: 280px; height: 280px;
  border-radius: 8px; object-fit: cover;
  display: block;
}
.post-hero-meta {
  position: relative; z-index: 1;
  flex: 1; min-width: 0;
  display: flex; align-items: stretch;
}
/* White card matches artwork height exactly */
.post-hero-card {
  background: #fff;
  border-radius: 0;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
  flex: 1; width: 100%;
  height: 280px;
  box-shadow: none;
  box-sizing: border-box;
}
.post-hero-card .post-title {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: #111; line-height: 1.1;
  margin: 0;
}
.post-hero-card .post-artist {
  font-size: 28px; font-weight: 700; color: #333;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: .5px; display: block;
}
.post-hero-card .post-artist:hover { color: #000; }
.post-hero-card .post-flag {
  font-size: 32px; line-height: 1; margin-top: 2px;
}
.post-hero-card .post-date {
  font-size: 12px; color: #666;
}
.post-hero-card .post-date-rel { color: var(--acc); font-weight: 600; }
.post-hero-card .post-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.post-hero-card .post-stream-links {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px;
}

.post-body-wrap {
  display: flex; gap: 40px; margin-top: 0;
  padding: 32px 40px 40px;
}
.post-body {
  flex: 1; min-width: 0;
  font-size: 16px; line-height: 1.75; color: var(--tx-2);
}
.post-body p { margin-bottom: 16px; }

/* ── Inline track player row (replaces Spotify embed) ── */
.post-inline-player {
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-2);
  border-radius: 8px;
  border: 1px solid var(--bd);
  cursor: pointer;
  transition: background 0.15s;
}
.post-inline-player:hover { background: var(--bg-3, #efefef); }
.pip-art-wrap {
  position: relative; flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 6px; overflow: hidden; cursor: pointer;
}
.pip-art {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .2s;
}
.pip-art-wrap:hover .pip-art { transform: scale(1.05); }
.pip-play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .15s;
  border-radius: 6px;
}
.pip-play-btn {
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #000; padding-left: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .15s;
  cursor: pointer;
}
.pip-art-wrap:hover .pip-play-btn { transform: scale(1.08); }
.pip-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pip-title {
  font-size: 15px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--tx-1);
}
.pip-artist { font-size: 13px; color: var(--tx-2); }
.pip-source {
  font-size: 11px; color: var(--tx-3);
  text-transform: uppercase; letter-spacing: .5px;
  text-decoration: none; margin-top: 2px;
}
.pip-source:hover { color: var(--acc); }

/* ── Comments ── */
.post-comments {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bd);
}
.comments-header h4 {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--tx-3); margin-bottom: 16px;
}
.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.comment-item { padding: 12px 0; border-bottom: 1px solid var(--bd); }
.comment-meta { font-size: 12px; color: var(--tx-3); margin-bottom: 4px; }
.comment-meta strong { color: var(--tx-2); margin-right: 8px; }
.comment-text { font-size: 14px; line-height: 1.6; color: var(--tx-2); }
.comment-empty { font-size: 13px; color: var(--tx-3); padding: 8px 0; }
.comments-gate { text-align: center; padding: 16px 0; }
.comments-gate p { font-size: 13px; color: var(--tx-3); margin-bottom: 12px; }
.comments-signin-btn {
  padding: 8px 20px; background: var(--acc); color: #fff;
  border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: opacity .15s;
}
.comments-signin-btn:hover { opacity: .85; }
.comment-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.comment-input {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--bd); border-radius: 6px;
  font-size: 14px; font-family: var(--font-body); color: var(--tx-2);
  background: var(--bg); resize: vertical; outline: none;
  transition: border-color .15s;
}
.comment-input:focus { border-color: var(--acc); }
.comment-submit {
  align-self: flex-end;
  padding: 8px 20px; background: var(--acc); color: #fff;
  border-radius: 4px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: opacity .15s;
}
.comment-submit:hover { opacity: .85; }
.comment-submit:disabled { opacity: .5; cursor: default; }

.post-spotify-embed {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
}
.post-spotify-embed iframe { display: block; border-radius: 12px; }

/* Spotify embed blocks inside post write-ups */
.btd-tracks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btd-track-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.btd-track-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btd-track-embed iframe {
  display: block;
  border-radius: 8px;
}

.post-tracklist { margin-top: 32px; }
.post-tracklist h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px;
}
.track-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--bd);
  cursor: pointer; transition: background .15s;
}
.track-row:hover { background: var(--bg-2); }
.track-row .track-play {
  width: 28px; height: 28px;
  border: 2px solid var(--tx-3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--tx-3);
  flex-shrink: 0; transition: border-color .15s, color .15s;
}
.track-row:hover .track-play { border-color: var(--acc); color: var(--acc); }
.track-row .track-name { font-size: 14px; font-weight: 500; flex: 1; }
.track-row .track-artist-name { font-size: 12px; color: var(--tx-3); }
.track-embed { padding: 6px 0; border-bottom: 1px solid var(--bd); }
.track-embed iframe { border-radius: 6px; display: block; }

.post-sidebar {
  width: 220px; flex-shrink: 0;
}
.post-sidebar section { margin-bottom: 28px; }
.post-sidebar h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--tx-3); margin-bottom: 12px;
}
.post-sidebar .written-by {
  display: flex; align-items: center; gap: 12px;
}
.post-sidebar .written-by .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-2); display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 600;
}
.post-sidebar .written-by .author-name { font-size: 14px; font-weight: 600; }
.post-sidebar .written-by .author-location { font-size: 12px; color: var(--tx-3); }
.post-sidebar .next-post, .post-sidebar .related-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; cursor: pointer;
}
.post-sidebar .next-post img, .post-sidebar .related-item img {
  width: 48px; height: 48px; border-radius: 4px; object-fit: cover;
  background: var(--bg-2); flex-shrink: 0;
}
.post-sidebar .related-item .rel-title { font-size: 13px; font-weight: 600; }
.post-sidebar .related-item .rel-artist { font-size: 12px; color: var(--tx-3); }

/* ============================================
   EMPTY / LOADING STATES
   ============================================ */
.loading-msg {
  text-align: center; padding: 60px 0;
  color: var(--tx-3); font-size: 14px;
}
/* Post hero has dark placeholder while Firebase loads — no white flash */
.post-hero {
  min-height: 280px;
  background: #1a1a1a;
}
.post-hero .loading-msg {
  color: rgba(255,255,255,.4);
}

/* ============================================
   MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {
  #sidebar {
    position: fixed; top: auto; left: 0; right: 0; bottom: 0;
    width: 100%; height: 60px;
    flex-direction: row; padding: 0;
    border-right: none; border-top: 1px solid var(--bd);
    overflow: visible;
  }
  #sidebar .sidebar-brand,
  #sidebar .sidebar-user,
  #sidebar .sidebar-footer,
  #sidebar-login-block { display: none; }
  #sidebar nav {
    display: flex; width: 100%;
    align-items: center; justify-content: space-around;
  }
  #sidebar nav a {
    flex-direction: column; gap: 2px;
    padding: 8px 0; font-size: 10px;
    border-left: none; border-top: 2px solid transparent;
    text-align: center;
  }
  #sidebar nav a.active { border-left-color: transparent; border-top-color: var(--acc); }
  #sidebar nav a .nav-icon { font-size: 20px; }
  #sidebar nav a[href='/search.html'],
  #sidebar nav a[href='search.html'],
  #sidebar nav a[href='/search'],
  #sidebar nav a[href='search'] { display: none !important; }
  /* Hide Submit Music on mobile — accessible via desktop sidebar + direct URL */
  #sidebar nav a[href='/submit.html'],
  #sidebar nav a[href='submit.html'],
  #sidebar nav a[href='/submit'],
  #sidebar nav a[href='submit'] { display: none !important; }

  /* Archive — desktop sidebar only, not in mobile bottom nav */
  #sidebar nav a[href='/archive'],
  #sidebar nav a[href='archive'],
  #sidebar nav a[href='/archive.html'] { display: none !important; }

  #main {
    margin-left: 0;
    margin-top: 0;
    padding: calc(var(--player-h) + 12px) 16px 80px;
  }
  /* Discover page only: extra padding for fixed search bar (~58px tall) */
  body[data-page="discover"] #main {
    padding-top: calc(var(--player-h) + 70px);
  }
  .section-header { margin-bottom: 14px; padding-top: 0; }
  .music-scroll { gap: 12px; }

  /* ── Post page mobile ── */
  body[data-page="post"] #main {
    left: 0 !important;
    padding: 0 0 80px 0 !important;
  }

  /* Hero: stacked, full-width art on top */
  .post-hero {
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 0;
    align-items: stretch;
  }
  .post-art-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .post-hero-art { width: 100%; height: 100%; object-fit: cover; }

  /* Info card below the art */
  .post-hero-meta { display: block; }
  .post-hero-card {
    height: auto;
    padding: 20px 16px 16px;
    border-radius: 0;
    gap: 8px;
    background: var(--bg);
    border-bottom: 1px solid var(--bd);
  }
  .post-hero-card .post-title { font-size: 28px; line-height: 1.1; }
  .post-hero-card .post-artist { font-size: 18px; }
  .post-hero-card .post-flag { font-size: 22px; }
  .post-hero-card .post-stream-links { margin-top: 8px; }

  /* Body: single column, no sidebar */
  .post-body-wrap {
    flex-direction: column;
    gap: 0;
    padding: 20px 16px 0;
  }
  .post-body { font-size: 15px; line-height: 1.7; }
  .post-sidebar { width: 100%; padding-top: 24px; }

  /* Genre pills */
  .post-hero-card .post-tags .genre-pill {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
  .list-genres .genre-pill {
    padding: 4px 10px;
    font-size: 10px;
  }

  .post-body-wrap { flex-direction: column; }
  .post-sidebar { width: 100%; }

  .music-card { flex: 0 0 140px; }
  .music-card .card-art { width: 140px; height: 140px; }

  /* Mobile player bar — hide desktop-only elements, clean layout */
  #player-bar .player-brand { display: none; }
  #player-bar .player-right { width: auto; padding: 0 8px; }
  #player-bar .player-right .volume-btn { display: none; }
  #player-bar .player-info .player-source { display: none; }

  #player-bar {
    padding: 0 12px;
    gap: 8px;
  }
  #player-bar .player-controls {
    padding: 0 4px 0 0;
    gap: 4px;
  }
  #player-bar .player-controls button {
    width: 32px; height: 32px;
    font-size: 14px;
    background: none;
    border: none;
  }
  #player-bar .player-controls .play-btn {
    width: 38px; height: 38px;
    font-size: 16px;
  }
  #player-bar .player-controls svg {
    width: 15px; height: 15px;
  }
  #player-bar .player-art {
    width: 34px; height: 34px;
  }
  #player-bar .player-info {
    max-width: 150px;
  }
  #player-bar .player-info .player-title {
    font-size: 12px;
  }
  .player-progress-wrap {
    display: none;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.mt-40 { margin-top: 40px; }
.hidden { display: none !important; }

/* ============================================
   YOUTUBE PLAYER MODAL
   ============================================ */
#yt-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
#yt-modal.open { opacity: 1; pointer-events: all; }
.yt-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
}
.yt-panel {
  position: relative; z-index: 1;
  background: var(--tx-1);
  border-radius: 12px;
  overflow: hidden;
  width: min(600px, 95vw);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  transform: translateY(20px);
  transition: transform .25s ease;
}
#yt-modal.open .yt-panel { transform: translateY(0); }
.yt-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
}
.yt-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; letter-spacing: .03em; }
.yt-artist { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.yt-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; flex-shrink: 0;
  transition: background .15s;
}
.yt-close:hover { background: rgba(255,255,255,.3); }
.yt-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.yt-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Explicit badge */
.explicit {
  display: inline-block;
  font-size: 9px; font-weight: 700;
  background: var(--tx-3); color: #fff;
  padding: 1px 4px; border-radius: 3px;
  vertical-align: middle; margin-left: 4px;
}

/* ============================================
   POST PAGE — STREAM LINKS + SOCIAL PILLS
   ============================================ */
.post-stream-links {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin: 14px 0 10px;
}
.post-play-btn {
  background: rgba(255,255,255,0.95); color: #111;
  border: none; border-radius: 20px;
  padding: 8px 18px; font-size: 13px; font-weight: 700;
  cursor: pointer; letter-spacing: .03em;
  transition: all .15s; white-space: nowrap;
}
.post-play-btn:hover { background: #fff; transform: scale(1.03); }
.stream-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 16px; border-radius: 20px; font-size: 12px;
  font-weight: 700; letter-spacing: .04em; text-decoration: none;
  transition: opacity .15s; white-space: nowrap;
}
.stream-pill:hover { opacity: .85; }
.spotify-pill { background: #1DB954; color: #fff; }
.apple-pill { background: #fff; color: #000; }
.post-socials { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 12px; }
.social-pill {
  display: inline-block; padding: 5px 14px; border-radius: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; background: rgba(0,0,0,.65);
  color: #fff; border: 1px solid rgba(255,255,255,.2);
  transition: background .15s;
}
.social-pill:hover { background: rgba(0,0,0,.85); }

/* ============================================
   NEW MUSIC — LIST VIEW
   ============================================ */

.view-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.view-toggle button {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--tx-3);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.view-toggle button.active {
  border-color: var(--tx-2);
  color: var(--tx-1);
}

/* List view container */
#music-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* List item */
.music-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bd);
  cursor: pointer;
  transition: background 0.15s;
}

.music-list-item:hover {
  background: var(--bg-2);
}

.music-list-item .list-art {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}

.music-list-item .list-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-list-item .list-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 1;
  transition: opacity 0.15s;
}

.music-list-item:hover .list-play-overlay,
.music-list-item.playing .list-play-overlay {
  opacity: 1;
}

.music-list-item .list-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-list-item .list-info {
  flex: 1;
  min-width: 0;
}

.music-list-item .list-artist {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tx-3);
  margin-bottom: 4px;
}

.music-list-item .list-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--tx-1);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-list-item .list-writeup {
  font-size: 13px;
  color: var(--tx-3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.music-list-item .list-date {
  font-size: 11px;
  color: var(--tx-3);
  margin-top: 6px;
}

/* ============================================
   NEW MUSIC — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .music-list-item .list-art {
    width: 100px;
    height: 100px;
  }
}

/* ── Genre Pills & Filter Bar ─────────────────────────────────── */
.genre-pill {
  display: inline-block;
  padding: 3px 10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-right: 6px;
  transition: opacity 0.15s;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.genre-pill:hover { opacity: 0.75; }
/* Card + list genre pills */
.card-genres{margin-top:6px;display:flex;flex-wrap:wrap;gap:4px;}
.card-genres .genre-pill{font-size:9px;padding:2px 7px;}
.list-genres{margin-top:4px;display:flex;flex-wrap:wrap;gap:4px;}
.list-genres .genre-pill{font-size:9px;padding:2px 7px;}


#genre-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}
.genre-btn {
  padding: 5px 12px;
  background: #f2f2f2;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.genre-btn:hover { background: #e0e0e0; }
.genre-btn.active { background: #000; color: #fff; }

.year-filter-wrap {
  position: relative;
  display: inline-block;
}
.year-pill { min-width: 68px; }
.year-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 100;
  padding: 4px 0;
  min-width: 80px;
  max-height: 260px;
  overflow-y: auto;
}
.year-dropdown.open { display: block; }
.year-option {
  display: block;
  width: 100%;
  padding: 6px 14px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  color: #222;
}
.year-option:hover { background: #f2f2f2; }
.year-option.active { background: #000; color: #fff; }

/* ── Artist Pages ─────────────────────────────────────────────── */
.artist-hero {
  padding: 0;
  margin-bottom: 0;
}
.artist-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
}
.artist-hero-art {
  width: 100px; height: 100px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.artist-hero-name {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.artist-hero-count {
  font-size: 13px;
  color: #888;
}
.artist-posts {
  padding: 0 24px 40px;
}

body.public-artist-page {
  background: #f3f2ee;
  color: #15130f;
}
body.public-artist-page #main {
  margin: 0;
  padding: 0;
  min-height: auto;
}
.public-artist-app {
  min-height: 100vh;
  padding: 18px 26px 34px;
}
.public-artist-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.public-dashboard-topbar {
  min-height: 68px;
  margin: 0 0 20px;
  padding: 13px 18px;
  background: #050403;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(20, 17, 12, .1);
}
.public-dashboard-top-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.public-dashboard-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
}
.public-dashboard-brand img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  flex-shrink: 0;
  object-fit: contain;
}
.public-dashboard-brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  font-family: 'Microgramma', 'MicrogrammaDBolExt', 'Bank Gothic', 'Eurostile Extended', 'Impact', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.05;
}
.public-dashboard-brand-text span:last-child {
  color: #E8574A;
}
.public-dashboard-context {
  min-width: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.public-dashboard-context span {
  display: block;
  margin-bottom: 3px;
  color: rgba(232,220,200,.58);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.public-dashboard-context strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}
.public-artist-pro-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #e8dcc8;
  background: rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 800;
}
.public-artist-main-shell {
  width: 100%;
  min-width: 0;
}
.public-dashboard-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(260px, 340px);
  gap: 22px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #e2ded6;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(20, 17, 12, .05);
  border-bottom: 1px solid #e2ded6;
}
.public-artist-photo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 32px;
}
.public-artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public-artist-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b43a2f;
  margin-bottom: 10px;
}
.public-artist-main h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: #15130f;
  margin: 0 0 12px;
}
.public-artist-main p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.55;
  color: #5d574f;
  margin: 0;
}
.public-artist-tags,
.public-artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.public-artist-tags span,
.public-artist-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #fff;
  color: #191713;
  font-size: 11px;
  font-weight: 700;
  padding: 0 10px;
}
.public-artist-links a {
  color: #b43a2f;
}
.public-artist-claim {
  border: 1px solid #d8d2c8;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(20, 17, 12, .06);
}
.public-artist-claim-hero {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.public-claim-label {
  font-size: 12px;
  font-weight: 800;
  color: #15130f;
  margin-bottom: 8px;
}
.public-artist-claim p {
  color: #655f55;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.public-artist-claim a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  background: #15130f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.public-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0;
  background: #f3f2ee;
}
.public-dashboard-card {
  background: #fff;
  border: 1px solid #e2ded6;
  border-radius: 10px;
  padding: 18px;
  min-height: 124px;
  box-shadow: 0 8px 24px rgba(20, 17, 12, .04);
}
.public-dashboard-card.is-primary {
  background: #15130f;
  border-color: #15130f;
}
.public-dashboard-card span,
.public-rec-card span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8c8477;
  margin-bottom: 10px;
}
.public-dashboard-card.is-primary span,
.public-dashboard-card.is-primary em {
  color: rgba(255,255,255,.58);
}
.public-dashboard-card strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  color: #15130f;
  line-height: 1;
}
.public-dashboard-card.is-primary strong {
  color: #fff;
}
.public-dashboard-card em {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  color: #2f7d4f;
}
.public-snapshot-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 14px;
  align-items: center;
  padding: 0 0 18px;
  background: #f3f2ee;
}
.public-snapshot-main,
.public-rec-card,
.public-claim-section {
  border: 1px solid #e2ded6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 17, 12, .04);
}
.public-snapshot-main {
  padding: 24px;
}
.public-snapshot-preview h2 {
  max-width: 720px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 12px;
  color: #15130f;
}
.public-snapshot-preview p {
  max-width: 680px;
  font-size: 14px;
  color: #655f55;
  line-height: 1.6;
  margin: 0;
}
.public-rec-card {
  padding: 24px;
}
.public-rec-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.45;
  color: #15130f;
}
.public-artist-empty {
  padding: 28px 40px 56px;
  color: #777;
  font-size: 14px;
}
.public-claim-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 34px;
  padding: 24px;
}
.public-claim-section span {
  display: block;
  margin-bottom: 8px;
  color: #b43a2f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.public-claim-section h2 {
  margin: 0 0 8px;
  color: #15130f;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}
.public-claim-section p {
  max-width: 720px;
  margin: 0;
  color: #655f55;
  font-size: 14px;
  line-height: 1.6;
}
.public-claim-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #15130f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* Artist name links — no underline, inherit color, pointer */
.list-artist, .card-artist, .post-artist {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.list-artist:hover, .card-artist:hover, .post-artist:hover {
  text-decoration: underline;
}

/* Artwork is clickable */
.list-art {
  cursor: pointer;
}

/* ── Chart Trend Arrows ───────────────────────────────────────── */
.chart-trend {
  font-size: 13px;
  font-weight: 700;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.trend-up   { color: #22c55e; } /* green */
.trend-down { color: #ef4444; } /* red */
.trend-neutral { color: #999; font-size: 11px; }

/* Remove old chart-actions styles */
.chart-actions { display: none; }

/* ── Artist page list fix ─────────────────────────────────────── */
.artist-posts .music-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}
.artist-posts .list-art {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.artist-posts .list-art img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.artist-posts .list-info {
  flex: 1;
  min-width: 0;
}

@media (max-width: 980px) {
  .public-dashboard-hero {
    grid-template-columns: 110px minmax(0, 1fr);
  }
  .public-artist-claim {
    grid-column: 1 / -1;
  }
  .public-artist-photo {
    width: 110px;
    height: 110px;
  }
  .public-artist-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .public-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .public-snapshot-preview {
    grid-template-columns: 1fr;
  }
  .public-artist-main h1 {
    font-size: 48px;
  }
  .public-snapshot-preview h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .public-artist-app {
    padding: 0 0 24px;
  }
  .public-artist-topbar {
    height: auto;
    min-height: 64px;
  }
  .public-dashboard-topbar {
    margin: 0;
    border-radius: 0;
    padding: 10px 18px;
  }
  .public-dashboard-top-left {
    gap: 12px;
  }
  .public-dashboard-brand img {
    width: 34px;
    height: 34px;
    margin-right: 9px;
  }
  .public-dashboard-brand-text {
    font-size: 13px;
  }
  .public-dashboard-context {
    display: none;
  }
  .public-dashboard-context strong {
    font-size: 15px;
  }
  .public-artist-pro-link {
    display: none;
  }
  .public-dashboard-hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .public-artist-photo {
    width: 92px;
    height: 92px;
    border-radius: 12px;
  }
  .public-artist-main h1 {
    font-size: 40px;
  }
  .public-dashboard-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .public-dashboard-card {
    min-height: 108px;
  }
  .public-snapshot-preview {
    padding: 0 18px 18px;
  }
  .public-artist-empty {
    padding: 24px 18px 48px;
  }
  .public-claim-section {
    flex-direction: column;
    align-items: stretch;
    margin: 0 18px 26px;
  }
}

/* ── Heard First nav — always visible, never hidden ────────────── */
.nav-heard-first,
.nav-heard-first.active {
  display: flex !important;
  color: #000 !important;
  font-weight: 700 !important;
  background: #f5f0e8 !important;
  border-radius: 8px !important;
  border-left-color: transparent !important;
  margin-top: 4px;
}
.nav-heard-first:hover,
.nav-heard-first.active:hover {
  background: #ebe4d4 !important;
  color: #000 !important;
}
[data-theme="dark"] .nav-heard-first,
[data-theme="dark"] .nav-heard-first.active {
  color: #ffd700 !important;
  background: rgba(255,215,0,0.1) !important;
}
[data-theme="dark"] .nav-heard-first:hover {
  background: rgba(255,215,0,0.16) !important;
}

/* ── Mobile Heard First sticky CTA ─────────────────────────────── */
#hf-mobile-cta {
  display: none;
}
@media (max-width: 700px) {
  #hf-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #000;
    border-top: 1px solid #222;
  }
  #hf-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  #hf-mobile-cta .hf-sub {
    font-size: 12px;
    font-weight: 400;
    color: #888;
  }
  /* Pad bottom of page so content isn't hidden behind the bar */
  body { padding-bottom: 56px; }
}

/* ── Mobile sticky search bar ──────────────────────────────────── */
#mobile-search-bar {
  display: none; /* hidden on desktop */
}
@media (max-width: 700px) {
  #mobile-search-bar {
    display: block;
    position: fixed;
    top: var(--player-h);
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--bg);
    padding: 10px 16px;
    border-bottom: 1px solid var(--bd);
  }
  #mobile-search-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--bd);
    background: var(--bg-3);
    color: var(--tx-1);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
  }
  #mobile-search-input::placeholder {
    color: var(--tx-3);
  }
  #mobile-search-input:focus {
    border-color: var(--acc);
    background: var(--bg-2);
  }
}

/* ── List item playing state ────────────────────────────────────── */
.music-list-item .list-art.is-playing .list-play-overlay {
  background: rgba(0,0,0,0.6);
}
.music-list-item .list-art.is-playing .list-play-btn {
  background: var(--acc);
  color: #fff;
}

/* ── List writeup — clickable ───────────────────────────────────── */
.music-list-item .list-writeup {
  cursor: pointer;
}
.music-list-item .list-writeup:hover {
  color: var(--tx-1);
}

/* ── Author avatar — photo ──────────────────────────────────────── */
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes btd-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Sidebar: Next Post + Related Tracks ─────────────────────────────────── */
.pfn-next-item,
.pfn-related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
  transition: opacity 0.15s;
}
.pfn-next-item:hover,
.pfn-related-item:hover { opacity: 0.65; }
.pfn-next-item img,
.pfn-related-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--bg-2);
}
.pfn-next-title,
.pfn-related-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tx-1);
}
.pfn-next-artist,
.pfn-related-artist {
  font-size: 12px;
  color: var(--tx-3);
  margin-top: 2px;
}

/* ── Public artist snapshot: mirror BTD Pro dashboard chrome ───── */
body.public-artist-page {
  --artist-paper: #f2eadf;
  --artist-card: #ece5da;
  --artist-card-2: #f7f2ea;
  --artist-line: #ded4c5;
  --artist-ink: #11100e;
  --artist-muted: #6f675d;
  --artist-red: #d7352a;
  background: var(--artist-paper);
  color: var(--artist-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body.public-artist-page .public-artist-site-nav {
  display: none;
}
body.public-artist-page .public-artist-app {
  min-height: 100vh;
  padding: 10px 16px 34px;
}
body.public-artist-page .public-dashboard-topbar {
  min-height: 65px;
  margin: 0 0 46px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #050403;
  color: #fff;
  box-shadow: none;
}
body.public-artist-page .public-dashboard-brand img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
body.public-artist-page .public-dashboard-brand-text {
  gap: 2px;
  font-family: "Microgramma", "MicrogrammaDBolExt", "Bank Gothic", "Eurostile Extended", Impact, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: .95;
}
body.public-artist-page .public-dashboard-brand-text span:last-child {
  color: #ff4f44;
}
body.public-artist-page .public-dashboard-context {
  padding-left: 24px;
  border-left-color: rgba(255,255,255,.18);
}
body.public-artist-page .public-dashboard-context span {
  color: #a9a096;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}
body.public-artist-page .public-dashboard-context strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
body.public-artist-page .public-artist-pro-link {
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(232,87,74,.5);
  border-radius: 7px;
  background: rgba(232,87,74,.18);
  color: #f4d7d2;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
body.public-artist-page .public-dashboard-titlebar {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  align-items: end;
  margin: 0 4px 28px;
}
body.public-artist-page .public-dashboard-eyebrow {
  color: var(--artist-red);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
body.public-artist-page .public-dashboard-titlebar h1 {
  color: #111;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 5px;
}
body.public-artist-page .public-dashboard-titlebar p {
  color: var(--artist-muted);
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
body.public-artist-page .public-dashboard-titlebar > a,
body.public-artist-page .public-artist-claim a,
body.public-artist-page .public-claim-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  background: #11100e;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
body.public-artist-page .public-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0 4px 14px;
  background: transparent;
}
body.public-artist-page .public-dashboard-grid-secondary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -4px;
  opacity: .86;
}
body.public-artist-page .public-dashboard-card,
body.public-artist-page .public-profile-card,
body.public-artist-page .public-movement-panel,
body.public-artist-page .public-rec-card,
body.public-artist-page .public-artist-claim {
  border: 1px solid var(--artist-line);
  border-radius: 8px;
  background: var(--artist-card);
  box-shadow: none;
}
body.public-artist-page .public-dashboard-card {
  min-height: 112px;
  padding: 18px 16px;
}
body.public-artist-page .public-dashboard-grid-secondary .public-dashboard-card {
  min-height: 94px;
  padding: 14px;
}
body.public-artist-page .public-dashboard-grid-secondary .public-dashboard-card strong {
  font-size: 24px;
}
body.public-artist-page .public-intel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  margin: 0 4px 14px;
}
body.public-artist-page .public-intel-main,
body.public-artist-page .public-intel-views {
  border: 1px solid var(--artist-line);
  border-radius: 8px;
  background: var(--artist-card);
}
body.public-artist-page .public-intel-main {
  min-height: 190px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.public-artist-page .public-intel-main span,
body.public-artist-page .public-intel-views span,
body.public-artist-page .public-context-strip span {
  display: block;
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
body.public-artist-page .public-intel-main h2 {
  margin: 8px 0 10px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: .9;
  letter-spacing: 0;
}
body.public-artist-page .public-intel-main p {
  max-width: 620px;
  margin: 0;
  color: #413b34;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
}
body.public-artist-page .public-intel-proof {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--artist-line);
}
body.public-artist-page .public-intel-proof b {
  color: #111;
  font-size: 28px;
  font-weight: 950;
}
body.public-artist-page .public-intel-proof em {
  color: #08713a;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
body.public-artist-page .public-intel-views {
  padding: 22px 20px;
}
body.public-artist-page .public-intel-views strong {
  display: block;
  margin-top: 16px;
  color: #111;
  font-size: 54px;
  line-height: .9;
  font-weight: 950;
}
body.public-artist-page .public-intel-views em {
  display: block;
  margin-top: 12px;
  color: #08713a;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
body.public-artist-page .public-dashboard-card.is-primary {
  background: var(--artist-card);
  border-color: var(--artist-line);
}
body.public-artist-page .public-dashboard-card span,
body.public-artist-page .public-rec-card span,
body.public-artist-page .public-panel-head span {
  display: block;
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
body.public-artist-page .public-dashboard-card strong {
  color: #111;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}
body.public-artist-page .public-dashboard-card.is-primary span,
body.public-artist-page .public-dashboard-card.is-primary strong,
body.public-artist-page .public-dashboard-card.is-primary em {
  color: inherit;
}
body.public-artist-page .public-dashboard-card em {
  color: #08713a;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  margin-top: 8px;
}
body.public-artist-page .public-dashboard-workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 330px;
  gap: 14px;
  margin: 0 4px;
}
body.public-artist-page .public-profile-card {
  padding: 16px;
}
body.public-artist-page .public-profile-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  overflow: hidden;
  background: #5b1710;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}
body.public-artist-page .public-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.public-artist-page .public-verified-check {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border: 3px solid #f8f4ed;
  border-radius: 999px;
  background: #1d9bf0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
body.public-artist-page .public-profile-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 18px 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fde7e4;
  color: var(--artist-red);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.public-artist-page .public-profile-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  font-size: 42px;
  font-weight: 900;
  line-height: .95;
  margin: 0 0 12px;
}
body.public-artist-page .public-profile-card p,
body.public-artist-page .public-artist-claim p {
  color: var(--artist-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 14px;
}
body.public-artist-page .public-artist-tags,
body.public-artist-page .public-artist-links {
  gap: 6px;
  margin-top: 12px;
}
body.public-artist-page .public-artist-tags span,
body.public-artist-page .public-artist-links a {
  min-height: 23px;
  border: 1px solid var(--artist-line);
  border-radius: 5px;
  background: #f8f4ed;
  color: #111;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 7px;
}
body.public-artist-page .public-artist-links a {
  color: var(--artist-red);
}
body.public-artist-page .public-movement-panel {
  overflow: hidden;
}
body.public-artist-page .public-signal-stack {
  display: grid;
  gap: 0;
}
body.public-artist-page .public-signal-card {
  border-bottom: 1px solid var(--artist-line);
  background: transparent;
}
body.public-artist-page .public-signal-card:hover,
body.public-artist-page .public-signal-card[open] {
  background: #fffaf3;
}
body.public-artist-page .public-signal-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
}
body.public-artist-page .public-signal-card summary:focus-visible {
  outline: 2px solid var(--artist-red);
  outline-offset: -2px;
}
body.public-artist-page .public-signal-card summary::-webkit-details-marker {
  display: none;
}
body.public-artist-page .public-signal-card summary::after {
  content: "+";
  justify-self: end;
  width: 26px;
  height: 26px;
  border: 1px solid var(--artist-line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 16px;
  font-weight: 900;
  grid-column: 2;
  grid-row: 1 / span 2;
}
body.public-artist-page .public-signal-card[open] summary::after {
  content: "-";
}
body.public-artist-page .public-signal-card summary span {
  display: block;
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
body.public-artist-page .public-signal-card summary strong {
  color: #111;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
}
body.public-artist-page .public-signal-card summary em {
  justify-self: end;
  max-width: 180px;
  margin-right: 38px;
  color: #08713a;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
  text-align: right;
}
body.public-artist-page .public-signal-card[data-signal-state="building"] summary em {
  color: #7a7166;
}
body.public-artist-page .public-signal-card p {
  margin: -2px 72px 18px 20px;
  padding-top: 2px;
  color: #5a5248;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 680;
}
body.public-artist-page .public-signal-card p::before {
  content: "Live";
  display: inline-flex;
  margin: 0 8px 0 0;
  padding: 3px 6px;
  border-radius: 999px;
  background: #e7f5ea;
  color: #08713a;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: 1px;
}
body.public-artist-page .public-signal-card[data-signal-state="building"] p::before {
  content: "Building";
  background: #efe7da;
  color: #6f6254;
}
body.public-artist-page .public-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--artist-line);
}
body.public-artist-page .public-panel-head strong {
  color: #111;
  font-size: 24px;
  font-weight: 900;
}
body.public-artist-page .public-panel-head em {
  color: var(--artist-muted);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.public-artist-page .public-movement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--artist-line);
}
body.public-artist-page .public-movement-row:last-child {
  border-bottom: 0;
}
body.public-artist-page .public-movement-row span {
  display: block;
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
body.public-artist-page .public-movement-row strong {
  color: #111;
  font-size: 19px;
  font-weight: 900;
}
body.public-artist-page .public-movement-row b {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--artist-line);
  border-radius: 7px;
  background: #f8f4ed;
  color: #08713a;
  font-size: 12px;
  font-weight: 900;
}
body.public-artist-page .public-context-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 20px 18px;
}
body.public-artist-page .public-context-strip div {
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--artist-line);
  border-radius: 7px;
  background: #fff;
}
body.public-artist-page .public-context-strip strong {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}
body.public-artist-page .public-context-strip em {
  display: block;
  margin-top: 6px;
  color: #08713a;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}
body.public-artist-page .public-right-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}
body.public-artist-page .public-rec-card,
body.public-artist-page .public-artist-claim {
  padding: 20px;
}
body.public-artist-page .public-rec-card strong {
  color: #111;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}
body.public-artist-page .public-claim-label {
  color: #111;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
}
body.public-artist-page .public-dashboard-titlebar > button,
body.public-artist-page .public-artist-claim button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #11100e;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}
body.public-artist-page .public-dashboard-titlebar > button:disabled,
body.public-artist-page .public-artist-claim button:disabled {
  cursor: default;
  background: #d8cec0;
  color: #6b6258;
}
body.public-artist-page .public-request-status-label {
  color: #111;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}
body.public-artist-page .public-portal-page {
  width: min(1520px, calc(100vw - 32px));
  margin: 0 auto 28px;
}
body.public-artist-page .public-portal-page,
body.public-artist-page .public-portal-page * {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}
body.public-artist-page .public-portal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 14px;
  color: #11100e;
  font-size: 13px;
  font-weight: 760;
}
body.public-artist-page .public-portal-meta span {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--artist-red);
}
body.public-artist-page .public-portal-meta em {
  font-style: normal;
  color: var(--artist-muted);
}
body.public-artist-page .public-portal-layout {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
body.public-artist-page .public-portal-profile,
body.public-artist-page .public-portal-read,
body.public-artist-page .public-portal-metric,
body.public-artist-page .public-portal-market,
body.public-artist-page .public-portal-signal,
body.public-artist-page .public-portal-ar-read {
  box-sizing: border-box;
  border: 1px solid var(--artist-line);
  border-radius: 8px;
  background: var(--artist-card);
  box-shadow: none;
}
body.public-artist-page .public-portal-profile {
  position: sticky;
  top: 14px;
  padding: 18px;
}
body.public-artist-page .public-portal-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(145deg, #1c1713, #641d17);
  color: #fff;
}
body.public-artist-page .public-portal-avatar span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
}
body.public-artist-page .public-portal-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
body.public-artist-page .public-portal-avatar i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 3px solid #f7f2ea;
  border-radius: 999px;
  background: #1d9bf0;
}
body.public-artist-page .public-portal-avatar i::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 10px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
body.public-artist-page .public-portal-profile h1 {
  margin: 16px 0 8px;
  color: #11100e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: .95;
  font-weight: 900;
}
body.public-artist-page .public-portal-profile h1 small {
  font-size: 22px;
}
body.public-artist-page .public-portal-tags,
body.public-artist-page .public-portal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
}
body.public-artist-page .public-portal-tags span,
body.public-artist-page .public-portal-links > a,
body.public-artist-page .public-portal-links > span,
body.public-artist-page .public-portal-watch {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--artist-line);
  border-radius: 6px;
  background: #f8f4ed;
  color: #11100e;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 0 8px;
  white-space: nowrap;
}
body.public-artist-page .public-portal-links > a,
body.public-artist-page .public-portal-watch {
  color: var(--artist-red);
  text-decoration: none;
}
body.public-artist-page .public-platform-logo {
  width: 15px;
  height: 15px;
  display: inline-block;
  flex: 0 0 15px;
  vertical-align: -2px;
}
body.public-artist-page .public-platform-logo.is-spotify {
  color: #1ed760;
}
body.public-artist-page .public-portal-links > a,
body.public-artist-page .public-portal-links > span,
body.public-artist-page .public-portal-watch {
  gap: 7px;
}
body.public-artist-page .public-portal-metric-label .public-platform-logo {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}
body.public-artist-page .public-portal-primary-button,
body.public-artist-page .public-portal-read > button,
body.public-artist-page .public-portal-read-status,
body.public-artist-page .public-portal-locked-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: #11100e;
  color: #fff;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-primary-button {
  width: 100%;
  margin: 16px 0 8px;
}
body.public-artist-page .public-portal-claimed-badge {
  display: grid;
  gap: 6px;
  width: 100%;
  margin: 16px 0 8px;
  padding: 13px 14px;
  border: 1px solid #cfe4d6;
  border-radius: 8px;
  background: #eef8f1;
  color: #188357;
  font-family: "JetBrains Mono", monospace !important;
  text-align: center;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-claimed-badge span,
body.public-artist-page .public-portal-read-status span {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
body.public-artist-page .public-portal-claimed-badge strong,
body.public-artist-page .public-portal-read-status strong {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
body.public-artist-page .public-portal-watch {
  width: 100%;
  justify-content: center;
}
body.public-artist-page .public-portal-status {
  margin: 14px 0;
  padding: 10px 12px;
  border: 1px solid #dacfc0;
  border-radius: 8px;
  background: #fffaf3;
  color: #5d544a;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
body.public-artist-page .public-portal-status *,
body.public-artist-page .public-request-status-label {
  font-family: "JetBrains Mono", monospace !important;
}
body.public-artist-page .public-portal-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--artist-line);
}
body.public-artist-page .public-portal-facts div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--artist-line);
}
body.public-artist-page .public-portal-facts dt,
body.public-artist-page .public-portal-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
}
body.public-artist-page .public-portal-facts dt {
  color: var(--artist-muted);
}
body.public-artist-page .public-portal-facts dd {
  color: #11100e;
  text-align: right;
}
body.public-artist-page .public-portal-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}
body.public-artist-page .public-portal-read {
  min-height: 230px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,0)),
    var(--artist-card);
}
body.public-artist-page .public-portal-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
body.public-artist-page .public-portal-kicker span,
body.public-artist-page .public-portal-section-head span,
body.public-artist-page .public-portal-ar-read span {
  color: #7a7166;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-kicker button {
  border: 0;
  background: transparent;
  color: var(--artist-red);
  cursor: pointer;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 11px;
  font-weight: 900;
  padding: 0;
}
body.public-artist-page .public-portal-read h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: #11100e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: .88;
  font-weight: 900;
}
body.public-artist-page .public-portal-read p {
  max-width: 760px;
  margin: 0;
  color: #413b34;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
}
body.public-artist-page .public-portal-read > button {
  min-width: 165px;
  padding: 0 18px;
}
body.public-artist-page .public-portal-read-status {
  min-width: 172px;
  min-height: auto;
  display: grid;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid #cfe4d6;
  background: #eef8f1;
  color: #188357;
  cursor: default;
}
body.public-artist-page .public-portal-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
body.public-artist-page .public-portal-metric {
  position: relative;
  min-height: 138px;
  padding: 16px 14px;
  overflow: hidden;
}
body.public-artist-page .public-portal-metric::after {
  content: none;
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: rgba(215, 53, 42, .08);
}
body.public-artist-page .public-portal-metric-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-metric-label b {
  color: var(--artist-red);
  font-size: 13px;
}
body.public-artist-page .public-portal-metric strong {
  display: block;
  margin-top: 14px;
  color: #11100e;
  font-size: 30px;
  line-height: .95;
  font-weight: 950;
}
body.public-artist-page .public-portal-metric em {
  display: block;
  margin-top: 8px;
  color: #08713a;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
body.public-artist-page .public-portal-metric p {
  margin: 8px 0 0;
  color: var(--artist-muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 760;
}
body.public-artist-page .public-peer-bar {
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: #d8cec0;
  overflow: hidden;
}
body.public-artist-page .public-peer-bar i {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: #11100e;
}
body.public-artist-page .public-portal-market {
  padding: 24px;
}
body.public-artist-page .public-portal-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
body.public-artist-page .public-portal-section-head h2 {
  margin: 0;
  color: #11100e;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
}
body.public-artist-page .public-portal-section-head p {
  max-width: 680px;
  margin: 0;
  color: var(--artist-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 720;
}
body.public-artist-page .public-portal-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
body.public-artist-page .public-portal-signal {
  min-height: 155px;
  padding: 16px;
  background: #f8f4ed;
  display: flex;
  flex-direction: column;
}
body.public-artist-page .public-portal-signal.is-locked {
  background: #e8ded0;
  color: #6a6056;
  border-style: dashed;
  text-align: center;
}
body.public-artist-page .public-portal-signal-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
body.public-artist-page .public-portal-signal-head span,
body.public-artist-page .public-portal-signal-head em {
  color: #7a7166;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-signal-head em {
  color: #08713a;
}
body.public-artist-page .public-portal-signal.is-locked .public-portal-signal-head em {
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid #d6cab9;
  border-radius: 999px;
  background: #f8f4ed;
  color: #7a7166;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.public-artist-page .public-portal-signal strong {
  display: block;
  margin-top: 16px;
  color: #11100e;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}
body.public-artist-page .public-portal-signal p {
  margin: 10px 0 0;
  color: #5a5248;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
body.public-artist-page .public-portal-signal button {
  margin-top: auto;
  align-self: center;
  justify-content: center;
  width: min(100%, 188px);
  min-height: 36px;
  border: 1px solid var(--artist-line);
  border-radius: 7px;
  background: #11100e;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
  padding: 8px 14px;
  text-align: center;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-locked-mobile {
  display: none;
}
body.public-artist-page .public-portal-ar-read {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
body.public-artist-page .public-portal-ar-read div {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}
body.public-artist-page .public-portal-ar-read em {
  color: var(--artist-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
body.public-artist-page .public-portal-ar-read p {
  margin: 0;
  color: #11100e;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
  justify-self: center;
  max-width: 760px;
  text-align: center;
}
body.public-artist-page .public-portal-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 2px 0;
  border-top: 1px solid var(--artist-line);
  color: var(--artist-muted);
  font-size: 12px;
  font-weight: 800;
}
body.public-artist-page .public-portal-footer strong {
  color: #11100e;
}
body.public-artist-page .public-portal-footer span {
  color: var(--artist-red);
}
body.public-artist-page .public-portal-footer em {
  font-style: normal;
}
body.public-artist-page .public-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
body.public-artist-page .public-request-modal.is-open {
  display: flex;
}
body.public-artist-page .public-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 14, 0.56);
}
body.public-artist-page .public-request-dialog {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid #d6cab9;
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 24px 80px rgba(26, 21, 16, 0.28);
  padding: 24px;
}
body.public-artist-page .public-request-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid #d6cab9;
  border-radius: 999px;
  background: #f4eadc;
  color: #111;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
body.public-artist-page .public-request-kicker {
  color: #b42121;
  font-family: "JetBrains Mono", monospace !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.public-artist-page .public-request-dialog h2 {
  color: #111;
  font-size: 25px;
  line-height: 1.05;
  margin: 8px 36px 8px 0;
}
body.public-artist-page .public-request-dialog p {
  color: var(--artist-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0 0 18px;
}
body.public-artist-page .public-request-error {
  display: none;
  margin: -6px 0 14px;
  border: 1px solid #e2b5ad;
  border-radius: 10px;
  background: #fff1ee;
  color: #8c2118;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  padding: 10px 12px;
}
body.public-artist-page .public-request-error:not(:empty) {
  display: block;
}
body.public-artist-page .public-request-form {
  display: grid;
  gap: 12px;
}
body.public-artist-page .public-request-form label {
  display: grid;
  gap: 6px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}
body.public-artist-page .public-request-form input,
body.public-artist-page .public-request-form textarea {
  width: 100%;
  border: 1px solid #d6cab9;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 14px;
  padding: 11px 12px;
}
body.public-artist-page .public-request-form textarea {
  resize: vertical;
}
body.public-artist-page .public-request-form button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #11100e;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}
body.public-artist-page .public-request-form button:disabled {
  cursor: default;
  opacity: 0.58;
}
body.public-artist-page #artist-posts,
body.public-artist-page #artist-posts-header {
  display: none !important;
}
@media (min-width: 1101px) {
  body.public-artist-page .public-artist-app {
    padding: 0 0 42px;
  }
  body.public-artist-page .public-dashboard-topbar {
    min-height: 58px;
    margin: 0 0 28px;
    padding: 12px 98px;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  body.public-artist-page .public-dashboard-brand img {
    width: 31px;
    height: 31px;
  }
  body.public-artist-page .public-dashboard-brand-text {
    min-width: 105px;
    font-size: 12px;
  }
  body.public-artist-page .public-dashboard-context strong {
    font-size: 13px;
  }
  body.public-artist-page .public-dashboard-actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  body.public-artist-page .public-dashboard-actions span {
    color: #8f877d;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-dashboard-actions strong {
    color: #f7f2ea;
    font-weight: 900;
  }
  body.public-artist-page .public-dashboard-actions .public-dashboard-site-link {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: transparent;
    color: #d8cec0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
  }
  body.public-artist-page .public-dashboard-actions .public-dashboard-site-link:hover {
    border-color: rgba(232, 87, 74, .55);
    color: #fff;
  }
  body.public-artist-page .public-artist-pro-link {
    min-height: 32px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
  }
  body.public-artist-page .public-portal-page {
    width: min(1245px, calc(100vw - 120px));
  }
  body.public-artist-page .public-portal-meta {
    justify-content: space-between;
    margin-bottom: 18px;
  }
  body.public-artist-page .public-portal-meta span,
  body.public-artist-page .public-portal-meta em {
    color: #777067;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-layout {
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 24px;
  }
  body.public-artist-page .public-portal-profile,
  body.public-artist-page .public-portal-read,
  body.public-artist-page .public-portal-metric,
  body.public-artist-page .public-portal-signal,
  body.public-artist-page .public-portal-ar-read {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 9px 24px rgba(35, 28, 18, .08);
  }
  body.public-artist-page .public-portal-profile {
    padding: 20px;
  }
  body.public-artist-page .public-portal-avatar {
    border: 4px solid #c84036;
    border-radius: 12px;
    box-shadow: inset -14px -14px 0 rgba(213, 145, 58, .85);
  }
  body.public-artist-page .public-portal-avatar span {
    font-size: 60px;
  }
  body.public-artist-page .public-portal-avatar img {
    transform: scale(1.01);
  }
  body.public-artist-page .public-portal-avatar i {
    background: #2c8f5a;
  }
  body.public-artist-page .public-portal-profile h1 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0;
  }
  body.public-artist-page .public-portal-tags span {
    min-height: 25px;
    padding: 0 10px;
    border-radius: 6px;
    background: #eee8dd;
    color: #6f675d;
    font-size: 9px;
    letter-spacing: .12em;
  }
  body.public-artist-page .public-portal-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  body.public-artist-page .public-portal-links > a,
  body.public-artist-page .public-portal-links > span {
    min-height: 31px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    color: #11100e;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
  }
  body.public-artist-page .public-portal-primary-button {
    min-height: 41px;
    border-radius: 8px;
    background: #c9342e;
    font-family: "JetBrains Mono", monospace !important;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-watch {
    min-height: 41px;
    border-color: #090807;
    border-radius: 5px;
    justify-content: center;
    background: #090807;
    color: #fff;
    font-size: 11px;
    letter-spacing: .15em;
  }
  body.public-artist-page .public-portal-status {
    background: #e8f3e9;
    color: #2d8a58;
    font-family: "JetBrains Mono", monospace !important;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.45;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-facts div {
    padding: 14px 0;
  }
  body.public-artist-page .public-portal-read {
    min-height: 0;
    height: 184px;
    padding: 26px 28px;
    border-left: 5px solid #c9342e;
    align-items: center;
  }
  body.public-artist-page .public-portal-kicker span {
    color: #bf3632;
  }
  body.public-artist-page .public-portal-kicker button {
    min-height: 26px;
    padding: 0 12px;
    border: 1px solid var(--artist-line);
    border-radius: 6px;
    color: #6f675d;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-read h2 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 14px;
  }
  body.public-artist-page .public-portal-read p {
    max-width: 760px;
    color: #6f675d;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 500;
  }
  body.public-artist-page .public-portal-read > button {
    min-width: 170px;
    min-height: 40px;
    border-radius: 8px;
    background: #c9342e;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  body.public-artist-page .public-portal-metric {
    height: 150px;
    min-height: 0;
    padding: 16px 18px;
  }
  body.public-artist-page .public-portal-metric strong {
    font-size: 39px;
  }
  body.public-artist-page .public-portal-metric.is-pink strong {
    color: #d94493;
  }
  body.public-artist-page .public-portal-metric.is-purple strong {
    color: #7156c4;
  }
  body.public-artist-page .public-portal-metric.is-green strong {
    color: #2b9460;
    font-size: 28px;
  }
  body.public-artist-page .public-portal-metric em {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: #dfeee0;
    color: #2c8153;
  }
  body.public-artist-page .public-portal-market {
    padding: 28px 0 0;
    border: 0;
    background: transparent;
  }
  body.public-artist-page .public-portal-section-head {
    display: block;
  }
  body.public-artist-page .public-portal-section-head span {
    color: #bf3632;
  }
  body.public-artist-page .public-portal-section-head h2 {
    font-size: 24px;
  }
  body.public-artist-page .public-portal-section-head p {
    max-width: none;
  }
  body.public-artist-page .public-portal-signals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  body.public-artist-page .public-portal-signal {
    min-height: 230px;
    padding: 20px;
  }
  body.public-artist-page .public-portal-signal.is-locked {
    background: #f7f2ea;
    border-style: dashed;
    color: #a89e90;
    justify-content: flex-start;
    text-align: center;
  }
  body.public-artist-page .public-portal-signal strong {
    font-size: 42px;
  }
  body.public-artist-page .public-portal-signal.is-locked strong {
    color: #b6aa9d;
    font-size: 26px;
    line-height: 1.05;
    text-align: center;
  }
  body.public-artist-page .public-portal-signal:nth-child(2) strong {
    color: #c9342e;
  }
  body.public-artist-page .public-portal-signal button {
    background: #eee8dd;
    color: #6f675d;
    font-family: "JetBrains Mono", monospace !important;
    letter-spacing: .1em;
    margin-top: auto;
    align-self: center;
    min-height: 36px;
    padding: 8px 14px;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-ar-read {
    margin-top: 18px;
    padding: 24px 28px;
    border-left: 5px solid #2d8a58;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
  }
  body.public-artist-page .public-portal-ar-read span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 7px;
    background: #dfeee0;
    color: #2d8a58;
  }
  body.public-artist-page .public-portal-footer {
    margin-top: 58px;
  }
}
@media (max-width: 1100px) {
  body.public-artist-page .public-artist-site-nav {
    display: block;
  }
  body.public-artist-page .public-dashboard-topbar {
    display: none;
  }
  body.public-artist-page .public-portal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  body.public-artist-page .public-portal-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.public-artist-page .public-portal-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.public-artist-page .public-intel-hero {
    grid-template-columns: 1fr;
  }
  body.public-artist-page .public-dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.public-artist-page .public-dashboard-workspace {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  body.public-artist-page .public-right-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  body.public-artist-page .public-artist-app {
    padding: 0 0 26px;
  }
  body.public-artist-page .public-portal-page {
    width: auto;
    margin: 0 13px 22px;
    padding-top: 10px;
  }
  body.public-artist-page .public-portal-meta {
    margin: 0 0 8px;
    display: grid;
    gap: 7px;
    line-height: 1.1;
  }
  body.public-artist-page .public-portal-meta em {
    font-size: 11px;
    font-weight: 720;
  }
  body.public-artist-page .public-portal-layout,
  body.public-artist-page .public-portal-read,
  body.public-artist-page .public-portal-ar-read,
  body.public-artist-page .public-portal-footer {
    grid-template-columns: 1fr;
  }
  body.public-artist-page .public-portal-metrics,
  body.public-artist-page .public-portal-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.public-artist-page .public-portal-layout,
  body.public-artist-page .public-portal-main {
    gap: 14px;
  }
  body.public-artist-page .public-portal-profile {
    position: static;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px 11px;
    padding: 13px 14px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 28, 18, .08);
  }
  body.public-artist-page .public-portal-avatar {
    width: 54px;
    height: 54px;
    aspect-ratio: auto;
    grid-row: 1 / span 2;
    border: 5px solid #cd4b34;
    border-radius: 14px;
    box-shadow: inset -10px -10px 0 rgba(213, 145, 58, .85);
  }
  body.public-artist-page .public-portal-avatar span {
    font-size: 26px;
  }
  body.public-artist-page .public-portal-avatar img {
    transform: none;
  }
  body.public-artist-page .public-portal-avatar i,
  body.public-artist-page .public-verified-check {
    display: none !important;
  }
  body.public-artist-page .public-portal-profile h1 {
    align-self: end;
    margin: 6px 0 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0;
  }
  body.public-artist-page .public-portal-profile h1 small {
    font-size: 16px;
  }
  body.public-artist-page .public-portal-tags {
    grid-column: 2;
    margin: 0;
    align-self: start;
  }
  body.public-artist-page .public-portal-tags span {
    min-height: 22px;
    padding: 0 9px;
    border-radius: 7px;
    background: #f0eadf;
    font-size: 8px;
    letter-spacing: .16em;
  }
  body.public-artist-page .public-portal-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
  }
  body.public-artist-page .public-portal-links > a,
  body.public-artist-page .public-portal-links > span {
    min-height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: #fff;
    font-family: "JetBrains Mono", monospace !important;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: none;
  }
  body.public-artist-page .public-portal-primary-button,
  body.public-artist-page .public-portal-watch,
  body.public-artist-page .public-portal-status {
    font-family: "JetBrains Mono", monospace !important;
  }
  body.public-artist-page .public-portal-primary-button,
  body.public-artist-page .public-portal-watch,
  body.public-artist-page .public-portal-status,
  body.public-artist-page .public-portal-facts {
    display: none;
  }
  body.public-artist-page .public-portal-read {
    min-height: 0;
    padding: 18px 18px 14px;
    border-radius: 12px;
    border-left: 5px solid #c9342e;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 28, 18, .08);
  }
  body.public-artist-page .public-portal-kicker {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  body.public-artist-page .public-portal-kicker span,
  body.public-artist-page .public-portal-section-head span,
  body.public-artist-page .public-portal-ar-read span {
    color: #bf3632;
    font-size: 9px;
    letter-spacing: .22em;
  }
  body.public-artist-page .public-portal-kicker button {
    min-height: 22px;
    padding: 0 10px;
    border: 1px solid var(--artist-line);
    border-radius: 8px;
    color: #6f675d;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-read h2 {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 19px;
    line-height: 1.08;
    letter-spacing: 0;
  }
  body.public-artist-page .public-portal-read p,
  body.public-artist-page .public-portal-ar-read p {
    color: #6f675d;
    font-size: 13px;
    line-height: 1.48;
    font-weight: 500;
  }
  body.public-artist-page .public-portal-read > button {
    width: 100%;
    min-height: 39px;
    margin-top: 9px;
    border-radius: 13px;
    background: #c9342e;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-metrics {
    gap: 10px;
  }
  body.public-artist-page .public-portal-metric {
    min-height: 114px;
    padding: 13px 11px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 28, 18, .08);
  }
  body.public-artist-page .public-portal-metric-label {
    font-size: 8px;
    letter-spacing: .18em;
    min-height: 23px;
  }
  body.public-artist-page .public-portal-metric-label b {
    font-size: 13px;
  }
  body.public-artist-page .public-portal-metric strong {
    margin-top: 6px;
    font-size: 27px;
  }
  body.public-artist-page .public-portal-metric.is-pink strong {
    color: #d94493;
  }
  body.public-artist-page .public-portal-metric.is-purple strong {
    color: #7156c4;
  }
  body.public-artist-page .public-portal-metric.is-green strong {
    color: #2b9460;
    font-size: 20px;
  }
  body.public-artist-page .public-portal-metric em {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 9px;
    border-radius: 999px;
    background: #dfeee0;
    color: #2c8153;
    font-size: 11px;
  }
  body.public-artist-page .public-portal-metric p {
    margin-top: 11px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    line-height: 1.25;
  }
  body.public-artist-page .public-peer-bar {
    height: 6px;
    margin-top: 12px;
  }
  body.public-artist-page .public-portal-market {
    padding: 18px 0 0;
    border: 0;
    background: transparent;
  }
  body.public-artist-page .public-portal-section-head {
    margin-bottom: 18px;
  }
  body.public-artist-page .public-portal-section-head h2 {
    font-size: 19px;
    line-height: 1.15;
  }
  body.public-artist-page .public-portal-section-head p {
    color: #6f675d;
    font-size: 13px;
    line-height: 1.3;
  }
  body.public-artist-page .public-portal-signals {
    display: grid;
    gap: 10px;
  }
  body.public-artist-page .public-portal-signal {
    min-height: 158px;
    padding: 14px 13px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 28, 18, .08);
  }
  body.public-artist-page .public-portal-signal:nth-child(n+3) {
    display: none;
  }
  body.public-artist-page .public-portal-signal-head span,
  body.public-artist-page .public-portal-signal-head em {
    font-size: 8px;
    letter-spacing: .16em;
  }
  body.public-artist-page .public-portal-signal-head em {
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: #e8f3e9;
  }
  body.public-artist-page .public-portal-signal strong {
    margin-top: 21px;
    font-size: 35px;
  }
  body.public-artist-page .public-portal-signal:nth-child(2) strong {
    color: #c9342e;
  }
  body.public-artist-page .public-portal-signal p {
    margin-top: 15px;
    color: #6f675d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
  }
  body.public-artist-page .public-portal-locked-mobile {
    width: 100%;
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    gap: 3px 10px;
    justify-items: start;
    text-align: left;
    min-height: 77px;
    margin-top: 14px;
    padding: 13px 14px;
    border: 1px dashed var(--artist-line);
    border-radius: 18px;
    background: #fffaf3;
    color: #11100e;
    line-height: 1.15;
  }
  body.public-artist-page .public-portal-locked-mobile span {
    grid-row: 1 / span 2;
    align-self: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eee8de;
    color: transparent;
    position: relative;
  }
  body.public-artist-page .public-portal-locked-mobile span::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 15px;
    width: 12px;
    height: 10px;
    border: 2px solid #766d62;
    border-radius: 3px;
  }
  body.public-artist-page .public-portal-locked-mobile span::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 8px;
    width: 7px;
    height: 11px;
    border: 2px solid #766d62;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
  }
  body.public-artist-page .public-portal-locked-mobile strong,
  body.public-artist-page .public-portal-locked-mobile em,
  body.public-artist-page .public-portal-locked-mobile b {
    color: inherit;
    font-style: normal;
  }
  body.public-artist-page .public-portal-locked-mobile em {
    opacity: .72;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-locked-mobile b {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    color: #bf3632;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  body.public-artist-page .public-portal-ar-read {
    padding: 17px 18px;
    border-left: 5px solid #2d8a58;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(36, 28, 18, .08);
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  body.public-artist-page .public-portal-ar-read div {
    display: grid;
    justify-items: center;
    gap: 8px;
  }
  body.public-artist-page .public-portal-ar-read span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    background: #dfeee0;
    color: #2d8a58;
  }
  body.public-artist-page .public-portal-ar-read em {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    letter-spacing: .18em;
  }
  body.public-artist-page .public-portal-ar-read p {
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    color: #11100e;
    font-size: 15px;
    line-height: 1.35;
  }
  body.public-artist-page .public-portal-footer {
    display: grid;
    margin: 22px -13px 0;
    padding: 18px 13px 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
  }
  body.public-artist-page .public-dashboard-topbar {
    margin: 0 0 10px;
    border-radius: 0;
    padding: 9px 14px;
    min-height: 51px;
  }
  body.public-artist-page .public-dashboard-brand img {
    width: 28px;
    height: 28px;
  }
  body.public-artist-page .public-dashboard-brand-text {
    font-size: 12px;
    line-height: 1.05;
    letter-spacing: .02em;
  }
  body.public-artist-page .public-dashboard-context,
  body.public-artist-page .public-dashboard-context {
    display: none;
  }
  body.public-artist-page .public-dashboard-actions {
    display: none;
  }
  body.public-artist-page .public-artist-pro-link {
    display: inline-flex;
    min-height: 29px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: .14em;
    white-space: nowrap;
  }
  body.public-artist-page .public-dashboard-titlebar,
  body.public-artist-page .public-intel-hero,
  body.public-artist-page .public-dashboard-grid,
  body.public-artist-page .public-dashboard-workspace {
    margin-left: 14px;
    margin-right: 14px;
  }
  body.public-artist-page .public-dashboard-titlebar {
    grid-template-columns: 1fr;
    align-items: start;
  }
  body.public-artist-page .public-dashboard-grid,
  body.public-artist-page .public-dashboard-workspace,
  body.public-artist-page .public-right-stack,
  body.public-artist-page .public-context-strip {
    grid-template-columns: 1fr;
  }
  body.public-artist-page .public-intel-main h2 {
    font-size: 42px;
  }
  body.public-artist-page .public-dashboard-card {
    min-height: 96px;
  }
  body.public-artist-page .public-movement-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.public-artist-page .public-signal-card summary {
    grid-template-columns: 1fr 32px;
  }
  body.public-artist-page .public-signal-card summary em {
    justify-self: start;
    max-width: none;
    margin-right: 0;
    text-align: left;
  }
  body.public-artist-page .public-signal-card p {
    margin-right: 20px;
  }
  body.public-artist-page .public-movement-row b {
    justify-self: start;
  }
}

/* Public artist pages: keep the surface aligned with the /dashboard system. */
body.public-artist-page {
  --artist-paper: #F5F1EA;
  --artist-card: #EFE9DF;
  --artist-card-2: #F5F1EA;
  --artist-line: #E5DFD2;
  --artist-ink: #0E0D0B;
  --artist-muted: #6b655b;
  --artist-red: #B33A2E;
  background: var(--artist-paper);
  color: var(--artist-ink);
}
body.public-artist-page .public-portal-profile,
body.public-artist-page .public-portal-read,
body.public-artist-page .public-portal-metric,
body.public-artist-page .public-portal-market,
body.public-artist-page .public-portal-signal,
body.public-artist-page .public-portal-ar-read,
body.public-artist-page .public-request-dialog {
  border-color: var(--artist-line);
  border-radius: 8px;
  background: var(--artist-card-2);
  box-shadow: none;
}
body.public-artist-page .public-portal-profile {
  background: #fbf8f1;
}
body.public-artist-page .public-portal-avatar {
  padding: 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #370f0f, #c3362f 68%, #e6a549);
  box-shadow: none;
}
body.public-artist-page .public-portal-avatar img,
body.public-artist-page .public-portal-avatar span {
  border-radius: 10px;
}
body.public-artist-page .public-portal-profile h1 {
  color: var(--artist-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: .95;
}
body.public-artist-page .public-portal-tags span,
body.public-artist-page .public-portal-links > a,
body.public-artist-page .public-portal-links > span,
body.public-artist-page .public-portal-watch {
  border-color: #ddd2c3;
  background: #fffaf2;
  color: #4a463f;
}
body.public-artist-page .public-portal-primary-button,
body.public-artist-page .public-portal-read > button,
body.public-artist-page .public-portal-locked-mobile,
body.public-artist-page .public-portal-signal button {
  border-radius: 8px;
  background: var(--artist-red);
  color: #fff;
  box-shadow: none;
}
body.public-artist-page .public-portal-watch {
  background: #0b0a08;
  border-color: #0b0a08;
  color: #fff;
}
body.public-artist-page .public-portal-status {
  border-color: #d8cbbb;
  background: #eef8f1;
  color: #188357;
}
body.public-artist-page.public-artist-approved .public-artist-pro-link {
  display: none !important;
}
body.public-artist-page .public-portal-read {
  border-left: 4px solid var(--artist-red);
  background: #fffaf2;
}
body.public-artist-page .public-portal-kicker span,
body.public-artist-page .public-portal-section-head span,
body.public-artist-page .public-portal-ar-read span,
body.public-artist-page .public-portal-meta span {
  color: var(--artist-red);
}
body.public-artist-page .public-portal-kicker button,
body.public-artist-page .public-portal-ar-read span {
  border-color: #ddd2c3;
  background: #fffaf2;
  border-radius: 7px;
}
body.public-artist-page .public-portal-read h2 {
  color: var(--artist-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 950;
  letter-spacing: -0.03em;
}
body.public-artist-page .public-portal-read p,
body.public-artist-page .public-portal-section-head p,
body.public-artist-page .public-portal-signal p,
body.public-artist-page .public-portal-ar-read p {
  color: var(--artist-muted);
  font-weight: 500;
}
body.public-artist-page .public-portal-metric,
body.public-artist-page .public-portal-signal {
  background: #fbf8f1;
}
body.public-artist-page .public-portal-metric-label,
body.public-artist-page .public-portal-signal-head span,
body.public-artist-page .public-portal-signal-head em {
  color: #8a8174;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
}
body.public-artist-page .public-portal-metric strong,
body.public-artist-page .public-portal-signal strong,
body.public-artist-page .public-portal-section-head h2 {
  color: var(--artist-ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}
body.public-artist-page .public-portal-metric em {
  background: #dff2e8;
  color: #177346;
  font-weight: 900;
}
body.public-artist-page .public-portal-metric.is-pink strong,
body.public-artist-page .public-portal-metric.is-purple strong,
body.public-artist-page .public-portal-metric.is-green strong,
body.public-artist-page .public-portal-signal:nth-child(2) strong {
  color: var(--artist-red);
}
body.public-artist-page .public-portal-signal.is-locked {
  background: #EFE9DF;
  border-style: solid;
  color: var(--artist-muted);
}
body.public-artist-page .public-portal-signal.is-locked strong {
  color: #8a8174;
}
body.public-artist-page .public-portal-ar-read {
  border-left: 4px solid #188357;
  background: #fffaf2;
}
body.public-artist-page .public-portal-ar-read span {
  background: #eef8f1;
  color: #188357;
}
@media (min-width: 1101px) {
  body.public-artist-page .public-portal-page {
    width: min(1480px, calc(100vw - 76px));
  }
  body.public-artist-page .public-portal-layout {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 24px;
  }
  body.public-artist-page .public-portal-read {
    min-height: 112px;
    height: auto;
    padding: 18px 20px;
  }
  body.public-artist-page .public-portal-read h2 {
    font-size: 22px;
    line-height: 1.05;
  }
  body.public-artist-page .public-portal-read p {
    font-size: 14px;
    line-height: 1.45;
  }
  body.public-artist-page .public-portal-metric {
    height: 124px;
    padding: 18px 20px;
  }
  body.public-artist-page .public-portal-metric strong {
    font-size: 32px;
  }
  body.public-artist-page .public-portal-market {
    background: transparent;
  }
  body.public-artist-page .public-portal-signal {
    min-height: 170px;
    padding: 18px;
  }
  body.public-artist-page .public-portal-signal strong {
    font-size: 32px;
  }
}
@media (max-width: 720px) {
  body.public-artist-page .public-portal-profile,
  body.public-artist-page .public-portal-read,
  body.public-artist-page .public-portal-metric,
  body.public-artist-page .public-portal-signal,
  body.public-artist-page .public-portal-ar-read {
    border-radius: 8px;
    background: #fbf8f1;
    box-shadow: none;
  }
  body.public-artist-page .public-portal-avatar {
    padding: 5px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #370f0f, #c3362f 68%, #e6a549);
  }
  body.public-artist-page .public-portal-avatar img,
  body.public-artist-page .public-portal-avatar span {
    border-radius: 7px;
  }
  body.public-artist-page .public-portal-profile h1 {
    font-size: 22px;
    letter-spacing: -0.03em;
  }
  body.public-artist-page .public-portal-read {
    background: #fffaf2;
  }
  body.public-artist-page .public-portal-read > button {
    border-radius: 8px;
    background: var(--artist-red);
  }
}

/* Keep public artist metric card captions from clipping. */
body.public-artist-page .public-portal-metric {
  height: auto;
  min-height: 150px;
  overflow: visible;
}
@media (min-width: 1101px) {
  body.public-artist-page .public-portal-metric {
    height: auto;
    min-height: 150px;
  }
}
@media (max-width: 720px) {
  body.public-artist-page .public-portal-metric {
    min-height: 142px;
    padding-bottom: 16px;
  }
}

/* Public artist locked preview overlay. */
body.public-artist-page .public-portal-main {
  position: relative;
}
body.public-artist-page .public-portal-main.is-snapshot-locked > :not(.public-portal-lock-overlay) {
  filter: blur(5px);
  opacity: .42;
  pointer-events: none;
  user-select: none;
}
body.public-artist-page .public-portal-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(229, 223, 210, .92);
  border-radius: 10px;
  background: rgba(245, 241, 234, .7);
  backdrop-filter: blur(4px);
}
body.public-artist-page .public-portal-lock-panel {
  width: min(420px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid #11100e;
  border-radius: 8px;
  background: rgba(255, 250, 242, .95);
  color: var(--artist-ink);
  text-align: center;
  box-shadow: 0 18px 48px rgba(36, 28, 18, .18);
}
body.public-artist-page .public-portal-lock-panel span {
  color: var(--artist-red);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-lock-panel strong {
  display: block;
  color: var(--artist-ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
body.public-artist-page .public-portal-lock-panel p {
  max-width: 310px;
  margin: 0;
  color: var(--artist-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
body.public-artist-page .public-portal-lock-panel button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--artist-red);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.public-artist-page .public-portal-lock-panel a {
  color: var(--artist-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  body.public-artist-page .public-portal-lock-overlay {
    align-items: flex-start;
    padding: 18px 12px;
    border-radius: 8px;
  }
  body.public-artist-page .public-portal-lock-panel {
    position: sticky;
    top: 88px;
    padding: 22px 18px;
  }
  body.public-artist-page .public-portal-lock-panel strong {
    font-size: 28px;
  }
}
