.album-cover {
  position: relative;
  line-height: 0;
  margin-bottom: 6rem;
  background: #000;
  padding-bottom: 75%;
}
.album-cover figcaption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0,0,0, .5);
  text-align: center;
  color: #fff;
  line-height: 1;
  padding: 1.5rem;
}
.album-cover img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.album-cover h1 {
  font-size: 3rem;
}
.album-text {
  max-width: 40rem;
  margin: 0 auto 6rem;
  text-align: center;
}
.album-gallery {
  display: grid;
  align-items: center;
  margin: 0 auto;
  grid-gap: 1rem;
  max-width: calc(var(--content-width) - 15rem);
  justify-content: center;
}

@media screen and (min-width: 20em) {
  .album-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 30em) {
  .album-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 60em) {
  .album-gallery {
    grid-template-columns: repeat(7, 1fr);
  }
  .albums[data-even] {
    grid-template-columns: repeat(7, 1fr);
  }
}

.album h1 {
	font-weight: 300;
	font-size: 1.75rem;
	margin-bottom: .75rem;
    line-height: 1.65rem;
}

/* HalkaBox */

.hb-image-div {
    max-width: 1000px;
}

.hb-wrapper.hb-dark-theme .hb-main-container {
    background-color: #212121 !important;
}