/* Белая секция */
.banner {
  background-color: #fff;
  padding: 10px 20px; /* уменьшенный отступ сверху/снизу для поднятия */
  display: flex;
  justify-content: center;
}

/* Черный контейнер с картинкой, затемнением и радиальной тенью */
.banner__container {
  position: relative;
  max-width: 1700px;
  width: 100%;
  height: 260px;
  border-radius: 20px;
  background-color: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 30px;
  color: #fff;
  /* z-index: 0; — можно убрать, не нужен */
}

/* Фоновая картинка с затемнением */
.banner__container::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/banner-bg_mob.webp') center/cover no-repeat;
  filter: brightness(0.5); /* регулируемое затемнение картинки */
  z-index: 0;
}

/* Центральная радиальная тень */
.banner__container::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

/* Контент поверх всего */
.banner__title,
.banner__subtitle,
.banner__btn {
  position: relative;
  z-index: 2;
}

/* Заголовок */
.banner__title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Подзаголовок */
.banner__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Кнопка */
.banner__btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner__btn:hover {
  transform: scale(1.05);
  background: #ffd633;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .banner__container { height: 250px; padding: 40px 20px; }
  .banner__title { font-size: 18px; }
  .banner__subtitle { font-size: 15px; }
  .banner__btn { font-size: 16px; padding: 12px 24px; }
}