/* --------------- INTERVIEWS PAGES --------------- */
/* Guest and Student Interviews - video gallery */

.videos-section .container {
  width: min(1280px, 95vw);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  padding: 8px 0;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.video-head .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.video-head .btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.video-head .btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* Video first, then title & button */
.video-card .video-embed {
  order: 1;
}

.video-card .video-head {
  order: 2;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
