.layout {
  display: grid; 
  grid-template-columns: 1fr;
  /* grid-gap: 2rem */
}

/* .album-cover { 
  position: relative; 
  line-height: 0;
  margin-bottom: 6rem;
  background: #000;
  padding-bottom: 75%;
}
.album-cover figcaption {
  position: absolute;
  display: flex; 
  bottom: 0;
  left: 0;
  right: 0;
  top: 0; 
  color: #F7B500;
  line-height: 1;
  padding: 1.5rem;
}
.album-cover img { border: 2px solid grey;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.album-text { padding:  0 1rem; }
.album-gallery { padding-top: 2rem; }

.album-gallery li:first-child { display: none; } /* TODO */

.album-gallery img { padding-bottom: 1rem; }
/* .album-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0 auto;
  grid-gap: 1rem;
  max-width: calc(var(--content-width) - 15rem);
  justify-content: center;
}
.album-gallery[data-even] {
  grid-template-columns: repeat(4, 1fr);
}
.album-gallery[data-count="1"] {
  grid-template-columns: 1fr;
}
.album-gallery[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}
 */


/* BREAKING POINTS 45 */


/* narrow */
@media screen and (max-width: 45rem) {
  .album-text { padding:  0; }
  .album content { margin-left: 0; }
} /* end narrow */

/* inbetween */
@media screen and (min-width: 45rem) {
  .layout { grid-template-columns: 1fr 2fr; }
  .album content { margin-left: 1rem; }
} /* end inbetween */


/* back-to-top BUTTON */
.scrollToTopBtn {
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 100;
  display: none;
  padding: 1em;
  cursor: pointer;
  /* transform: translateY(100px); */
  /* opacity: 0; */
  border: 1px solid #A0A0A0;
  border-radius: 0;
  transition: transform 0.5s, opacity 0.3s;
}

/* .scrollToTopBtn--active {
  transform: translateY(0);
  opacity: 1;
} */
