.album-cards {
  padding: 1px 0px 47px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 29px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1300px) {
  .album-cards {
    grid-column-gap: 20px;
  }
}

@media (max-width: 767px) {
  .album-cards {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    padding: 1px 0px 91px;
  }
}

@media (max-width: 575px) {
  .album-cards {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.album-cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 95%;
  height: 273px;
  padding-top: 20px;
  border: #A2A2A2 1px solid;
  border-radius: 3px;
  position: relative;
  text-decoration: none;
  -webkit-box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
  font-size: 1.25rem;
  color: #707070;
  line-height: 27px;
}

@media (max-width: 1300px) {
  .album-cards .card {
    height: 19.46vw;
    padding: 8px 0px 3px;
  }
}

@media (max-width: 991px) {
  .album-cards .card {
    height: 23vw;
    min-height: 144px;
    padding: 8px 0px 6px;
  }
}

@media (max-width: 575px) {
  .album-cards .card {
    height: 35vw;
  }
}

.album-cards .card .card-img {
  width: 91%;
  height: 194px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

@media (max-width: 1300px) {
  .album-cards .card .card-img {
    height: 14.92vw;
    min-height: 142px;
  }
}

@media (max-width: 991px) {
  .album-cards .card .card-img {
    height: 17vw;
    min-height: 100px;
  }
}

@media (max-width: 575px) {
  .album-cards .card .card-img {
    height: 26vw;
  }
}

.album-cards .card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}

@media (max-width: 1300px) {
  .album-cards .card > span {
    font-size: 1rem;
    line-height: 16px;
  }
}

@media (max-width: 991px) {
  .album-cards .card > span {
    font-size: 0.75rem;
    line-height: 12px;
  }
}

.album-cards .card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  border: #A2A2A2 1px solid;
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
  background-color: #ffffff;
  z-index: -1;
}

.album-cards .card::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
  border: #A2A2A2 1px solid;
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
          box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.19);
  background-color: #ffffff;
  z-index: -2;
}
/*# sourceMappingURL=f022.css.map */