/* Album pages — cover + liner notes (no panel chrome) */

body.album-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.album-page .musicheader,
body.album-page .album-hero {
  display: none !important;
}

/* —— Stage —— */
.album-stage {
  position: relative;
  isolation: isolate;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  color: var(--main-text);
  box-sizing: border-box;
  padding: calc(var(--page-top-offset) + var(--nav-float-offset)) 0 clamp(1.75rem, 5vw, 3.5rem);
}

.album-stage::before,
.album-stage::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(6px);
}

.album-stage::before {
  width: min(58vw, 660px);
  height: min(58vw, 660px);
  left: -18vw;
  top: 16vh;
  background: radial-gradient(circle, rgb(var(--accent-r) var(--accent-g) var(--accent-b) / 0.16), transparent 66%);
}

.album-stage::after {
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  right: -14vw;
  bottom: -12vh;
  background: radial-gradient(circle, rgb(var(--accent-glow-r) var(--accent-glow-g) var(--accent-glow-b) / 0.12), transparent 70%);
}

.album-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  box-sizing: border-box;
}

/* Left: cover + title / listen stacked */
.album-col {
  position: sticky;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  width: 100%;
  max-width: 320px;
  justify-self: start;
  align-self: start;
  top: calc(var(--nav-float-offset) + var(--page-top-offset) + 0.5rem);
}

/* Cover — glass frame on the art only */
.album-sleeve {
  position: relative;
  z-index: 0;
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: var(--album-art-radius, var(--radius-sm));
  overflow: hidden;
  isolation: isolate;
  border: var(--album-art-glass-border);
  box-shadow: var(--album-art-glass-shadow);
}

.album-sleeve::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: var(--album-art-glass-shine);
  opacity: 0.78;
}

.album-sleeve img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.album-liner-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  border: none;
}

.album-hero-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.album-liner-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--main-text);
  max-width: none;
}

