/**
 * Página de Vídeos – Ionfix
 * Galeria de vídeos do YouTube
 */

.videos-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

.videos-intro {
  max-width: 720px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.videos-intro p {
  margin: 0;
  font-size: var(--font-size-body);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.videos-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  max-width: 960px;
  margin: 0 auto;
}

.videos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.videos-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: var(--bg-secondary);
}

.videos-card__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.videos-card__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .videos-row {
    grid-template-columns: 1fr;
  }

  .videos-intro {
    margin-bottom: var(--space-xl);
  }
}
