/* Video Viewer Styles */

/* Videos Grid */
.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  flex: 1;
  overflow-y: auto;
}

.video-item {
  background: var(--primary-color);
  overflow: visible;
  width: 100%;
  max-width: 800px;
  display: block;
}

.model-video {
  width: 100%;
  height: var(--image-height);
  display: block;
  background: #000;
  pointer-events: auto;
  min-height: 300px;
  object-fit: contain;
}

.video-title {
  color: var(--text-color);
  font-weight: 500;
  text-align: center;
}

/* Hide navigation when videos are active */
.portfolio-controls,
.polaroid-controls {
  display: none !important;
}

/* Mobile styles for video viewer */
@media (max-width: 768px) {
  .videos-grid {
    gap: 1rem;
  }

  .video-item {
    max-width: 100%;
  }
}
