/* ====================== ОСНОВНОЙ БЛОК ====================== */
.audex-hero {
  position: relative;
  min-height: 500px;
  height: 500px;
  overflow: hidden; /* Измените с visible на hidden */
  width: 1140px;
  margin: 0 auto;
  margin-bottom: 50px; /* Добавьте отступ снизу */
  z-index: 1; /* Добавьте z-index */
}

.audex-hero__slide {
  position: relative;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
}

/* Фоны */
.audex-hero__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Левое размытие */
.audex-hero__blur-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;                    /* можно чуть больше 48% */
  height: 100%;
  background-size: cover;
  background-position: left center;
  filter: blur(28px);            /* можно 24-32px — подбери */
  transform: scale(1.15);        /* увеличь масштаб, чтобы края размытия "вылезали" за пределы */
  z-index: 2;
  pointer-events: none;
  overflow: hidden;              /* важно! */
}

/* Правое размытие */
.audex-hero__blur-right {
  left: auto;
  right: 0;
  background-position: right center;
}

/* Убираем ::after полностью, если не нужен тёмный градиент */
.audex-hero__blur-left::after,
.audex-hero__blur-right::after {
  display: none;   /* или удали весь блок ::after */
}
/* Контент */
.audex-hero__content {
  position: absolute;
  left: 8%;
  top: 18%;
  z-index: 4;
  max-width: 460px;
}

/* Контент для правой стороны */
.audex-hero__content--right {
  left: auto;
  right: 8%;
}

/* ====================== ТЕКСТОВЫЙ БЛОК (FLEX) ====================== */
.audex-hero__text-box {
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.audex-hero__content--right .audex-hero__text-box {
  align-items: flex-end;
}

.audex-hero__heading {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}

.audex-hero__content--right .audex-hero__heading::before {
  left: auto;
  right: 0;
  transform: none;
}

.audex-hero__text {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
}

.audex-hero__btn {
  background: #d97706;
  color: #fff;
  padding: 16px 38px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: opacity 0.3s;
  border: 1px solid #0000006e !important;
}
.audex-hero__btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* ====================== НАВИГАЦИЯ: СТРЕЛКИ ====================== */
/* Контейнер для стрелок (растянут на всю ширину) */
.audex-hero__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 20px;
}

/* Общие стили стрелок */
.audex-hero__arrow {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0.85;
}

.audex-hero__arrow:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Специальный стиль для стрелки "ВПЕРЁД" (›): белая с чёрной обводкой */
.audex-hero__arrow.audex-hero__arrow--next {
  color: #ffffff !important;
}
.audex-hero__arrow.audex-hero__arrow--next:hover {
  transform: scale(1.1);
}

/* ====================== НАВИГАЦИЯ: ТОЧКИ (DOTS) ====================== */
.audex-hero__dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  top: 250px;
}

.audex-hero__dots .slick-dots {
  display: flex !important;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.audex-hero__dots .slick-dots li {
  margin: 0;
  padding: 0;
}

.audex-hero__dots .slick-dots li button {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 0;
  transition: all 0.3s ease;
  font-size: 0;
  cursor: pointer;
}

.audex-hero__dots .slick-dots li button::before {
  display: none;
}

.audex-hero__dots .slick-dots li.slick-active button {
  background: #f5a623;
  border-color: #f5a623;
  transform: scale(1.2);
}

/* Скрываем стандартные точки Slick */
.audex-hero__slider .slick-dots,
.audex-hero__slider ul.slick-dots,
.slick-dots:not(.audex-hero__dots .slick-dots) {
  display: none !important;
}

.slick-arrow {
  border: none !important;
}
.slick-arrow:hover {
  background-color: transparent !important;
}
/* Общие стили стрелок */
.audex-hero__arrow {
  width: 48px;
  height: 48px;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  opacity: 0.85;

  padding: 8px; /* Отступ внутри кнопки для изображения */
}

/* Изображение стрелки */
.audex-hero__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.audex-hero__arrow:hover {
  opacity: 1;
  transform: scale(1.05);
}

.audex-hero__arrow.audex-hero__arrow--next:hover {
  transform: scale(1.1);
}
/* По умолчанию (слева) */
.audex-hero__text-box {
  text-align: start;
}

/* Для правой стороны */
.audex-hero__content--right .audex-hero__text-box {
  text-align: end;
}
/* ====================== АДАПТИВ ====================== */

@media (max-width: 1200px) {
  .audex-hero__content {
    max-width: 420px;
  }
  .audex-hero__heading {
    font-size: 2.1rem;
  }
  .audex-hero__arrow {
    font-size: 40px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 992px) {
  .audex-hero,
  .audex-hero__slide {
    min-height: 520px;
  }
  .audex-hero__blur-left {
    width: 48%;
    filter: blur(20px);
  }
  .audex-hero__content {
    left: 6%;
    top: 25%;
    max-width: 380px;
  }
  .audex-hero__content--right {
    left: auto;
    right: 6%;
  }
  .audex-hero__heading {
    font-size: 1.95rem;
  }
  .audex-hero__arrow {
    font-size: 36px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .audex-hero,
  .audex-hero__slide {
    min-height: 480px;
  }

  /* УБИРАЕМ РАЗМЫТЫЙ ФОН НА ПЛАНШЕТАХ */
  .audex-hero__blur-left,
  .audex-hero__blur-right {
    display: none !important;
  }

  .audex-hero__content {
    left: 5%;
    top: 22%;
    max-width: 340px;
  }
  .audex-hero__content--right {
    left: auto;
    right: 5%;
  }
  .audex-hero__heading {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .audex-hero__text {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .audex-hero__btn {
    padding: 14px 32px;
    font-size: 0.97rem;
  }

  /* Стрелки на планшетах: без тёмного фона */
  .audex-hero__arrow {
    display: flex !important;
    font-size: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.8;
  }

  /* Точки: внизу, без фона */
  .audex-hero__dots {
    bottom: 25px;
    padding: 0;
    background: transparent !important;
    top: 200px;
  }
  .audex-hero__dots .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .audex-hero,
  .audex-hero__slide {
    min-height: 440px;
    width: 100%;
    height: 100%;
  }

  /* УБИРАЕМ РАЗМЫТЫЙ ФОН НА МОБИЛЬНЫХ */
  .audex-hero__blur-left,
  .audex-hero__blur-right {
    display: none !important;
  }

  .audex-hero__content {
    left: 5%;
    top: 20%;
    max-width: 290px;
  }
  .audex-hero__content--right {
    left: auto;
    right: 5%;
  }
  .audex-hero__heading {
    font-size: 1.55rem;
  }

  /* Стрелки на мобильных: компактные, без фона */
  .audex-hero__controls {
    padding: 0 10px;
  }
  .audex-hero__arrow {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }

  /* Точки: внизу, компактные */
  .audex-hero__dots {
    bottom: 20px;
    padding: 0;
    background: transparent !important;
  }
  .audex-hero__dots .slick-dots {
    gap: 8px;
  }
  .audex-hero__dots .slick-dots li button {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}
@media (max-width: 1200px) {
  .audex-hero__arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 992px) {
  .audex-hero__arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .audex-hero__arrow {
    display: flex !important;
    width: 32px;
    height: 32px;
    opacity: 0.8;
  }
}

@media (max-width: 480px) {
  .audex-hero__arrow {
    width: 58px;
    height: 68px;

    border-width: 1px;
  }
}
