.tb-awards-slider {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tb-awards-slider__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 30px;
}

.tb-awards-slider__viewport {
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 0;
  box-sizing: border-box;
}

.tb-awards-slider__swiper {
  overflow: hidden;
}

.tb-awards-slider__swiper .swiper-wrapper {
  align-items: center;
}

.tb-awards-slider__slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tb-awards-slider__link,
.tb-awards-slider__image-holder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tb-awards-slider__image {
  height: 140px;
  width: auto;
  display: block;
}

.tb-awards-slider__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

.tb-awards-slider__overlay--left {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
}

.tb-awards-slider__overlay--right {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
}

.tb-awards-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 100%;
  border: 0;
  background: none;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease;
}

/* .tb-awards-slider__nav:focus {
  outline: 2px solid #0e4bc0;
  outline-offset: 2px;
} */

.tb-awards-slider__nav:hover {
  color: #0e4bc0;
}

.tb-awards-slider__nav--prev {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, rgba(255, 255, 255, 0) 100%);
}

.tb-awards-slider__nav--next {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, #ffffff 55%, rgba(255, 255, 255, 0) 100%);
}

.tb-awards-slider__nav-icon svg {
  display: block;
  width: 22px;
  height: 11px;
}

.tb-awards-slider__pagination {
  display: flex;
  align-items: center;
  gap: 9px;
  bottom: 10px;
}

.tb-awards-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e3e3e3;
  opacity: 1;
  margin: 0;
}

.tb-awards-slider .swiper-pagination-bullet.is-active,
.tb-awards-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0e4bc0;
}

@media (max-width: 1024px) {
  .tb-awards-slider__overlay {
    width: 70px;
  }

  .tb-awards-slider__nav {
    width: 70px;
  }
}

@media (max-width: 767px) {
  .tb-awards-slider__overlay {
    width: 32px;
  }

  .tb-awards-slider__nav {
    width: 32px;
  }

  .tb-awards-slider__image {
    height: 110px;
  }
}
