/* Стили только для мобильной карусели */
@media (max-width: 767px) {
  .mobile-video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
  }
  
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  .video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* Соотношение 16:9 */
    height: 0;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .indicator.active {
    background: #333;
  }
}

/* На десктопе скрываем весь блок карусели */
@media (min-width: 768px) {
  .mobile-video-carousel {
    display: none;
  }
}