.videos-section {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.videos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.videos-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.videos-section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extra-bold);
  color: var(--primary-1);
  margin-bottom: 0.5rem;
}

.videos-section-header p {
  font-family: var(--font-body);
  font-size: var(--fs-h5);
  color: #555;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.video-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.25rem;
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: #333;
  margin-bottom: 0.5rem;
}

.video-info p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .videos-section {
    padding: 3rem 1rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
