.program-flow-c2a359ea {
  --card-bg: #ffffff;
  --card-gradient: linear-gradient(135deg, #ffffff 0%, #fbfbfb 45%, #f3f4f6 100%);
  --time-gradient: linear-gradient(135deg, #fafafa 0%, #f1f2f4 100%);
  --border-light: #e5e7eb;
  --text-main: #050505;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --blue: #2563eb;
  --gold: #d97706;
  --green: #16a34a;
  --purple: #7c3aed;
  --red: #dc2626;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  
  display: grid;
  gap: 20px;
}

.schedule-card-c2a359ea {
  display: grid;
  grid-template-columns: 190px 1fr;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-flow-c2a359ea.has-hover .schedule-card-c2a359ea:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover) !important; /* Override inline styles if needed */
}

.schedule-time-c2a359ea {
  padding: 24px;
  background: #f8f9fb;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-time-c2a359ea.mobile-align-left {
  align-items: flex-start;
  text-align: left;
}

.schedule-time-c2a359ea.mobile-align-center {
  align-items: center;
  text-align: center;
}

.schedule-time-c2a359ea.mobile-align-right {
  align-items: flex-end;
  text-align: right;
}

.schedule-date-c2a359ea {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.schedule-hour-c2a359ea {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-main);
}

.schedule-content-c2a359ea {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.schedule-label-c2a359ea {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.schedule-content-c2a359ea h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
  color: var(--text-main);
}

.schedule-content-c2a359ea p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.schedule-meta-c2a359ea {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.meta-pill-c2a359ea {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

/* Variations */
.schedule-card-c2a359ea.gradient-card {
  background: var(--card-gradient);
}

.schedule-card-c2a359ea.gradient-card .schedule-time-c2a359ea {
  background: var(--time-gradient);
}

.schedule-card-c2a359ea.accent-blue { border-left: 6px solid var(--blue); }
.schedule-card-c2a359ea.accent-gold { border-left: 6px solid var(--gold); }
.schedule-card-c2a359ea.accent-green { border-left: 6px solid var(--green); }
.schedule-card-c2a359ea.accent-purple { border-left: 6px solid var(--purple); }
.schedule-card-c2a359ea.accent-red { border-left: 6px solid var(--red); }

.schedule-card-c2a359ea.colored-time .schedule-time-c2a359ea {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  border-right: none;
}

.schedule-card-c2a359ea.colored-time .schedule-date-c2a359ea,
.schedule-card-c2a359ea.colored-time .schedule-hour-c2a359ea {
  color: #ffffff;
}

.schedule-card-c2a359ea.colored-time .schedule-date-c2a359ea {
  opacity: 0.85;
}

.schedule-card-c2a359ea.compact-card {
  grid-template-columns: 160px 1fr;
  border-radius: 14px;
}

.schedule-card-c2a359ea.compact-card .schedule-time-c2a359ea { padding: 18px 20px; }
.schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea { padding: 20px 24px; }
.schedule-card-c2a359ea.compact-card .schedule-hour-c2a359ea { font-size: 23px; }
.schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea h3 { font-size: 20px; margin-bottom: 6px; }
.schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea p { font-size: 15px; }

.schedule-card-c2a359ea.featured-card {
  grid-template-columns: 210px 1fr;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.14) !important;
}

.schedule-card-c2a359ea.featured-card .schedule-time-c2a359ea {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-right: 1px solid rgba(37, 99, 235, 0.18);
}

.schedule-card-c2a359ea.featured-card .schedule-label-c2a359ea {
  background: #dbeafe;
  color: #1d4ed8;
}

.schedule-card-c2a359ea.minimal-card {
  box-shadow: none !important;
  border: 1px solid #dfe3ea !important;
  background: #ffffff;
}

.program-flow-c2a359ea.has-hover .schedule-card-c2a359ea.minimal-card:hover {
  transform: none;
  box-shadow: none !important;
}

.schedule-card-c2a359ea.minimal-card .schedule-time-c2a359ea {
  background: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 700px) {
  .schedule-card-c2a359ea,
  .schedule-card-c2a359ea.compact-card,
  .schedule-card-c2a359ea.featured-card {
    grid-template-columns: 1fr !important;
    border-radius: 16px;
  }

  .schedule-time-c2a359ea {
    border-right: none !important;
    border-bottom: 1px solid var(--border-light);
    padding: 18px 22px !important;
  }

  .schedule-content-c2a359ea,
  .schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea {
    padding: 22px !important;
  }

  .schedule-hour-c2a359ea,
  .schedule-card-c2a359ea.compact-card .schedule-hour-c2a359ea {
    font-size: 24px !important;
  }

  .schedule-content-c2a359ea h3,
  .schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea h3 {
    font-size: 21px !important;
  }

  .schedule-content-c2a359ea p,
  .schedule-card-c2a359ea.compact-card .schedule-content-c2a359ea p {
    font-size: 16px !important;
  }

  .schedule-card-c2a359ea.featured-card .schedule-time-c2a359ea {
    border-right: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  }
}