.album-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
}

.album-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.album-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.68),
      rgba(0, 0, 0, 0.38) 44%,
      rgba(0, 0, 0, 0.84)
    );

  backdrop-filter: blur(4px);
}

.album-content {
  gap: clamp(26px, 4vh, 44px);
  padding-bottom: 56px;
}

.album-hero {
  margin-bottom: 0;
}

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

.album-card {
  width: min(100%, 420px);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.52);
}

.album-listen {
  margin-bottom: 0;
}

.album-listen .section-title {
  text-align: left;
}

.album-page .socials {
  margin-top: clamp(2px, 2vh, 18px);
}

@media (min-aspect-ratio: 1 / 1) {
  .album-card,
  .album-listen,
  .album-page .socials {
    max-width: 620px;
  }

  .album-listen .listen-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-aspect-ratio: 1 / 1) {
  .album-content {
    gap: clamp(22px, 3vh, 34px);
    padding-bottom: 42px;
  }

  .album-card {
    width: min(100%, 380px);
  }

  .album-listen {
    max-width: 620px;
  }

  .album-listen .listen-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .album-card {
    width: min(100%, 330px);
  }
}
