.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.2s;
}

.video-thumb:before {
  content: "";
  position: absolute;
  background: url("/assets/img/play.svg") no-repeat center center;
  background-size: 6%;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.4));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  transition: 0.2s;
}

.video-modal .modal-content {
  overflow: visible !important;
}

.video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  transform: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e02020;
  color: #fff;
  border: none;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s, transform 0.2s;
}

.video-modal-close:hover {
  background-color: #b91c1c;
  transform: scale(1.1);
}