/* === Video Gallery === */
/* Uses CSS variables from base.css */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.15s, box-shadow 0.15s;
}

.video-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(251, 191, 36, 0.15);
}

.video-title {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.video-meta {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.video-desc {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-sm);
  background: #111827;
  min-height: 200px;
}

/* === Video section headings (for PIANOBUS-style pages) === */
.video-section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 2.5rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
}
