.ar-video-section {
  padding: 60px 0;
  text-align: center;
}

.ar-video-title {
  font-size: 32px;
  font-weight: 700;
  
  
  
  
}

.ar-video-subtitle {
  color: #6b7280;
  margin-bottom: 40px;
  text-align:center;
}

/* Slider */
.ar-video-slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.ar-video-track {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
}

.ar-video-item {
  flex: 0 0 calc(50% - 12px);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ar-video-item {
    flex: 0 0 100%;
  }
}

/* Thumb */
.ar-video-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

/* Play */
.ar-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-video-play span {
  width: 72px;
  height: 72px;
  background: red;
  border-radius: 50%;
  position: relative;
}

.ar-video-play span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

/* Arrows */
.ar-video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 5;
}
/* Arrows – visible inside slider */
.ar-video-prev {
  right: 16px;
}

.ar-video-next {
  left: 16px;
}

/* Ensure arrows are visible */
.ar-video-arrow {
  z-index: 10;
}


/* Lightbox */
#arVideoLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#arVideoWrapper {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}
#arVideoWrapper iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .ar-video-prev {
    right: 8px;
  }
  .ar-video-next {
    left: 8px;
  }
}
