/* SECTION 4 // Releases */

#section_4 {
  display: block;
  align-items: center;
  justify-content: space-around;
  height: auto;
  padding: var(--section-padding) var(--section-padding) 0;
  color: white;
  background: black;
}

/*#gallery_container {
  background: rgba(255,0,0,0.5);
  display: block;
  height: auto;
  margin: auto;
}*/

#gallery_text_container {
  background: var(--box-background);
  border-radius: var(--border-radius);
  padding: 20px 20px 0px;
  margin-bottom: 20px;
}

#gallery_row {
  display: var(--display-flex-grid);
  justify-content: center;
  text-align: center;
  padding: 25px 0 15px;
}

.album_container {
  padding: 5px;
}

.cover {
  //display: var(--display-blockinlineblock);
  width: 300px;
  height: 300px;
  color: white;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, rgb(20, 20, 20) 0%, rgb(10, 10, 10) 100%);
  //padding: 20px;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
  box-shadow: inset 0px 0px 2px rgba(255 255 255 / 0.5), inset 0px 1px 1px rgba(255 255 255 / 0.5), 0px 6px 10px rgba(0 0 0 / 0.5), 0px 6px 1px rgba(0 0 0 / 0.5), 0px 4px 5px rgba(255 255 255 / 0.1);
  transition: var(--transition);
}

.cover:hover {
  scale: 1.04;
  box-shadow: inset 0px 0px 2px rgba(255 255 255 / 0.5), inset 0px 1px 1px rgba(255 255 255 / 0.5), 0px 6px 10px rgba(0 0 0 / 0.5), 0px 6px 1px rgba(0 0 0 / 0.5), 0px 4px 5px rgba(255 255 255 / 0.1);
}

.gallery_current_album {
  margin: 30px 0 var(--section-padding);
}

#gallery_song_row {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.album_header {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-right: 10px;
}

.album_date {
  opacity: 0.25;
  font-size: 10px;
  margin-right: 20px;
  margin-top: 5px;
}

.buy_array {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: fit-content;
  margin: auto;
}

/* Apple Music */
.buy_button_apple_music {
  background: url("../../resources/releases/apple_music.svg") no-repeat center center / cover;
  width: 25px;
  height: 25px;
  margin: 5px;
}
.buy_button_apple_music:hover {
  background: url("../../resources/releases/apple_music_hover.svg") no-repeat center center / cover;
}

/* Spotify */
.buy_button_spotify {
  background: url("../../resources/releases/spotify.svg") no-repeat center center / cover;
  width: 25px;
  height: 25px;
  margin: 5px;
}
.buy_button_spotify:hover {
  background: url("../../resources/releases/spotify_hover.svg") no-repeat center center / cover;
}

/* Amazon */
.buy_button_amazon {
  background: url("../../resources/releases/amazon.svg") no-repeat center center / cover;
  width: 35px;
  height: 35px;
  margin: 5px;
}
.buy_button_amazon:hover {
  background: url("../../resources/releases/amazon_hover.svg") no-repeat center center / cover;
}

.song_row {
  display: grid;
  grid-template-columns: 50px auto 21px 35px;
  margin-top: 5px;
  background: black;
  padding: 10px 15px;
  border-radius: var(--border-radius);
}

.song_number {
  grid-column: 1;
  font-weight: 900;
  font-size: 16px;
  text-align: left;
}

.song_title {
  grid-column: 2;
  text-align: left;
}