/* Schedule tab — timeline list styling. Unique to this tab. */

.schedule-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #eadfc9;
  border-radius: 18px 18px 18px 4px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.schedule-date {
  flex-shrink: 0;
  width: 76px;
  text-align: center;
  background: var(--maroon);
  color: #fff;
  border-radius: 12px;
  padding: 8px 4px;
}
.schedule-day { display: block; font-size: 20px; font-weight: 800; font-family: 'Playfair Display', serif; }
.schedule-month { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light); }
.schedule-info h4 { margin: 0 0 4px; color: var(--maroon); font-family: 'Playfair Display', serif; }
.schedule-info p { margin: 0; font-size: 14px; color: #5c503c; }
