/* =========================
   CINEMATIC PROGRAMS SECTION
========================= */
.programs-section {
  text-align: center;
  padding: 80px 20px;
}

#programs .kicker {
  text-align: center;   /* or right */
  margin-left: auto;
  margin-right: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.program-card {
  padding: 20px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  background: #1a1a1a;
}

.program-card i {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: #fff; /* Single color icons */
}

.muted {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 40px;
}

.tag {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

