.yt-playlist-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.yt-playlist-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.yt-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.yt-card:hover {
  transform: translateY(-5px);
}

.yt-card img {
  width: 100%;
  display: block;
}

.yt-card-title {
  padding: 10px;
  font-size: 16px;
  line-height: 1.4;
  min-height: 48px;
}
