/*
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
) !default;
*/
.awards-list__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .awards-list__items {
    gap: 6rem;
  }
}
.awards-list__item {
  display: flex;
  gap: 6rem;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .awards-list__item {
    flex-direction: column;
    gap: 0;
  }
}
.awards-list__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .awards-list__item:nth-child(even) {
    flex-direction: column;
  }
}
.awards-list__item:nth-child(even) .awards-list__content {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .awards-list__item:nth-child(even) .awards-list__content {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
}
.awards-list__item--hidden {
  display: none;
}
.awards-list__media {
  flex: 0 0 35%;
  max-width: 35%;
}
@media only screen and (max-width: 767px) {
  .awards-list__media {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.awards-list__gallery {
  height: 100%;
}
.awards-list__gallery .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto;
}
.awards-list__gallery .splide__arrow {
  background-color: #ED1C24;
  border: none;
  box-shadow: none;
  width: 36px;
  height: 36px;
  opacity: 1;
}
.awards-list__gallery .splide__arrow svg {
  display: none;
}
.awards-list__gallery .splide__arrow--prev {
  -webkit-mask-image: url("../../img/arrow-left.svg");
  mask-image: url("../../img/arrow-left.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  left: -1rem;
}
.awards-list__gallery .splide__arrow--next {
  -webkit-mask-image: url("../../img/arrow-right.svg");
  mask-image: url("../../img/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  right: -1rem;
}
.awards-list__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .awards-list__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
.awards-list__product-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.awards-list__awards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.awards-list__award-item {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
}
.awards-list__award-date {
  color: #707070;
}
.awards-list__load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
