@charset "UTF-8";
/**
 * Border radius tylko dla lewej strony elementu
 * @param {length} $radius - Promień zaokrąglenia (domyślnie 0.5rem)
 */
/**
 * Border radius tylko dla prawej strony elementu
 * @param {length} $radius - Promień zaokrąglenia (domyślnie 0.5rem)
 */
.product-section--usage .product-section__content {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
@media (max-width: 1240px) {
  .product-section--usage .product-section__content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .product-section--usage .product-section__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 670px) {
  .product-section--usage .product-section__content {
    grid-template-columns: 1fr;
  }
}
.product-section--usage__box {
  transition: 200ms;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
}
.product-section--usage__box:hover {
  transform: translateY(-0.5rem);
}
.product-section--usage__box--teaser {
  background-color: #f6f6f6;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0.75rem;
  position: relative;
}
.product-section--usage__box--teaser__icon {
  position: absolute;
  top: 1rem;
  left: 0;
}
.product-section--usage__box--teaser__content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 2.25rem;
  font-size: 2.25rem;
  line-height: 2.625rem;
  font-weight: 400;
  color: #423747;
}
.product-section--usage__box--teaser__content .bold {
  font-weight: 700;
}
.product-section--usage__box__bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.product-section--usage__box__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-section--usage__box__bg::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: linear-gradient(to top, #423747, transparent);
  pointer-events: none;
}
.product-section--usage__box__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.25rem;
  display: flex;
  align-items: end;
  z-index: 1;
}
.product-section--usage__box__content__title {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
}
.product-section--usage__box__content__title .bold {
  font-weight: 700;
}
