/* Hero video custom controls – capsule bar overlay */
.hero-video-wrapper {
  position: relative;
}
.hero-video-wrapper .hero-video {
  display: block;
}
.hero-video-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  z-index: 5;
}
.hero-video-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.hero-video-play:hover {
  background: #f5f5f5;
}
.hero-video-play-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero-video-wrapper.is-playing .hero-video-play-icon {
  display: none;
}
.hero-video-wrapper.is-playing .hero-video-play-text {
  display: none;
}
.hero-video-wrapper.is-playing .hero-video-play::after {
  content: '';
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 0, 0 100%, 35% 100%, 35% 0, 65% 0, 65% 100%, 100% 100%, 100% 0);
}
.hero-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-video-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}
.hero-video-btn svg {
  width: 20px;
  height: 20px;
}
