:root {
  --ink: #000;
  --paper: #fff;
  --brand-w: 175.5px;
  --bar-h: 64px;
  --nav-w: 356.5px;
  --content-h: calc(var(--brand-w) + var(--nav-w) - var(--bar-h) - 2px);
  --music-toolbar-h: 28px;
  --line: 1px solid var(--ink);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --expand-ms: 1000ms;
}

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

[hidden] {
  display: none !important;
}

html,
body {
  height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100%;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 24px 16px 48px;
}

.stage {
  display: flex;
  justify-content: center;
  max-width: calc(100vw - 32px);
}

.stage-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 14px;
}

.blinkie-wrap {
  display: flex;
  justify-content: center;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.blinkie-wrap.is-visible {
  opacity: 1;
  visibility: visible;
}

.blinkie {
  display: block;
  width: 150px;
  height: 20px;
  object-fit: fill;
  box-sizing: content-box;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  border: 0;
}

.blinkie-wrap.is-visible .blinkie[src] {
  border: 1px solid var(--ink);
}

.blinkie:not([src]),
.blinkie[src=""] {
  opacity: 0;
  visibility: hidden;
}

.donate-rail[hidden] {
  display: none !important;
}

.donate-rail {
  position: fixed;
  top: 6px;
  left: 50%;
  z-index: 40;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}

.donate-rail.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0s;
}

.donate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--bar-h);
  padding: 0 10px;
  border-left: var(--line);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.15s ease;
}

.donate-link:hover,
.donate-link:focus-visible {
  background: #f3f3f3;
}

.panel {
  display: grid;
  grid-template-columns: var(--brand-w) 0px;
  grid-template-rows: var(--bar-h) 0px;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  transition:
    grid-template-columns var(--expand-ms) var(--ease-out),
    grid-template-rows var(--expand-ms) var(--ease-out);
}

.panel.is-nav-open {
  grid-template-columns: var(--brand-w) var(--nav-w);
}

.panel.is-content-open {
  grid-template-columns: var(--brand-w) var(--nav-w);
  grid-template-rows: var(--bar-h) var(--content-h);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 5;
  width: var(--brand-w);
  height: var(--bar-h);
  background: var(--paper);
  border: var(--line);
  border-right: var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-radius var(--expand-ms) var(--ease-out);
}

.panel.is-content-open .brand {
  border-top-left-radius: 8px;
}

.brand:hover,
.brand:focus-visible {
  background: #fafafa;
}

.brand img {
  display: block;
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 3;
  height: var(--bar-h);
  overflow: hidden;
  background: var(--paper);
  border-top: var(--line);
  border-right: var(--line);
  border-bottom: var(--line);
  margin-left: -1px;
  border-radius: 0;
  transition: border-radius var(--expand-ms) var(--ease-out);
}

.panel.is-content-open .nav {
  border-top-right-radius: 8px;
}

.nav-inner {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0 6px;
}

.nav-link {
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  text-decoration: none;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  border: var(--line);
  border-radius: 4px;
  padding: 6px;
  background: var(--paper);
  transition: background 0.2s ease;
}

.nav-link:hover span,
.nav-link:focus-visible span {
  background: #f3f3f3;
}

.nav-link.is-active span {
  background: var(--ink);
  color: var(--paper);
}

.nav-link.is-active img {
  filter: invert(1);
}

.nav-link.is-active:hover span,
.nav-link.is-active:focus-visible span {
  background: var(--ink);
}

.nav-link img {
  display: block;
  height: 21px;
  width: auto;
  max-width: 100%;
}

.content {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  border-radius: 0 0 8px 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.panel.is-content-open .content {
  visibility: visible;
  opacity: 1;
  border-left: var(--line);
  border-right: var(--line);
  border-bottom: var(--line);
}

.content-inner {
  height: var(--content-h);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 8px;
  padding-top: 8px;
  overflow: hidden;
  transition: padding-top 0.55s var(--ease-out);
}

.panel.is-music-view .content-inner {
  padding-top: calc(8px + var(--music-toolbar-h) + 8px);
}

.music-toolbar {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
  width: calc(100% - 16px);
  max-width: none;
  height: var(--music-toolbar-h);
  margin: 8px 8px 0;
  box-sizing: border-box;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, calc(-100% - 8px), 0);
  transition:
    transform 0.55s var(--ease-out),
    visibility 0s linear 0.55s;
}

