/* Discography mosaic — 64 covers */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 1050px;
  margin: 2rem auto 0;
}

.discography-cover {
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.discography-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(0.72) contrast(1.15);
  transition: filter .25s ease, transform .18s ease, box-shadow .18s ease;
  cursor: zoom-in;
}

.discography-cover:hover {
  z-index: 50;
}

.discography-cover:hover img {
  filter: grayscale(0%) brightness(1.1) contrast(1);
  transform: scale(1.25);
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
}


@media (max-width: 900px) and (min-width: 701px) {
  .discography-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .discography-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 440px) {
  .discography-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .discography-cover:hover img {
    transform: scale(1.10);
  }
}
.breakout-link {
  display: inline-block;
  margin-top: 50px;
  color: #c85a32 !important;
  font-family: monospace;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s ease;
}

.breakout-link:visited {
  color: #c85a32 !important;
}

.breakout-link:hover {
  color: #c85a32 !important;
  opacity: .55;
}
