.video-section {
    width: 100%;         
    background: #f5f5f5; /* dilersen renk ekleyebilirsin */
}

.video-section-container {
    width: 1100px;
    padding: 20px; 
    max-width: 95%;
    margin: 0 auto; /* ortalama */
    font-size: 18px;
    background: #fff;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* aynı satırda 3 video */
  gap: 20px;
  padding: 20px;
}

.video-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-item video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.video-title {
  text-align: center;
  font-size: 17px;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
  .video-item video {
    height: 200px;
  }
 }