.panel.is-content-open.is-music-view .music-toolbar {
  pointer-events: auto;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.55s var(--ease-out),
    visibility 0s linear 0s;
}

.music-filter {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 4px 8px;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.music-filter img {
  height: 12px;
  width: auto;
  max-width: 100%;
}

.music-filter .music-filter-icon {
  display: block;
}

.music-filter .music-filter-icon-active {
  display: none;
  height: 12.5px;
}

.music-filter:hover,
.music-filter:focus-visible {
  background: #f3f3f3;
}

.music-filter.is-active {
  background: var(--ink);
  color: var(--paper);
}

.music-filter.is-active .music-filter-icon {
  display: none;
}

.music-filter.is-active .music-filter-icon-active {
  display: block;
  filter: invert(1);
}

.music-filter.is-active:hover,
.music-filter.is-active:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.music-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.music-panel.is-active {
  display: flex;
}

.content-box {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  border: var(--line);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

.content-box::-webkit-scrollbar {
  width: 10px;
}

.content-box::-webkit-scrollbar-track {
  background: transparent;
}

.content-box::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 10px;
}

.content-box::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* Home keeps overflow clipped so now-playing panels can slide in cleanly. */
.content-box:has(.view-home.is-active) {
  overflow: hidden;
}

.view {
  display: none;
  width: 100%;
  min-height: 100%;
  padding: 16px 12px;
}

.view.is-active {
  display: block;
}

.view-home {
  position: relative;
  padding: 0;
}

.view-home.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 0;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  transition: padding-bottom 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.view-home.is-active:has(.now-playing.is-visible) {
  padding-bottom: var(--now-playing-offset, 0px);
}

.emblem-hit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 48px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.now-playing {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.now-playing.is-visible {
  transform: translateY(0);
}

.now-playing-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 0;
  margin: 0;
  padding: 4px 4px 3px 4px;
  background: var(--paper);
  border-top: var(--line);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.now-playing.is-visible .now-playing-label {
  transform: translateY(0);
  transition-delay: 0s;
}

.now-playing-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  padding: 6px 10px;
  background: var(--paper);
  border-top: var(--line);
  --now-playing-font-size: 12px;
}

.now-playing-artist,
.now-playing-catalog,
.now-playing-album {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--now-playing-font-size);
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 0;
}

.now-playing-artist {
  text-align: left;
}

.now-playing-album {
  text-align: center;
}

.now-playing-catalog {
  text-align: right;
}

.now-playing-progress {
  position: relative;
  z-index: 1;
  height: 6px;
  background: var(--paper);
  border-top: var(--line);
  overflow: hidden;
}

.now-playing-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.emblem {
  display: block;
  width: 150px;
  height: auto;
  overflow: visible;
  cursor: pointer;
  pointer-events: none;
}

.emblem-top,
.emblem-bottom {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.emblem-hit.is-open .emblem-top,
.emblem-hit.is-open .emblem-bottom {
  /* Animations drive motion while open; transition handles the close. */
  transition: none;
}

.emblem-hit.is-open .emblem-top {
  animation:
    emblem-open-top 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    emblem-sway-top 2.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.85s infinite;
}

.emblem-hit.is-open .emblem-bottom {
  animation:
    emblem-open-bottom 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    emblem-sway-bottom 3.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.95s infinite;
}

@keyframes emblem-open-top {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-3.2px) rotate(0deg);
  }
}

@keyframes emblem-open-bottom {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(3.2px) rotate(0deg);
  }
}

