/* === Основные стили === */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  background-color: #f15a24;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.slide-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(10px, 4vw, 40px) clamp(10px, 2vw, 50px) clamp(10px, 4vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}

.slide-left {
  flex: 1;
}

.slide-left h2 {
  font-size: clamp(10px, 4vw, 52px);
  margin-bottom: 0.3em;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.slide-left h3 {
  font-size: clamp(8px, 3vw, 26px);
  margin-bottom: 1em;
  font-weight: 400;
  color: #fff;
}

.slide-left ul {
  padding: 0;
  margin-bottom: 1em;
  margin-left: 10px;
}

.slide-left li {
  font-size: clamp(6px, 2vw, 18px);
  margin-bottom: 0.6em;
  position: relative;
  /* padding-left: 20px; */
  list-style: disc;
}

.slide-right img {
  width: clamp(70px, 30vw, 500px);
  height: auto;
  display: block;
}

/* === Кнопки === */
.nav-fixed {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 clamp(10px, 2vw, 60px);
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.nav-inner .swiper-button-prev,
.nav-inner .swiper-button-next {
  position: static;
  background: #d94a3b;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.nav-inner .swiper-button-prev::after,
.nav-inner .swiper-button-next::after {
  font-size: 13px;
  font-weight: 600;
}

.nav-inner .swiper-button-prev:hover,
.nav-inner .swiper-button-next:hover {
  background: #b53d2f;
}

@media (max-width: 768px) {
  .nav-fixed {
    bottom: 4px;
  }

  .nav-inner .swiper-button-prev,
  .nav-inner .swiper-button-next {
    width: 17px;
    height: 17px;
  }

  .nav-inner .swiper-button-prev::after,
  .nav-inner .swiper-button-next::after {
    font-size: 8px;
  }
}
