/* Spotify Playlists Panel */
.spotify-playlists-mask {
  background: linear-gradient(90deg, #1a1a1a, #1e7a45);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  transition: 0.3s ease;
}

.spotify-playlists-mask:hover,
.spotify-playlists-mask.active {
  background: linear-gradient(90deg, #252525, #238c4e);
}

.spotify-playlists-mask > .button-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 0.2em;
  padding-bottom: 2.5vh;
}

.spotify-playlists-mask > .button-content h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Archivo Black", serif;
  font-size: clamp(4px, 6vw, 95px);
  font-weight: 400;
  line-height: 1;
}

.spotify-playlists-mask > .button-content h3 {
  margin: 0;
  color: #b3b3b3;
  font-family: "Lexend", sans-serif;
  font-size: clamp(2px, 2.5vw, 35px);
  font-weight: 400;
  line-height: 1;
}

.spotify-playlists > .content {
  background: linear-gradient(323deg, rgba(29, 185, 84, 0.15) 14%, rgba(0,0,0,1) 89%);
  border-radius: 0 0 12px 12px;
}

.spotify-playlists > .content.show {
  padding: 2%;
}

.spotify-playlists > .content p {
  color: #b3b3b3;
  font-family: "Archivo Black", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: justify;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* Spotify Playlists Grid - 2 per row */
.spotify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spotify-grid iframe {
  width: 100%;
  height: 500px;
  min-width: 0;
}

@media (max-width: 700px) {
  .spotify-grid {
    grid-template-columns: 1fr;
  }
}