@keyframes emblem-sway-top {

  0%,
  100% {
    transform: translateY(-3.2px) rotate(0deg);
  }

  40% {
    transform: translateY(-4.1px) rotate(-1.4deg);
  }

  72% {
    transform: translateY(-3.5px) rotate(0.8deg);
  }
}

@keyframes emblem-sway-bottom {

  0%,
  100% {
    transform: translateY(3.2px) rotate(0deg);
  }

  45% {
    transform: translateY(4.2px) rotate(1.6deg);
  }

  78% {
    transform: translateY(3.4px) rotate(-1deg);
  }
}

.view-copy {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: auto 0;
}

.view-copy-framed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: var(--line);
  border-radius: 4px;
  padding: 12px;
  box-sizing: border-box;
}

.view-copy-framed p+p {
  border-top: var(--line);
  padding-top: 12px;
}

#view-about .view-copy-framed p:first-child {
  font-weight: 400;
  font-size: 13px;
}

.contact-label {
  font-weight: 300;
  color: var(--ink);
}

.contact-value,
.contact-value a {
  font-weight: 400;
  color: var(--ink);
}

.blog-view-copy {
  margin: 0;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.blog-entry {
  width: 100%;
  min-width: 0;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  overflow: hidden;
}

.blog-entry-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  min-width: 0;
  border-bottom: var(--line);
}

.blog-entry-title,
.blog-entry-date {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 8px 10px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: var(--ink);
}

