.yt-videos {
  background: var(--background-card);
}

.yt-videos .heading {
  margin-bottom: 3rem;
}

.yt-videos .video-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.yt-videos .video-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.yt-videos .video-container iframe:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media screen and (min-width: 768px) {
  .yt-videos .video-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .yt-videos .video-container iframe {
    height: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .yt-videos .video-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .yt-videos .video-container iframe {
    height: 250px;
  }
}

/* YouTube CTA Button */
.youtube-cta {
  margin-top: 3rem;
  text-align: center;
}

.youtube-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.youtube-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #003d7a 100%);
}

.youtube-cta .cta-button:active {
  transform: translateY(-1px);
}

.youtube-cta .cta-button svg {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .youtube-cta .cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}