body.albums {
  display: flex;
  flex-direction: column;
}
body.albums div.albums-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12rem 0;
  width: 100%;
}
body.albums div.albums-hero h1 {
  font-size: 4rem;
  color: var(--ea-orange);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  padding: 0 2rem;
  opacity: 0;
}
body.albums div.albums-hero p {
  font-size: 1.25rem;
  color: var(--ea-white);
  text-align: center;
  margin-top: 1rem;
  width: 60%;
  padding: 0 2rem;
  opacity: 0;
}
body.albums div.albums-container {
  display: flex;
  flex-direction: column;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  height: -moz-max-content;
  height: max-content;
  margin-top: 12rem;
}
body.albums div.albums-container div.album-group {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: -12rem;
}
body.albums div.albums-container div.album-group a.album-item {
  width: 30vw;
  height: 30vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
}
body.albums div.albums-container div.album-group a.album-item:last-child {
  margin-top: 6rem;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  height: 100%;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-top {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-top div.album-item-spec {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: white;
  gap: 0.5rem;
  font-size: 0.75rem;
  background-color: rgba(0, 0, 0, 0.5);
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-top div.album-item-spec i {
  font-size: 1.25rem;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-bottom h2 {
  font-size: 1.5rem;
  color: var(--ea-orange);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}
body.albums div.albums-container div.album-group a.album-item div.album-item-elements div.album-item-bottom p {
  font-size: 1rem;
  color: var(--ea-white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 1100px) {
  .album-item-bottom p {
    display: none;
  }
  .album-item-spec {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body.albums div.albums-hero {
    padding: 8rem 0;
  }
  body.albums div.albums-hero h1 {
    font-size: 3rem;
  }
  body.albums div.albums-hero p {
    width: 80%;
  }
  body.albums div.albums-container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: unset;
    width: 100%;
    max-width: unset;
  }
  body.albums div.albums-container div.album-group {
    flex-direction: column;
    margin-top: unset;
    width: 100%;
  }
  body.albums div.albums-container div.album-group a.album-item {
    width: 100%;
    height: 40vh;
    background-size: cover;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
  }
  body.albums div.albums-container div.album-group a.album-item:last-child {
    margin-top: 2rem;
  }
}/*# sourceMappingURL=albums.css.map */