.home-layout {
  display: block;
  width: 100%;
}

.home-main {
  width: 100%;
  padding-bottom: 32px;
}

.home {
  padding-bottom: 24px;
}

.hero-albums {
  position: relative;
  padding: 18px 0 28px;
  overflow: hidden;
}

.hero-albums__inner {
  position: relative;
  z-index: 1;
}

.hero-albums__content {
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

.hero-albums__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-albums__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hero-albums__eyebrow {
  margin: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-albums__content h1,
.hero-albums__content h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 4.3rem);
  line-height: 0.98;
}

.hero-albums--secondary .hero-albums__content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-albums__stage {
  position: relative;
  padding: 0 56px;
}

.hero-albums__track {
  position: relative;
  min-height: 540px;
  padding: 10px 0;
  outline: none;
}

.hero-albums__slide {
  --offset: 0;
  --slide-shift: 220px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(18vw, 220px);
  aspect-ratio: 0.72;
  transform:
    translate3d(calc(-50% + (var(--offset) * var(--slide-shift))), -50%, 0)
    rotateY(calc(var(--offset) * -6deg))
    scale(0.9);
  transform-origin: center center;
  opacity: 0.38;
  filter: saturate(0.95) brightness(0.82);
  z-index: 1;
  pointer-events: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease,
    filter 0.35s ease,
    width 0.35s ease,
    aspect-ratio 0.35s ease;
}

.hero-albums__slide.is-visible {
  pointer-events: auto;
}

.hero-albums__slide.is-near {
  opacity: 0.88;
  filter: none;
  z-index: 2;
  transform:
    translate3d(calc(-50% + (var(--offset) * var(--slide-shift))), -50%, 0)
    rotateY(calc(var(--offset) * -4deg))
    scale(0.94);
}

.hero-albums__slide.is-active {
  width: min(31vw, 430px);
  aspect-ratio: 1;
  opacity: 1;
  filter: none;
  z-index: 3;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) rotateY(0deg) scale(1);
}

.hero-albums__slide.is-hidden {
  pointer-events: none;
  opacity: 0;
}

.hero-albums__card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  color: #fff;
  text-decoration: none;
}

.hero-albums__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-albums__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.12) 42%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.hero-albums__meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 6px;
}

