/* ============================================================
   LUMINA STUDIO — Gallery Specific Style
   ============================================================= */

.gallery-section-header { margin-bottom: 40px; }

.video-platform-note {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 14px 20px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.video-platform-note span { color: var(--gold); font-size: 1.1rem; }

/* Process Steps-- */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  text-align: center;
  padding: 40px 32px;
  flex: 1;
  min-width: 180px;
}
.step-num {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}
.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  flex-shrink: 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .process-steps { flex-direction: column; }
  .process-connector { width: 1px; height: 30px; background: linear-gradient(180deg, var(--gold-dark), var(--gold)); }
}