.blog-entry-title {
  min-width: 0;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.blog-entry-date {
  border-left: var(--line);
  font-weight: 300;
  white-space: nowrap;
}

.blog-entry-content {
  padding: 10px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.blog-entry-content>*+* {
  margin-top: 10px;
}

.blog-entry-content ul,
.blog-entry-content ol {
  display: block;
  padding-left: 1.4em;
  list-style-position: outside;
}

.blog-entry-content ul {
  list-style-type: disc;
}

.blog-entry-content ol {
  list-style-type: decimal;
}

.blog-entry-content li,
.blog-entry-content li:first-child {
  border-top: 0;
  padding-top: 0;
}

.blog-entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

.blog-empty {
  margin: 0;
  padding: 10px;
  border: var(--line);
  border-radius: 4px;
}

.view-copy.music-panels {
  max-width: none;
  width: 100%;
  min-width: 0;
}

.view-copy h1 {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.view-title {
  margin: 0;
  line-height: 0;
}

.view-title img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
}

.music-panel .view-title {
  margin-bottom: 0;
}

.music-panel .view-title img {
  height: 15px;
}

.music-panel .view-title+*,
.music-panel .release-heading+* {
  border-top: var(--line);
  padding-top: 12px;
  margin-top: -6px;
}

.release-catalog,
.show-catalog,
.latest-catalog {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.release-section,
.show-section,
.latest-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.release-section+.release-section,
.latest-section+.latest-section,
.show-section+.show-section {
  border-top: var(--line);
  padding-top: 12px;
  margin-top: -6px;
}

.release-section-title,
.show-section-title,
.latest-section-title {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  text-transform: uppercase;
}

.release-list,
.show-list,
.latest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.release-empty,
.show-empty,
.latest-empty {
  margin: 0;
  padding: 10px;
  border: var(--line);
  border-radius: 4px;
  font-size: 11px;
  color: var(--ink-muted);
}

.release-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.release-order-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.release-order-label {
  font-size: 10px;
  line-height: 1;
}

.release-order-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.release-order-toggle:hover,
.release-order-toggle:focus-visible {
  background: #f3f3f3;
}

.artist-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.artist-empty {
  margin: 0;
  padding: 10px;
  border: var(--line);
  border-radius: 4px;
}

.artist-entry {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  table-layout: fixed;
  box-sizing: border-box;
  overflow: hidden;
}

.artist-name {
  padding: 0;
  border-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
  vertical-align: middle;
}

.artist-row.is-open .artist-name,
.artist-row.is-closing .artist-name {
  border-bottom: var(--line);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.artist-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.artist-row.is-open .artist-toggle,
.artist-row.is-closing .artist-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.artist-toggle:hover,
.artist-toggle:focus-visible {
  background: #f3f3f3;
}

.artist-toggle-label {
  min-width: 0;
}

.artist-toggle-icon {
  flex: 0 0 auto;
  width: 0.75em;
  text-align: center;
  font-weight: 400;
  line-height: 1;
}

.artist-toggle-icon::before {
  content: "+";
}

.artist-row.is-open .artist-toggle-icon::before {
  content: "\2212";
}

.artist-detail-cell {
  padding: 0;
  border-bottom: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  vertical-align: top;
}

.artist-detail-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.artist-row.is-open+.artist-detail .artist-detail-panel {
  grid-template-rows: 1fr;
}

.artist-detail-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.artist-info,
.artist-releases {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink);
}

.artist-info {
  padding: 8px 10px;
  line-height: 1.45;
}

.artist-releases {
  padding: 0;
  line-height: 1.2;
}

.artist-info p {
  font-weight: 300;
  color: var(--ink);
  opacity: 1;
}

.artist-meta-label {
  font-weight: 300;
  color: var(--ink);
  opacity: 1;
}

.artist-releases-accordion {
  display: flex;
  flex-direction: column;
}

.artist-releases-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 6px 10px;
  border: 0;
  border-top: var(--line);
  background: transparent;
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s ease;
}

.artist-releases-toggle:hover,
.artist-releases-toggle:focus-visible {
  background: #f3f3f3;
  outline: none;
}

.artist-releases-toggle-label {
  min-width: 0;
}

.artist-releases-toggle-icon {
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}

.artist-no-releases {
  padding: 6px 10px;
  border-top: var(--line);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.artist-shows {
  display: flex;
  flex-direction: column;
}

.artist-shows-accordion {
  display: flex;
  flex-direction: column;
}

.artist-shows-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 6px 10px;
  border: 0;
  border-top: var(--line);
  background: transparent;
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s ease;
}

.artist-shows-toggle:hover,
.artist-shows-toggle:focus-visible {
  background: #f3f3f3;
  outline: none;
}

.artist-shows-toggle-label {
  min-width: 0;
}

.artist-shows-toggle-icon {
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}

.artist-no-shows {
  padding: 6px 10px;
  border-top: var(--line);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.artist-show-item {
  display: grid;
  grid-template-columns: 10px max-content 8px 1px 8px minmax(0, 1fr) 10px;
  grid-template-rows: 1px auto;
  align-items: stretch;
  min-width: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.artist-show-item:hover,
.artist-show-item:focus-visible {
  background-color: #f3f3f3;
  outline: none;
}

.artist-show-date {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  padding: 5px 0 3px;
  font-weight: 300;
  white-space: nowrap;
}

.artist-show-title {
  grid-column: 6;
  grid-row: 2;
  display: flex;
  align-items: center;
  padding: 5px 0 3px;
  min-width: 0;
  font-weight: 400;
}

.view-copy .artist-shows ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.view-copy .artist-shows li {
  border-top: 0;
  padding-top: 0;
}

.artist-releases ul {
  margin: 0;
}

.artist-releases>p {
  padding: 4px 10px;
  border-top: var(--line);
}

.view-copy .artist-releases ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.view-copy .artist-releases li {
  border-top: 0;
  padding-top: 0;
}

.artist-release-item {
  display: grid;
  grid-template-columns: 10px max-content 8px 1px 8px minmax(0, 1fr) 10px;
  grid-template-rows: 1px auto;
  align-items: stretch;
  min-width: 0;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.artist-release-item:hover,
.artist-release-item:focus-visible {
  background-color: #f3f3f3;
  outline: none;
}

.artist-release-rule {
  height: 0;
  border-top: var(--line);
}

.artist-release-rule-solid {
  grid-column: 1 / 4;
  grid-row: 1;
  border-top: var(--line);
}

.artist-release-rule-trail {
  grid-column: 4 / -1;
  grid-row: 1;
  border-top: var(--line);
}

.artist-release-catalog {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  padding: 5px 0 3px;
  font-weight: 300;
}

.artist-release-divider {
  grid-column: 4;
  grid-row: 2;
  width: 0;
  border-left: var(--line);
}

.artist-release-title {
  grid-column: 6;
  grid-row: 2;
  display: flex;
  align-items: center;
  padding: 5px 0 3px;
  min-width: 0;
  font-weight: 400;
}

.release-entry {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  table-layout: fixed;
  box-sizing: border-box;
  overflow: hidden;
}

.release-col-cover {
  width: 124px;
}

.release-col-meta {
  width: auto;
}

.release-col-formats {
  width: 4.3rem;
}

.release-cover {
  position: relative;
  padding: 0;
  border-right: var(--line);
  vertical-align: top;
  overflow: hidden;
}

.release-cover img,
.release-cover-empty {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  display: block;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
  border: var(--line);
  box-sizing: border-box;
}

.release-cover img,
.show-promo img {
  cursor: pointer;
}

.release-cover img:hover,
.release-cover img:focus-visible,
.show-promo img:hover,
.show-promo img:focus-visible {
  border-color: magenta;
}

.release-cover-empty {
  background: #f3f3f3;
}

.cover-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.cover-lightbox[hidden] {
  display: none !important;
}

.cover-lightbox-dialog {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: min(70vw, 640px);
  max-height: calc(100vh - 48px);
  cursor: default;
}

.cover-lightbox-media-wrap {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.cover-lightbox-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border: var(--line);
  border-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: var(--paper);
  cursor: default;
  box-sizing: border-box;
}

.cover-lightbox-close-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: background 0.15s ease, color 0.15s ease;
}

.cover-lightbox-close-btn:hover,
.cover-lightbox-close-btn:focus-visible {
  background: #f3f3f3;
}

.cover-lightbox-close-icon {
  width: 8px;
  height: 8px;
  display: block;
  fill: none;
  shape-rendering: geometricPrecision;
}

.cover-lightbox-meta {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cover-lightbox-meta .release-entry {
  width: 100%;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cover-lightbox-meta .release-entry.has-tracklist {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cover-lightbox-meta .release-meta-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cover-lightbox-meta .release-col-meta {
  width: auto;
}

.cover-lightbox-meta .release-col-formats {
  width: 4.3rem;
}

.tracklist-accordion {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
  background: var(--paper);
  box-sizing: border-box;
}

.cover-lightbox-meta .tracklist-accordion {
  margin-top: 0;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cover-lightbox-meta .release-meta-cell,
.cover-lightbox-meta .release-formats-label,
.cover-lightbox-meta .release-formats-item,
.cover-lightbox-meta .show-meta-cell,
.cover-lightbox-meta .show-ticket-cell,
.cover-lightbox-meta .tracklist-accordion-row,
.cover-lightbox-meta .tracklist-toggle,
.cover-lightbox-meta .credits-accordion-row,
.cover-lightbox-meta .credits-toggle {
  height: 31px;
  min-height: 31px;
  max-height: 31px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.2;
  box-sizing: border-box;
}

.tracklist-accordion-row {
  height: 31px;
}

.tracklist-accordion-cell {
  padding: 0;
}

.tracklist-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 31px;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.tracklist-toggle:hover,
.tracklist-toggle:focus-visible {
  background: #f3f3f3;
}

.tracklist-toggle-label {
  min-width: 0;
}

.tracklist-toggle-icon {
  flex: 0 0 auto;
  width: 0.75em;
  text-align: center;
  font-weight: 400;
  line-height: 1;
}

.tracklist-toggle-icon::before {
  content: "+";
}

.tracklist-accordion-row.is-open .tracklist-toggle-icon::before {
  content: "\2212";
}

.tracklist-accordion-row.is-open .tracklist-accordion-cell {
  border-bottom: var(--line) !important;
}

.credits-accordion {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: var(--paper);
  table-layout: fixed;
  box-sizing: border-box;
  overflow: hidden;
}

.cover-lightbox-meta .release-entry:has(+ .credits-accordion),
.cover-lightbox-meta .release-entry:has(+ .tracklist-accordion),
.cover-lightbox-meta .show-entry:has(+ .credits-accordion),
.cover-lightbox-meta .tracklist-accordion:has(+ .credits-accordion) {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.cover-lightbox-meta .release-entry+.credits-accordion,
.cover-lightbox-meta .show-entry+.credits-accordion,
.cover-lightbox-meta .tracklist-accordion+.credits-accordion {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.credits-accordion-row {
  min-height: 28px;
}

.credits-accordion-cell {
  padding: 0;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.credits-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 28px;
  margin: 0;
  padding: 6px 10px;
  border: 0;
  border-radius: 0 0 4px 4px;
  background: transparent;
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s ease;
  overflow: hidden;
}

.credits-accordion-row.is-open .credits-accordion-cell,
.credits-accordion-row.is-open .credits-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.credits-toggle:hover,
.credits-toggle:focus-visible {
  background: #f3f3f3;
}

.credits-toggle-label {
  min-width: 0;
}

.credits-toggle-icon {
  flex: 0 0 auto;
  width: 0.75em;
  text-align: center;
  font-weight: 400;
  line-height: 1;
}

.credits-toggle-icon::before {
  content: "+";
}

.credits-accordion-row.is-open .credits-toggle-icon::before {
  content: "\2212";
}

.credits-accordion-row.is-open .credits-accordion-cell {
  border-bottom: var(--line);
}

.credits-accordion-detail-cell {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  word-break: break-word;
}

.credits-content {
  white-space: pre-wrap;
}

.tracklist-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
  background: var(--paper);
  table-layout: fixed;
  box-sizing: border-box;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
}

.tracklist-accordion-cell {
  padding: 0;
  margin: 0;
  border: 0;
  height: 100%;
}

.tracklist-accordion-detail-cell {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.tracklist-accordion .tracklist-table,
.tracklist-accordion-detail-cell .tracklist-table {
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: transparent !important;
}

.tracklist-accordion .tracklist-row:first-child .tracklist-cell-title,
.tracklist-accordion .tracklist-row:first-child .tracklist-cell-play,
.tracklist-accordion .tracklist-row:first-child .tracklist-cell-play .track-play-btn {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.tracklist-col-play {
  width: 31px;
}

.tracklist-col-duration {
  width: 3.5rem;
}

.tracklist-cell-play {
  width: 31px;
  height: 31px;
  padding: 0;
  border-left: var(--line);
  border-bottom: var(--line);
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.tracklist-cell-title {
  padding: 8px 10px;
  border-bottom: var(--line);
  font-weight: 400;
  vertical-align: middle;
  color: var(--ink);
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.tracklist-number {
  font-weight: 300;
}

.tracklist-cell-duration {
  padding: 8px 10px;
  border-bottom: var(--line);
  font-weight: 300;
  text-align: right;
  vertical-align: middle;
  color: var(--ink);
  white-space: nowrap;
  box-sizing: border-box;
}

.tracklist-row:last-child .tracklist-cell-play,
.tracklist-row:last-child .tracklist-cell-title,
.tracklist-row:last-child .tracklist-cell-duration {
  border-bottom: 0;
}

.tracklist-row:first-child .tracklist-cell-title {
  border-top-left-radius: 3px;
}

.tracklist-row:last-child .tracklist-cell-title {
  border-bottom-left-radius: 3px;
}

.tracklist-row:first-child .tracklist-cell-play,
.tracklist-row:first-child .tracklist-cell-play .track-play-btn {
  border-top-right-radius: 3px;
}

.tracklist-row:last-child .tracklist-cell-play,
.tracklist-row:last-child .tracklist-cell-play .track-play-btn {
  border-bottom-right-radius: 3px;
}

.track-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.track-play-btn .track-svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.track-play-btn .track-svg-play {
  display: block;
}

.track-play-btn .track-svg-pause {
  display: none;
}

.track-play-btn:hover,
.track-play-btn:focus-visible {
  background: #f3f3f3;
}

.track-play-btn.is-playing {
  background: var(--ink);
  color: var(--paper);
}

.track-play-btn.is-playing .track-svg-play {
  display: none;
}

.track-play-btn.is-playing .track-svg-pause {
  display: block;
}

.track-play-btn.is-playing:hover,
.track-play-btn.is-playing:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.release-meta-cell,
.release-formats-label,
.release-formats-item {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  vertical-align: middle;
}

.release-meta-cell {
  padding: 8px 10px;
  border-bottom: var(--line);
  white-space: nowrap;
  font-weight: 400;
}

.release-meta-label {
  font-weight: 300;
}

.release-meta-cell-rule {
  border-bottom-style: solid;
}

.release-meta-cell-dash-right {
  border-right: var(--line);
}

.release-meta-cell-last {
  border-bottom: 0;
}

.release-formats-label {
  white-space: nowrap;
  padding: 8px 10px;
  border-left: 0;
  border-bottom: var(--line);
  vertical-align: middle;
  box-sizing: border-box;
}

.release-formats-item {
  white-space: nowrap;
  padding: 8px 10px;
  border-left: 0;
  vertical-align: middle;
  box-sizing: border-box;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.release-formats-item-split {
  border-bottom: var(--line);
}

.release-formats-item-end {
  border-bottom: var(--line);
}

.release-formats-foot {
  border-left: 0;
  padding: 0;
}

.release-formats-item a,
.view-copy a {
  color: inherit;
  font-weight: 400;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
}

.release-formats-item a:hover,
.release-formats-item a:focus-visible,
.view-copy a:hover,
.view-copy a:focus-visible {
  color: magenta;
}

.release-format-name {
  font-weight: 400;
}

.release-empty {
  margin: 0;
  padding: 10px;
  border: var(--line);
  border-radius: 4px;
}



.show-entry {
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--line);
  border-radius: 4px;
  background: var(--paper);
  table-layout: fixed;
  box-sizing: border-box;
  overflow: hidden;
}

.show-col-promo {
  width: 124px;
}

.show-col-meta,
.show-col-doors,
.show-col-music {
  width: 33.333%;
}

.show-promo {
  padding: 6px;
  border-right: var(--line);
  vertical-align: middle;
  box-sizing: border-box;
}

.show-promo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: var(--line);
  box-sizing: border-box;
  cursor: pointer;
}

.show-meta-cell {
  padding: 8px 10px;
  border-bottom: var(--line);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  vertical-align: middle;
  white-space: normal;
}

.show-meta-label {
  font-weight: 300;
}

.show-meta-cell-last {
  border-bottom: 0;
}

.show-meta-cell-dash-right {
  border-right: var(--line);
}

.show-meta-cell-time {
  white-space: nowrap;
}

.show-ticket-cell {
  text-align: center;
}

.show-ticket-link,
.show-artist-link {
  color: inherit;
  font-weight: 400;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  cursor: pointer;
}

.show-ticket-link:hover,
.show-ticket-link:focus-visible,
.show-artist-link:hover,
.show-artist-link:focus-visible {
  color: magenta;
}

.cover-lightbox-meta .show-entry {
  width: 100%;
  margin: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.view-copy p,
.view-copy li {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
}

.view-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.view-copy li {
  border-top: var(--line);
  padding-top: 10px;
}

.view-copy li:first-child {
  border-top: 0;
  padding-top: 0;
}

.site-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
  color: var(--ink);
  pointer-events: none;
}

.site-footer-tagline {
  margin: 0;
  text-align: right;
  max-width: 60%;
}

.site-footer-copyright {
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 580px) {
  :root {
    --brand-w: 132px;
    --bar-h: 48px;
    --content-h: 400px;
    --music-toolbar-h: 24px;
  }

  .page {
    padding-left: 4px;
    padding-right: 4px;
  }

  .stage {
    max-width: none;
  }

  .panel {
    max-width: none;
  }

  .blinkie-wrap {
    gap: 8px;
  }

  .donate-link {
    padding: 0 8px;
    font-size: 9px;
  }

  .site-footer-copyright {
    white-space: normal;
  }

  .site-footer-brand {
    display: block;
  }

  .site-footer-tagline {
    max-width: 30%;
  }

  .brand {
    padding: 8px;
  }

  .brand img {
    height: 30px;
  }

  .nav-link {
    padding: 8px 4px;
  }

  .nav-link img {
    height: 16px;
  }

  .view {
    padding: 12px 8px;
  }

  .emblem-hit {
    padding: 24px 32px;
  }

  .emblem {
    width: 114px;
  }

  .now-playing-label {
    padding: 3px 6px;
    font-size: 10px;
  }

  .now-playing-row {
    gap: 6px;
    min-height: 24px;
    padding: 3px 8px;
    --now-playing-font-size: 12px;
  }

  .now-playing-progress {
    height: 4px;
  }

  .view-copy h1 {
    font-size: 18px;
  }

  .view-title img {
    height: 20px;
  }

  .music-panel {
    gap: 16px;
  }

  .music-panel .view-title img {
    height: 14px;
  }

  .show-col-promo {
    width: 96px;
  }

  .release-col-cover {
    width: 96px;
  }

  .release-entry tr {
    height: 24px;
  }

  .tracklist-accordion-row {
    height: auto;
    min-height: 0;
  }

  .tracklist-toggle {
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .release-meta-cell,
  .release-formats-label,
  .release-formats-item,
  .show-meta-cell,
  .show-ticket-cell,
  .tracklist-toggle,
  .credits-toggle,
  .tracklist-table,
  .tracklist-cell-title,
  .tracklist-cell-duration {
    font-size: 12px;
    padding: 4px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cover-lightbox-meta .release-meta-cell,
  .cover-lightbox-meta .release-formats-label,
  .cover-lightbox-meta .release-formats-item,
  .cover-lightbox-meta .show-meta-cell,
  .cover-lightbox-meta .show-ticket-cell,
  .cover-lightbox-meta .tracklist-accordion-row,
  .cover-lightbox-meta .tracklist-toggle,
  .cover-lightbox-meta .credits-accordion-row,
  .cover-lightbox-meta .credits-toggle {
    height: 26px;
    min-height: 26px;
    max-height: 26px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.2;
    box-sizing: border-box;
  }

  .tracklist-cell-play,
  .tracklist-col-play {
    width: 24px;
    height: 24px;
  }

  .blog-entry-title,
  .blog-entry-date {
    padding: 6px 8px;
    font-size: 12px;
  }

  .blog-entry-content {
    padding: 8px;
    font-size: 12px;
  }

  .view-copy p,
  .view-copy li {
    font-size: 12px;
  }

  .music-filter {
    padding: 3px 6px;
  }

  .music-filter img {
    height: 11px;
  }

  .music-filter .music-filter-icon-active {
    height: 12.5px;
  }
}

@media (max-width: 420px) {
  .page {
    padding-bottom: 56px;
  }

  .site-footer {
    bottom: 10px;
    padding: 0 12px;
    font-size: 10px;
    gap: 10px;
  }

  .site-footer-tagline {
    max-width: 44%;
  }

  .view-copy p,
  .view-copy li,
  .blog-entry-content {
    font-size: 12px;
  }

  #view-about .view-copy-framed p:first-child,
  .artist-toggle {
    font-size: 13px;
  }

  .now-playing-label {
    padding: 2px 6px;
    font-size: 10px;
  }

  .now-playing-row {
    gap: 4px;
    min-height: 22px;
    padding: 2px 6px;
    --now-playing-font-size: 12px;
  }

  .now-playing-progress {
    height: 3px;
  }
}