.album-detail {
  margin-top: 40px;
}

.album-layout {
  display: grid;
  grid-template-columns: 380px minmax(0,1fr);
  gap: 80px;
}

.album-sidebar {
  position: sticky;
  top: 40px;
  align-self: start;
}

.album-cover-large {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-subtle);
  border: 1px solid var(--line);
  margin-bottom: 40px;
  overflow: hidden;
}

.album-cover-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.links-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.album-title-large {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 16px;
}

.album-translation-large {
  font-family: "Instrument Serif", serif;
  font-size: 2.5rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.album-meta-large {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.lead-text {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 40px;
}

.notes-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 65ch;
}

.section-subtitle {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 60px 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.track-list {
  padding-left: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.credits-body {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-wrap;
}

@media (max-width: 1000px) {
  .album-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .album-sidebar {
    position: static;
    max-width: 400px;
  }
}

.album-content { min-width:0; }
.tracklist-section .section-subtitle { margin-top:0; border-top:0; padding-top:0; }
