/* Local video modal (used by the "our-facts" video play button) */

.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-box video {
  width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  background: #000;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.video-modal-close:hover {
  color: #f5a425;
}

section.our-facts .video {
  cursor: pointer;
}
