/* Schedule page – 7-day view */

/* Centered container: match HLD/LLD and Company Tracking (max-width 1200px + 24px padding). */
.main--schedule {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 24px 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.schedule-hero {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-hero-tint) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

/* Compact hero: breadcrumb, title+date left, controls right */
.schedule-hero--compact {
  padding: 1rem 1.25rem 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-hero-tint) 100%);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.schedule-hero--compact .schedule-hero__back {
  display: inline-block;
  margin: 0 0 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.schedule-hero--compact .schedule-hero__back:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.schedule-hero--compact .schedule-hero__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.schedule-hero--compact .schedule-hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.schedule-hero--compact .schedule-hero__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.schedule-hero--compact .schedule-hero__range {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.schedule-hero--compact .schedule-controls {
  margin: 0;
  justify-content: flex-end;
}

.schedule-hero--compact .schedule-controls__sep {
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 0 0.15rem;
}

.schedule-hero--compact .schedule-controls__filter-wrap {
  margin: 0;
}

.schedule-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.schedule-hero__subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.schedule-hero__summary {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.schedule-hero__summary.hidden {
  display: none !important;
}

.schedule-hero__range {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Interviews today – above tomorrow and grid */
.schedule-today {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-today.hidden {
  display: none !important;
}

.schedule-today__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.schedule-today-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.schedule-today-card {
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.schedule-today-card__company {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.schedule-today-card__company a {
  color: var(--color-accent);
  text-decoration: none;
}

.schedule-today-card__company a:hover {
  text-decoration: underline;
}

.schedule-today-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.schedule-today-card__type {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Interviews tomorrow – above the grid */
.schedule-tomorrow {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-tomorrow.hidden {
  display: none !important;
}

.schedule-tomorrow__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.schedule-tomorrow-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.schedule-tomorrow-card {
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.schedule-tomorrow-card__company {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.schedule-tomorrow-card__company a {
  color: var(--color-accent);
  text-decoration: none;
}

.schedule-tomorrow-card__company a:hover {
  text-decoration: underline;
}

.schedule-tomorrow-card__meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.schedule-tomorrow-card__type {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}

.schedule-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
}

@media (max-width: 600px) {
  .schedule-controls {
    flex-direction: column;
  }
}

.schedule-controls__when {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.schedule-controls__filter,
.schedule-controls__filter-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-border);
}

.schedule-controls__filter-select {
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
}

@media (max-width: 600px) {
  .schedule-controls__filter-wrap {
    margin-left: 0;
    padding-left: 0;
    padding-top: 1rem;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

.schedule-controls__filter-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.schedule-controls__week {
  display: flex;
  gap: 0.35rem;
}

/* Segmented control: single grey container, sliding active segment */
.schedule-controls__view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.schedule-controls__view .schedule-controls__filter-label {
  margin: 0;
}

.schedule-controls__view .schedule-controls__btn--view {
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
}

.schedule-controls__range {
  display: inline-flex;
  gap: 0;
  padding: 0.2rem;
  background: var(--color-to-study-muted);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.schedule-controls__range .schedule-controls__btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 1px);
  cursor: pointer;
}

.schedule-controls__range .schedule-controls__btn:hover {
  color: var(--color-text);
}

.schedule-controls__range .schedule-controls__btn.active {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow);
}

.schedule-controls__btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
}

.schedule-controls__btn:hover {
  background: var(--color-to-study-muted);
  border-color: var(--color-accent);
}

.schedule-controls__week .schedule-controls__btn.active,
.schedule-controls__btn.active:not(.schedule-controls__btn--range) {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.schedule-hero__back {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
}

.schedule-hero__back:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}


.schedule-empty-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
}

.schedule-empty-cta.hidden {
  display: none !important;
}

.schedule-empty-cta__message {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.schedule-empty-cta__btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border-radius: var(--radius);
  text-decoration: none;
}

.schedule-empty-cta__btn:hover {
  background: var(--color-accent-hover);
}

.schedule-empty-cta__link {
  display: inline-block;
  margin-left: 1rem;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-decoration: none;
}

.schedule-empty-cta__link:hover {
  text-decoration: underline;
}

.schedule-grid-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  position: relative;
}

.schedule-grid-wrap.hidden {
  display: none !important;
}

.schedule-grid-wrap__scroll-hint {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.schedule-grid-wrap.schedule-grid-wrap--scrolled .schedule-grid-wrap__scroll-hint,
.schedule-grid-wrap.schedule-grid-wrap--no-overflow .schedule-grid-wrap__scroll-hint {
  opacity: 0;
  pointer-events: none;
}

.schedule-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-list-wrap.hidden {
  display: none !important;
}

.schedule-list-day {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule-list-day__label {
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-to-study-muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.schedule-list-day--today .schedule-list-day__label {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
}

.schedule-list-day__events {
  padding: 1rem 1.25rem;
}

.schedule-grid.hidden {
  display: none !important;
}

.schedule-loading {
  text-align: center;
  padding: 2rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

.schedule-skeleton {
  margin-bottom: 1.5rem;
}

.schedule-skeleton.hidden {
  display: none !important;
}

.schedule-skeleton__strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 100%;
}

.schedule-skeleton__day {
  min-height: 200px;
  background: var(--color-to-study-muted);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  animation: schedule-skeleton-pulse 1.2s ease-in-out infinite;
}

@keyframes schedule-skeleton-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.schedule-error {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.schedule-error.hidden {
  display: none !important;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(320px, 320px));
  gap: 1.5rem;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  scroll-snap-type: x mandatory;
}

.schedule-grid.schedule-grid--14 {
  grid-template-columns: repeat(14, minmax(280px, 280px));
  gap: 1.5rem;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  max-height: 70vh;
  width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.schedule-day:hover {
  box-shadow: var(--shadow-md);
}

.schedule-day--today {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.schedule-day--today .schedule-day__label {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #fff;
}

.schedule-day__label {
  flex-shrink: 0;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-to-study-muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.schedule-day__events {
  flex: 1 1 auto;
  min-height: 0;
  padding: 1rem 1.25rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.schedule-day__empty {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.5;
}

.schedule-event {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.4;
}

.schedule-event__main {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
}

.schedule-event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.schedule-event:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule-event:first-child {
  padding-top: 0;
}

.schedule-event--deadline {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.schedule-event--interview {
  border-left: 3px solid var(--color-accent);
  padding-left: 0.65rem;
}

.schedule-event--follow-up {
  border-left: 3px solid #ca8a04;
  padding-left: 0.5rem;
}

.schedule-event__time {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  background: var(--color-to-study-muted);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  min-width: 3.5em;
  text-align: center;
  line-height: 1.2;
}

.schedule-event--deadline .schedule-event__time,
.schedule-event__time--due {
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.75rem;
}

.schedule-event__title-wrap {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-event__title-line {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.schedule-event__type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.15rem;
  width: fit-content;
}

.schedule-event__type-badge--technical,
.schedule-event__type-badge--technical-live-coding {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-accent);
}

.schedule-event__type-badge--system-design,
.schedule-event__type-badge--hld-system-design,
.schedule-event__type-badge--lld-system-design {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}

.schedule-event__type-badge--recruiter-screen,
.schedule-event__type-badge--behavioral {
  background: rgba(107, 114, 128, 0.15);
  color: var(--color-text-muted);
}

.schedule-event__type-badge--hiring-manager,
.schedule-event__type-badge--final-round {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.schedule-event__type-badge--other {
  background: var(--color-to-study-muted);
  color: var(--color-text);
}

.schedule-event__link {
  display: block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.35;
}

.schedule-event__role {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-event__link:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.schedule-event--deadline .schedule-event__link {
  color: var(--color-text);
  font-weight: 500;
}

.schedule-event--deadline .schedule-event__link:hover {
  color: var(--color-accent);
}

.schedule-event__copy {
  flex-shrink: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
}

.schedule-event__copy:hover {
  background: var(--color-accent);
  color: #fff;
}

.schedule-event__reschedule {
  flex-shrink: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
}

.schedule-event__reschedule:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.schedule-event__join {
  flex-shrink: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent);
  border-radius: 4px;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.schedule-event__join:hover {
  background: var(--color-accent-hover);
}

.schedule-event__more {
  flex-shrink: 0;
  padding: 0.5rem 0.6rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.schedule-event__more:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.schedule-event__more[aria-expanded="true"] {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(37, 99, 235, 0.06);
}

.schedule-event__more-wrap {
  position: relative;
}

.schedule-event__menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.25rem;
  min-width: 140px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 10;
  padding: 0.35rem 0;
}

.schedule-event__menu.hidden {
  display: none !important;
}

.schedule-event__menu-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

.schedule-event__menu-item:hover {
  background: var(--color-to-study-muted);
}

.schedule-date-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.schedule-date-nav__range {
  font-weight: 600;
  color: var(--color-text);
  min-width: 10ch;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.schedule-modal.hidden {
  display: none !important;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.schedule-modal__content {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.schedule-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.schedule-modal__subtitle {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.schedule-modal__form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.schedule-modal__form input[type="datetime-local"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.schedule-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.schedule-modal__btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
}

.schedule-modal__btn--primary {
  color: #fff;
  background: var(--color-accent);
  border: none;
}

.schedule-modal__btn--primary:hover {
  background: var(--color-accent-hover);
}

.schedule-modal__btn--secondary {
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.schedule-modal__btn--secondary:hover {
  background: var(--color-to-study-muted);
}

.schedule-grid-heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.schedule-calendar-sync {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-calendar-sync__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.schedule-calendar-sync__connected {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.schedule-calendar-sync__disconnect {
  font-size: 0.8rem;
}

@media (max-width: 1000px) {
  .schedule-grid {
    grid-template-columns: repeat(7, minmax(280px, 280px));
  }
  .schedule-grid.schedule-grid--14 {
    grid-template-columns: repeat(14, minmax(240px, 240px));
  }
}

@media (max-width: 640px) {
  .schedule-grid {
    grid-template-columns: repeat(7, minmax(280px, 280px));
  }
  .schedule-grid.schedule-grid--14 {
    grid-template-columns: repeat(14, minmax(240px, 240px));
  }
  .schedule-day {
    min-height: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-grid {
    scroll-snap-type: none;
  }
  .schedule-day {
    scroll-snap-align: none;
  }
  .schedule-skeleton__day {
    animation: none;
  }
}
