.harmony-videos-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 15px;
}

.harmony-videos-header {
  text-align: center;
  margin-bottom: 35px;
}

.harmony-videos-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.harmony-videos-header p {
  color: #666;
  font-size: 16px;
}

.harmony-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.harmony-video-card {
  text-align: center;
}

.harmony-video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.harmony-video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f3f3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.harmony-video-card a:hover .harmony-video-thumb {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.harmony-video-card h3 {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.harmony-video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-weight: 600;
}

@media (max-width: 900px) {
  .harmony-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .harmony-videos-grid {
    grid-template-columns: 1fr;
  }
}