.album-hero-date {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.album-hero-blurb {
  margin: 0.15rem 0 0;
  max-width: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(232, 236, 234, 0.72);
}

/* Listen — icon row + light download link */
.album-listen {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.album-listen-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Match discography coverflow stream icons: bare circular glyphs + fluent border */
.album-listen-icons a,
.album-listen-icons a.glass-press {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --glass-rx: 0deg;
  --glass-ry: 0deg;
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: var(--main-text);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  box-shadow: none;
  isolation: isolate;
  transform: perspective(600px) rotateX(var(--glass-rx)) rotateY(var(--glass-ry)) scale(1);
  transform-style: preserve-3d;
  transition:
    transform var(--glass-press-duration, 0.18s) var(--glass-press-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow var(--glass-press-duration, 0.18s) var(--glass-press-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.album-listen-icons a:hover,
.album-listen-icons a:focus-visible,
.album-listen-icons a.is-proximity-hover,
.album-listen-icons a.glass-press:hover,
.album-listen-icons a.glass-press.is-proximity-hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.album-listen-icons a:active,
.album-listen-icons a.is-pressed,
.album-listen-icons a.glass-press:active,
.album-listen-icons a.glass-press.is-pressed {
  transform: perspective(600px) rotateX(var(--glass-rx)) rotateY(var(--glass-ry)) translateY(1px) scale(0.96);
  box-shadow: none;
}

.album-listen-icons img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.album-listen-cta,
.album-listen-cta.glass-press {
  --mouse-x: 50%;
  --mouse-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(232, 236, 234, 0.96);
  background:
    linear-gradient(
      180deg,
      rgb(var(--accent-glow-r) var(--accent-glow-g) var(--accent-glow-b) / 0.1) 0%,
      rgb(var(--accent-deep-r) var(--accent-deep-g) var(--accent-deep-b) / 0.08) 100%
    ),
    var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-color: rgb(var(--accent-bright-r) var(--accent-bright-g) var(--accent-bright-b) / 0.32);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  isolation: isolate;
  transform: perspective(700px) rotateX(var(--glass-rx, 0deg)) rotateY(var(--glass-ry, 0deg)) translateY(0) scale(1);
  transform-style: preserve-3d;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow var(--glass-press-duration, 0.18s) var(--glass-press-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--glass-press-duration, 0.18s) var(--glass-press-ease, cubic-bezier(0.22, 1, 0.36, 1));
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.album-listen-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    var(--theme-hover-glow) 0%,
    var(--theme-hover-glow-soft) 35%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 0;
}

.album-listen-cta > * {
  position: relative;
  z-index: 1;
}

.album-listen-cta:hover,
.album-listen-cta:focus-visible {
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgb(var(--accent-glow-r) var(--accent-glow-g) var(--accent-glow-b) / 0.16) 0%,
      rgb(var(--accent-deep-r) var(--accent-deep-g) var(--accent-deep-b) / 0.12) 100%
    ),
    var(--glass-bg);
  border-color: rgb(var(--accent-bright-r) var(--accent-bright-g) var(--accent-bright-b) / 0.45);
  box-shadow: var(--glass-shadow-lift);
}

.album-listen-cta:hover::before,
.album-listen-cta:focus-visible::before {
  opacity: 1;
}

/* Proximity only lights the border — keep resting glass shadow */
.album-listen-cta.glass-press.is-proximity-hover:not(:hover) {
  color: rgba(232, 236, 234, 0.96);
  background:
    linear-gradient(
      180deg,
      rgb(var(--accent-glow-r) var(--accent-glow-g) var(--accent-glow-b) / 0.1) 0%,
      rgb(var(--accent-deep-r) var(--accent-deep-g) var(--accent-deep-b) / 0.08) 100%
    ),
    var(--glass-bg);
  border-color: rgb(var(--accent-bright-r) var(--accent-bright-g) var(--accent-bright-b) / 0.32);
  box-shadow: var(--glass-shadow);
}

.album-listen-cta:active,
.album-listen-cta.is-pressed,
.album-listen-cta.glass-press:active,
.album-listen-cta.glass-press.is-pressed {
  transform: perspective(700px) rotateX(var(--glass-rx, 0deg)) rotateY(var(--glass-ry, 0deg)) translateY(2px) scale(0.98);
  box-shadow: var(--glass-shadow-pressed);
}

.album-listen-cta img {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  opacity: 0.92;
  pointer-events: none;
}

.album-listen-cta-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  min-width: 0;
  line-height: 1.25;
  pointer-events: none;
}

.album-listen-cta-label {
  color: inherit;
  font-weight: 500;
}

.album-listen-cta-price {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.album-listen-cta:hover .album-listen-cta-price,
.album-listen-cta:focus-visible .album-listen-cta-price {
  color: rgba(255, 255, 255, 0.78);
}

/* Right: tracklist / videos / embed */
.album-liner {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Tracklist */
body.album-page .album-liner .tracklist {
  margin: 0;
  padding: 0;
  max-width: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto;
}

body.album-page .album-liner .tracklist > h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 0.45rem;
  padding: 0;
  border: none;
}

body.album-page .album-liner .tracklist .track,
body.album-page .album-liner .tracklist .track:nth-child(even),
body.album-page .album-liner .tracklist .track:nth-child(odd) {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  font-size: clamp(0.96rem, 1.5vw, 1.05rem);
  line-height: 1.3;
}

body.album-page .album-liner .tracklist .track:not(:has(.track-music-video-link)) {
  grid-template-columns: 2rem minmax(0, 1fr);
}

body.album-page .album-liner .tracklist .track:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body.album-page .album-liner .tracklist .track:hover {
  background: transparent;
  color: #fff;
}

body.album-page .album-liner .tracklist .track:hover .track-title,
body.album-page .album-liner .tracklist .track:hover .track-title-link {
  color: #fff !important;
}

body.album-page .album-liner .tracklist .track > span:first-child {
  flex: none;
  width: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

body.album-page .album-liner .tracklist .track-title,
body.album-page .album-liner .tracklist .track-title-link {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.9) !important;
}

body.album-page .album-liner .tracklist .track-title-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  min-width: 0;
}

body.album-page .album-liner .tracklist .track-title-link:hover {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.album-page .album-liner .tracklist .track-link-icon {
  width: 12px;
  height: 12px;
  opacity: 0.4;
}

body.album-page .album-liner .tracklist .track-music-video-link {
  justify-self: end;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.album-page .album-liner .tracklist .track-music-video-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: none;
}

body.album-page .album-liner .tracklist .track-music-video-link svg {
  width: 10px;
  height: 10px;
}

/* Star overlays — texture only */
body.album-page.album-stars-saturn .album-liner .tracklist,
body.album-page.album-stars-winter .album-liner .tracklist,
body.album-page.album-stars-slowpoke .album-liner .tracklist,
body.album-page.album-stars-redux .album-liner .tracklist,
body.album-page.album-stars-iseewhatidont .album-liner .tracklist {
  position: relative;
  isolation: isolate;
  padding: 0;
  border-radius: 0;
}

body.album-page.album-stars-saturn .album-liner .tracklist::before,
body.album-page.album-stars-winter .album-liner .tracklist::before,
body.album-page.album-stars-slowpoke .album-liner .tracklist::before,
body.album-page.album-stars-redux .album-liner .tracklist::before,
body.album-page.album-stars-iseewhatidont .album-liner .tracklist::before {
  content: '';
  position: absolute;
  inset: -0.35rem -0.75rem;
  z-index: 0;
  border-radius: inherit;
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

body.album-page.album-stars-saturn .album-liner .tracklist::before {
  background: url('/assets/img/dots/orange stars.png') center / cover no-repeat;
}
body.album-page.album-stars-winter .album-liner .tracklist::before {
  background: url('/assets/img/dots/white stars.png') center / cover no-repeat;
}
body.album-page.album-stars-slowpoke .album-liner .tracklist::before {
  background: url('/assets/img/dots/yellow stars.png') center / cover no-repeat;
}
body.album-page.album-stars-redux .album-liner .tracklist::before {
  background: url('/assets/img/dots/red stars.png') center / cover no-repeat;
}
body.album-page.album-stars-iseewhatidont .album-liner .tracklist::before {
  background: url('/assets/img/dots/blue stars.png') center / cover no-repeat;
}

body.album-page.album-stars-saturn .album-liner .tracklist > *,
body.album-page.album-stars-winter .album-liner .tracklist > *,
body.album-page.album-stars-slowpoke .album-liner .tracklist > *,
body.album-page.album-stars-redux .album-liner .tracklist > *,
body.album-page.album-stars-iseewhatidont .album-liner .tracklist > * {
  position: relative;
  z-index: 1;
}

/* Videos */
body.album-page .album-liner .album-videos {
  margin: 0;
  max-width: none;
  padding-top: 0;
  border-top: none;
}

body.album-page .album-liner .album-videos > h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 0.55rem;
}

body.album-page .album-liner .album-videos .film-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.album-page .album-liner .album-videos .film-card {
  position: relative;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Album video rows are list items — no card-style fluent border */
body.album-page .album-liner .album-videos .film-card::after {
  content: none !important;
  display: none !important;
}

body.album-page .album-liner .album-videos .film-card:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body.album-page .album-liner .album-videos .film-card-link {
  display: grid;
  grid-template-columns: minmax(96px, 128px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
}

body.album-page .album-liner .album-videos .film-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-thumb);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.album-page .album-liner .album-videos .film-card-link:hover .film-card-thumb,
body.album-page .album-liner .album-videos .film-card-link.is-proximity-hover .film-card-thumb {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.album-page .album-liner .album-videos .film-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

body.album-page .album-liner .album-videos .film-card-link:hover .film-card-thumb img,
body.album-page .album-liner .album-videos .film-card-link.is-proximity-hover .film-card-thumb img {
  transform: scale(1.03);
}

body.album-page .album-liner .album-videos .film-play-btn {
  display: none;
}

body.album-page .album-liner .album-videos .film-card-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.5rem;
  row-gap: 0.15rem;
  min-width: 0;
}

body.album-page .album-liner .album-videos .film-card-title {
  flex: 1 1 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 550;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

body.album-page .album-liner .album-videos .film-card-link:hover .film-card-title,
body.album-page .album-liner .album-videos .film-card-link.is-proximity-hover .film-card-title {
  color: #fff;
}

body.album-page .album-liner .album-videos .film-card-tag,
body.album-page .album-liner .album-videos .film-card-date {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

body.album-page .album-liner .album-videos .film-card-date::before {
  content: none;
}

.album-embed,
body.album-page .album-liner > iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: none;
  margin: 0;
  border: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

body.album-page .album-col .album-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: max-content;
  margin-top: 0.15rem;
  padding-top: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.42);
}

body.album-page .album-col .album-back::before {
  content: '←';
  font-size: 0.85em;
  opacity: 0.7;
}

body.album-page .album-col .album-back:hover {
  color: rgba(255, 255, 255, 0.88);
}

body.album-page footer {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 1rem;
  background: transparent;
}

body.album-page .footer-inner {
  gap: 4px;
}

body.album-page .footer-brand {
  font-size: 0.78rem;
}

@media only screen and (max-width: 1030px) {
  .album-stage {
    padding-top: var(--page-top-offset);
    padding-bottom: 1.25rem;
  }

  .album-stage-inner {
    grid-template-columns: 1fr;
    row-gap: 1.35rem;
    width: min(560px, 100%);
  }

  .album-col {
    position: relative;
    top: auto;
    max-width: none;
    width: 100%;
    align-items: center;
    text-align: center;
    justify-self: stretch;
    gap: 1rem;
  }

  .album-sleeve {
    width: min(300px, 72vw);
  }

  .album-liner-head {
    align-items: center;
    width: min(100%, 420px);
  }

  .album-listen {
    align-items: center;
    width: min(100%, 420px);
  }

  .album-listen-icons {
    justify-content: center;
  }

  .album-listen-icons a,
  .album-listen-icons a.glass-press {
    width: 40px;
    height: 40px;
  }

  .album-listen-icons img {
    width: 32px;
    height: 32px;
  }

  .album-listen-cta {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .album-listen-cta-text {
    justify-content: center;
  }

  body.album-page .album-col .album-back {
    justify-content: center;
  }

  .album-liner {
    width: 100%;
    gap: 1.35rem;
    margin-top: 0;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .album-liner-head h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  body.album-page footer {
    padding-bottom: calc(var(--bottom-nav-offset) + 0.5rem);
  }
}

@media only screen and (max-width: 560px) {
  .album-stage-inner {
    padding: 0 14px;
    row-gap: 1rem;
  }

  .album-sleeve {
    width: min(260px, 78vw);
  }

  body.album-page .album-liner .tracklist .track,
  body.album-page .album-liner .tracklist .track:nth-child(even),
  body.album-page .album-liner .tracklist .track:nth-child(odd),
  body.album-page .album-liner .tracklist .track:not(:has(.track-music-video-link)) {
    grid-template-columns: 1.65rem minmax(0, 1fr);
    padding: 0.6rem 0;
  }

  body.album-page .album-liner .tracklist .track-music-video-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.1rem;
  }

  body.album-page .album-liner .album-videos .film-card-link {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.75rem;
    padding-inline: 0;
  }

  body.album-page .album-liner .album-videos .film-card-title {
    white-space: normal;
  }
}
