/* ========================================
   비디오 모달 스타일 (PC)
======================================== */

@media (min-width: 577px) {
  /* 비디오 모달 배경 */
  .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
  }
  
  .video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 오버레이 */
  .video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
  }
  
  /* 모달 컨텐츠 */
  .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10001;
  }
  
  /* 닫기 버튼 */
  .video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10002;
    padding: 10px;
    line-height: 1;
  }
  
  .video-modal-close:hover {
    opacity: 0.7;
  }
  
  /* 비디오 요소 */
  .video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    background-color: #000;
  }
  
  /* 비디오 섹션 - 비디오 아이템 호버 효과 */
  #section5-wrapper .video-item {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  #section5-wrapper .video-item:hover {
    transform: scale(1.05);
  }
  
  /* 비디오 썸네일 컨테이너 */
  #section5-wrapper .video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  /* 비디오 오버레이 */
  #section5-wrapper .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  #section5-wrapper .video-item:hover .video-overlay {
    opacity: 1;
  }
  
  /* 재생 버튼 */
  #section5-wrapper .play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  #section5-wrapper .video-item:hover .play-button {
    transform: scale(1.1);
  }
}
