
/* Left side - video */
.video-wrapper {
  flex: 1 1 45%;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.video-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/3c/Youtube_play_button_icon_(2013-2017).svg');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.video-wrapper:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Right side - content */
.video-info {
  flex: 1 1 45%;
}
.video-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #002d72; /* SPM blue tone */
  margin-bottom: 10px;
}
.video-date {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.video-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}
.watch-now-btn {
  background-color: #002d72;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.watch-now-btn:hover {
  background-color: #004aad;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.video-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}
.video-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
  }
  .video-info {
    text-align: center;
  }
  .watch-now-btn {
    margin: 0 auto;
  }
}
