/* stylelint-disable */
/* stylelint-disable */
.related-section {
  position: relative;
  z-index: 1;
  margin: 0.5rem 0 4rem !important;
}
.related-section:before {
  content: "";
  background: var(--cl-g);
  z-index: -1;
  position: absolute;
  height: calc(100% + 4.5rem + clamp(4rem, 8.33vw, 6.4rem) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: -4rem;
  pointer-events: none;
}
.related-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 7.29vw, 5.6rem);
}
.related-section__books {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.related-section__books .book-card {
  min-width: 0;
}
.related-section__books .book-card * {
  color: var(--cl-d);
}
@media (max-width: 1023px) {
  .related-section__books {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) and (min-width: 576px) {
  .related-section {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 991px) {
  .related-section__books .book-card__image img, .related-section__books .book-card__image picture {
    width: 157px;
    margin-right: -3px;
  }
  .related-section__books {
    gap: 24px 40px;
  }
}
@media (max-width: 575px) {
  .related-section:before {
    bottom: -32px;
  }
  .related-section {
    margin: 13px 0 32px !important;
  }
  .related-section__box {
    gap: 32px;
  }
  .related-section__books .book-card__image img, .related-section__books .book-card__image picture {
    width: 130px;
  }
  .related-section__books {
    gap: 24px 16px;
  }
}
/*# sourceMappingURL=section-related-books.css.map */