.hero-albums__artist {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-albums__title {
  display: block;
  max-width: calc(100% - 86px);
  font-size: clamp(1.4rem, 2vw, 2.25rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.hero-albums__play {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 1.55rem;
}

.hero-albums__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero-albums__nav--prev {
  left: 8px;
}

.hero-albums__nav--next {
  right: 8px;
}

.hero-albums__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-albums__dots--inline {
  margin: 0;
}

.hero-albums__dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.hero-albums__dot.is-active {
  background: #fff;
  transform: scale(1.18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.card .thumb,
.album-thumb,
.artist-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card .thumb {
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.card .cover,
.album-thumb img,
.artist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card .cover {
  transition: transform 0.35s ease, filter 0.35s ease;
  transform: scale(1.001);
}

.card:hover .cover {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}

.card .meta {
  padding: 10px;
  text-align: center;
}

.card .meta .title {
  color: #c0c0c0 !important;
  font-weight: 700;
  margin: 0;
  font-size: 1.05rem;
}

.card .meta .sub {
  color: #fff !important;
  font-size: 0.9rem;
  margin: 4px 0 0;
}

.card .link {
  text-decoration: none;
  color: inherit;
}

.card .link:focus-visible,
.hero-albums__card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 4px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
}

.carousel-controls {
  display: none;
  gap: 8px;
}

.showcase-section,
.showcase-carousel {
  display: none !important;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.carousel * {
  touch-action: inherit;
}

.hero-albums--random {
  padding-bottom: 44px;
}

.random-showcase {
  margin-top: clamp(40px, 6vh, 80px);
  position: relative;
  padding: 0 64px;
}

.random-showcase__viewport {
  position: relative;
  min-height: 560px;
  padding: 28px 24px 10px;
  border-radius: 40px;
  overflow: hidden;
  outline: none;
  isolation: isolate;
}

.random-showcase__viewport::before,
.random-showcase__viewport::after,
.random-showcase__glow,
.random-showcase__frame {
  display: none;
}

.random-showcase__rack {
  position: absolute;
  pointer-events: none;
  top: 306px;
  width: min(33vw, 500px);
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03) 55%,
    rgba(255, 255, 255, 0.015) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.12);
  z-index: 0;
}

.random-showcase__rack::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 5%;
  bottom: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.random-showcase__rack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.32;
}

.random-showcase__rack--left {
  left: 2.5%;
  transform: perspective(1100px) rotateY(30deg) rotateZ(-2deg);
  transform-origin: left center;
}

.random-showcase__rack--right {
  right: 2.5%;
  transform: perspective(1100px) rotateY(-30deg) rotateZ(2deg);
  transform-origin: right center;
}

.random-showcase__album {
  --offset: 0;
  --abs-offset: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(154px, 12vw, 210px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition:
    transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.95s ease,
    filter 0.95s ease;
}

.random-showcase__link {
  display: grid;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.random-showcase__jewelcase {
  display: block;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.random-showcase__jewelcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.random-showcase__caption {
  display: none;
  text-align: center;
  max-width: min(42vw, 380px);
  margin: 0 auto;
}

.random-showcase__artist {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.random-showcase__title {
  display: block;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: min(40vw, 440px);
  margin: 0 auto;
}

.random-showcase__album.is-left,
.random-showcase__album.is-right,
.random-showcase__album.is-active {
  opacity: 1;
}

.random-showcase__album.is-left,
.random-showcase__album.is-right {
  top: 50%;
  pointer-events: auto;
}

.random-showcase__album:not(.is-active) .random-showcase__link {
  pointer-events: none;
  cursor: default;
}

.random-showcase__album.is-left {
  transform:
    translate3d(
      calc(-50% - 31vw + ((var(--abs-offset) - 1) * 26px)),
      calc(-50% + 18px - ((var(--abs-offset) - 1) * 2px)),
      0
    )
    perspective(1100px)
    rotateY(30deg)
    rotateZ(-2deg)
    scale(calc(1 - ((var(--abs-offset) - 1) * 0.04)));
}

.random-showcase__album.is-right {
  transform:
    translate3d(
      calc(-50% + 31vw - ((var(--abs-offset) - 1) * 26px)),
      calc(-50% + 18px - ((var(--abs-offset) - 1) * 2px)),
      0
    )
    perspective(1100px)
    rotateY(-30deg)
    rotateZ(2deg)
    scale(calc(1 - ((var(--abs-offset) - 1) * 0.04)));
}

.random-showcase__album.is-left .random-showcase__jewelcase,
.random-showcase__album.is-right .random-showcase__jewelcase {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.random-showcase__album.is-left .random-showcase__jewelcase img,
.random-showcase__album.is-right .random-showcase__jewelcase img {
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.random-showcase__album.is-active {
  width: clamp(230px, 24vw, 360px);
  transform: translate3d(-50%, calc(-50% - 12px), 0) scale(1);
  z-index: 4;
  pointer-events: auto;
}

.random-showcase__album.is-active .random-showcase__caption {
  display: block;
  margin-top: 10px;
  padding-bottom: 0;
}

.random-showcase__album.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .hero-albums__track {
    min-height: 500px;
  }

  .hero-albums__slide {
    --slide-shift: 190px;
    width: min(18vw, 190px);
  }

  .hero-albums__slide.is-active {
    width: min(38vw, 390px);
  }

  .random-showcase__viewport {
    min-height: 530px;
  }

  .random-showcase__rack {
    top: 292px;
    width: min(31vw, 390px);
    height: 84px;
  }

  .random-showcase__album {
    width: clamp(132px, 12vw, 176px);
  }

  .random-showcase__album.is-left {
    transform:
      translate3d(calc(-50% - 30vw + ((var(--abs-offset) - 1) * 20px)), calc(-50% + 18px), 0)
      perspective(1000px)
      rotateY(28deg)
      rotateZ(-2deg)
      scale(calc(1 - ((var(--abs-offset) - 1) * 0.045)));
  }

  .random-showcase__album.is-right {
    transform:
      translate3d(calc(-50% + 30vw - ((var(--abs-offset) - 1) * 20px)), calc(-50% + 18px), 0)
      perspective(1000px)
      rotateY(-28deg)
      rotateZ(2deg)
      scale(calc(1 - ((var(--abs-offset) - 1) * 0.045)));
  }
}

@media (max-width: 980px) {
  .hero-albums,
  .hero-albums__stage,
  .hero-albums__track {
    overflow-anchor: none;
  }

  .hero-albums {
    padding: 12px 0 22px;
  }

  .hero-albums__content {
    margin-bottom: 16px;
  }

  .hero-albums__stage {
    padding: 0;
  }

  .hero-albums__nav,
  .hero-albums--random .hero-albums__nav,
  .hero-albums--random .random-showcase__frame,
  .hero-albums--random .random-showcase__glow,
  .hero-albums--random .random-showcase__rack,
  .hero-albums--random .random-showcase__viewport::before,
  .hero-albums--random .random-showcase__viewport::after {
    display: none !important;
  }

  [data-hero-carousel] {
    overflow: visible;
    touch-action: pan-y;
  }

  .hero-albums__track {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    min-height: 0;
    padding: 0 20px 8px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x pan-y;
    scroll-behavior: smooth;
  }

  .hero-albums__track::-webkit-scrollbar {
    display: none;
  }

  .hero-albums__slide,
  .hero-albums__slide.is-near,
  .hero-albums__slide.is-active,
  .hero-albums__slide.is-hidden,
  .hero-albums__slide.is-visible,
  [data-hero-slide],
  [data-hero-slide].is-hidden,
  [data-hero-slide].is-near,
  [data-hero-slide].is-visible,
  [data-hero-slide].is-active,
  [data-hero-slide].is-side {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
    min-width: 75%;
    aspect-ratio: 0.98;
    opacity: 1 !important;
    z-index: auto;
    pointer-events: auto;
    filter: none;
    visibility: visible !important;
    transform: scale(0.85);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  [data-hero-slide].is-active,
  .hero-albums__slide.is-active {
    transform: scale(1);
    opacity: 1 !important;
    z-index: 2;
  }

  [data-hero-slide].is-side {
    transform: scale(0.96);
    opacity: 0.8 !important;
  }

  .hero-albums__card {
    border-radius: 26px;
  }

  .hero-albums__meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 4px;
  }

  .hero-albums__artist {
    font-size: 0.95rem;
  }

  .hero-albums__title {
    max-width: calc(100% - 72px);
    font-size: clamp(1.2rem, 3.7vw, 1.9rem);
    line-height: 1.02;
  }

  .hero-albums__play {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  [data-hero-slide] * {
    touch-action: auto;
  }

  .hero-albums--random {
    overflow: hidden;
    padding-bottom: 24px;
  }

  .hero-albums--random .random-showcase {
    margin-top: 24px;
    padding: 0 18px;
  }

  .hero-albums--random .random-showcase__viewport {
    position: relative !important;
    min-height: 560px !important;
    padding: 0 0 96px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: transparent !important;
    isolation: isolate;
  }

  .hero-albums--random .random-showcase__album {
    position: absolute !important;
    left: 50% !important;
    top: 43% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition:
      transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.24s ease,
      filter 0.24s ease !important;
  }

  .hero-albums--random .random-showcase__album.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero-albums--random .random-showcase__album.is-wall {
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2 !important;
    transform:
      translate3d(calc(-50% + var(--wall-x, 0px)), calc(-50% + var(--wall-y, 0px)), 0)
      rotate(var(--wall-rotate, 0deg))
      scale(var(--wall-scale, 1)) !important;
    filter: saturate(0.88) brightness(0.88) !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__link {
    display: block !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__jewelcase {
    width: var(--wall-size, 120px) !important;
    padding: 8px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 22px !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__jewelcase img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2) !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__caption {
    display: none !important;
  }

  .hero-albums--random .random-showcase__album.is-active {
    width: min(64vw, 320px) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 6 !important;
    transform: translate3d(-50%, -50%, 0) scale(1) !important;
    filter: none !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__jewelcase {
    padding: 14px !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.26),
      0 28px 42px rgba(0, 0, 0, 0.32) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__jewelcase img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    border-radius: 20px !important;
    background: transparent !important;
  }

.hero-albums--random .random-showcase__album.is-active .random-showcase__caption {
  position: static !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  margin-top: 18px !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}-shadow: none !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__artist {
    display: block !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: clamp(0.95rem, 3.8vw, 1.1rem) !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__title {
    display: block !important;
    margin: 0 !important;
    max-width: 100% !important;
    color: #fff !important;
    font-size: clamp(1.15rem, 5vw, 1.55rem) !important;
    line-height: 1.15 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    text-wrap: balance !important;
  }
}

@media (max-width: 700px) {
  .hero-albums {
    padding: 8px 0 18px;
  }

  .hero-albums__intro {
    gap: 10px;
    margin-bottom: 8px;
  }

  .hero-albums__content h1,
  .hero-albums__content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-albums__eyebrow {
    margin: 8px 0;
    font-size: 0.76rem;
  }

  .hero-albums__dots {
    gap: 8px;
  }

  .hero-albums__dot {
    width: 10px;
    height: 10px;
  }

  .hero-albums__track {
    gap: 8px;
    padding: 6px max(14px, 4vw) 12px;
    scroll-padding-inline: max(14px, 4vw);
  }

  .hero-albums__slide,
  .hero-albums__slide.is-near,
  .hero-albums__slide.is-active,
  .hero-albums__slide.is-hidden,
  .hero-albums__slide.is-visible {
    flex-basis: min(78vw, 320px);
    width: min(78vw, 320px);
    aspect-ratio: 0.98;
  }

  .hero-albums__meta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-albums__artist {
    font-size: 0.88rem;
  }

  .hero-albums__title {
    max-width: calc(100% - 64px);
    font-size: clamp(1.1rem, 5.2vw, 1.75rem);
  }

  .hero-albums__play {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
}

@media (max-width: 680px) {
  .hero-albums--random .random-showcase {
    padding: 0 12px;
  }

  .hero-albums--random .random-showcase__viewport {
    min-height: 480px !important;
    padding-bottom: 80px !important;
  }

  .hero-albums--random .random-showcase__album.is-active {
    width: min(68vw, 260px) !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__jewelcase {
    width: var(--wall-size, 110px) !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__caption {
    bottom: 14px !important;
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    padding: 14px 14px !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__title {
    font-size: clamp(1rem, 5.4vw, 1.3rem) !important;
  }
}

@media (max-width: 480px) {
  .hero-albums--random .random-showcase__viewport {
    min-height: 520px !important;
    padding-bottom: 88px !important;
  }

  .hero-albums--random .random-showcase__album.is-active {
    width: min(72vw, 232px) !important;
  }

  .hero-albums--random .random-showcase__album.is-wall .random-showcase__jewelcase {
    width: var(--wall-size, 92px) !important;
    padding: 6px !important;
    border-radius: 18px !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__caption {
    bottom: 12px !important;
    padding: 12px 12px !important;
  }

  .hero-albums--random .random-showcase__album.is-active .random-showcase__title {
    font-size: clamp(0.95rem, 6vw, 1.15rem) !important;
  }
}
