

.discography .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 26.774px;
}
.discography-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px; /* vertical / horizontal */
  width: 100%;
  max-width: 1100px;
}
.discography-title{
  font-size: 2.5rem; /* ~40px */
  font-weight: 10;
}
.album {
  position: relative;
  text-align: center;
  
}
.album-trigger {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}
.album img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.album figcaption {
  margin-top: 12px;
}

.album__title,
.album-title { 
color: #1D0C03;
text-align: center;
font-family: Manjari, sans-serif;
font-size: 17.147px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.album__year,
.album-year {
    color: #1D0C03;
    text-align: center;
    font-family: Manjari, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
  .album__title__exception{
    color: #1D0C03;
    text-align: center;
    font-family: Manjari, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.65);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.album:hover .album-overlay {
  opacity: 1;
  pointer-events: auto;
}
.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
  align-items: flex-start;
  gap: 40px;

}
.streaming-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF1CF;
  text-decoration: none;
  font-size: 14px;
  width: 300px;
  height: 20px;
}

.streaming-link svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.streaming-link span{
    color: #FFF1CF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 768px) {

  /* GRID vira coluna */
  .discography-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }

  /* container respira menos */
  .discography .container {
    padding: 0 20px 40px;
    gap: 24px;
  }

  /* imagem maior (mais presença) */
  .album img {
    width: 100%;
  }

  /* texto mais legível */
  .album__title,
  .album-title {
    font-size: 17px;
  }
  .album__title__exception{
    color: #1D0C03;
    text-align: center;
    font-family: Manjari, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .album__year,
  .album-year {
    font-size: 14px;
  }

  .streaming-links {
    display: flex;
    width: 209.087px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  /* link sem width quebrado */
  .streaming-link {
    width: 100%;
    align-items: center;
    color: #FFF1CF;
  }

  /* svg menor no mobile */
  .streaming-link svg {
    width: 35px;
    height: 35px;
  }

  /* texto do menu */
  .streaming-link span {
    font-size: 20px;
    font-weight: 500;
  }

}