.home-promotions {
  margin-top: 24px;
}

.home-promotions__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-promotions__viewport {
  overflow: hidden;
  width: 100%;
}

.home-promotions__track {
  display: flex;
  transition: transform .3s ease;
  will-change: transform;
}

.home-promotions__slide {
  box-sizing: border-box;
  min-width: 100%;
}

.home-promotions__banner-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.home-promotions__banner {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.home-promotions__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.home-promotions__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.home-promotions__title a {
  color: #111;
  text-decoration: none;
}

.home-promotions__title a:hover {
  color: #8dc63f;
}

.home-promotions__timer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.home-promotions__timer-cell {
  min-width: 58px;
  border: 1px solid #eceff4;
  border-radius: 10px;
  padding: 5px 6px;
  text-align: center;
  background: #fff;
}

.home-promotions__timer-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.home-promotions__timer-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #8b95a5;
  text-transform: uppercase;
}

.home-promotions__text {
  margin: 0 0 14px;
  color: #5d646f;
  font-size: 14px;
  line-height: 1.45;
}

.home-promotions__cards {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-promotions__cards > li.items {
  float: none;
  width: auto;
  margin: 0;
}

.home-promotions__more-mobile {
  display: none;
}

.home-promotions__more-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 22px 10px;
  border: 1px dashed #d6dce7;
  border-radius: 18px;
  background: #fff;
  color: #21283a;
  text-decoration: none;
}

.home-promotions__more-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.home-promotions__more-arrow {
  margin-top: 8px;
  color: #8dc63f;
  font-size: 20px;
  line-height: 1;
}

.home-promotions__arrow {
  border: 1px solid #e3e5ea;
  background: #fff;
  color: #7f8794;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  font-size: 22px;
  line-height: 28px;
  cursor: pointer;
  flex: 0 0 32px;
}

.home-promotions__arrow[disabled] {
  opacity: .35;
  cursor: default;
}

.home-promotions__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.home-promotions__dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #d8dce5;
  border: 0;
  padding: 0;
}

.home-promotions__dot.is-active {
  background: #8dc63f;
}

@media (max-width: 1199px) {
  .home-promotions__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-promotions__head {
    flex-direction: column;
    gap: 10px;
  }

  .home-promotions__banner {
    height: auto;
    aspect-ratio: 1 / 1;
    object-position: center center;
  }

  .home-promotions__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-promotions__more-mobile {
    display: block;
  }

  .home-promotions__slider {
    position: relative;
  }

  .home-promotions__arrow {
    display: block;
    position: absolute;
    z-index: 3;
    top: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(20, 24, 33, 0.35);
    color: #fff;
    line-height: 32px;
    font-size: 24px;
    backdrop-filter: blur(2px);
  }

  .home-promotions__arrow--prev {
    left: 8px;
  }

  .home-promotions__arrow--next {
    right: 8px;
  }

  .home-promotions__arrow[disabled] {
    opacity: .45;
  }
}
