.bc-service-video-wrap.bc-reel-wrap {
  height: auto;
  overflow: visible;
  padding-bottom: 0;
}

.bc-video-thumb.bc-reel-enhanced::before,
.bc-video-thumb.bc-reel-enhanced::after {
  display: none;
}

.bc-reel-card {
  position: relative;
  width: 100%;
  max-width: 371px;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  cursor: pointer;
}

.bc-reel-card:focus-visible {
  outline: 3px solid var(--bc-brown, #6e5b4c);
  outline-offset: 3px;
}

.bc-reel-poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.bc-reel-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.bc-reel-modal.bc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
}

.bc-reel-modal.bc-video-modal.is-open {
  display: flex;
}

.bc-reel-modal .bc-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 27, 24, 0.72);
  backdrop-filter: blur(2px);
}

.bc-reel-modal .bc-video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(360px, 92vw, calc(88vh * 9 / 16));
  max-height: 88vh;
  background: transparent;
}

.bc-reel-modal .bc-video-modal-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.bc-reel-modal .bc-video-modal-close {
  position: absolute;
  top: -44px;
  right: -4px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2e2723;
  font-size: 26px;
  line-height: 36px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

body.bc-video-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .bc-reel-card {
    max-width: none;
    height: 360px;
  }

  .bc-reel-modal .bc-video-modal-inner {
    width: min(340px, 94vw, calc(86vh * 9 / 16));
    max-height: 86vh;
  }

  .bc-reel-modal .bc-video-modal-video {
    max-height: 86vh;
    border-radius: 14px;
  }
}
