.todays-schedule-hero {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  padding: 2.625rem 1.75rem;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 2.8125rem;
  background: #FFFFFF;
  box-shadow: var(--shadow-large);
  margin: 0 auto;

  @media (width > 760px) {
    border-radius: 3rem;
    padding: 3.75rem 3rem;
    gap: 2.5rem;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

.todays-schedule-hero__title h2,
.todays-schedule-hero__title h3,
.todays-schedule-hero__title h4 {

  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-align: center;

  @media (width > 760px) {
    font-size: 6rem;
    line-height: 1.1;
  }
}

.todays-schedule-hero__date {
  text-align: center;
}

.todays-schedule-hero__list-title h2,
.todays-schedule-hero__list-title h3,
.todays-schedule-hero__list-title h4 {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1rem;

  @media (width > 760px) {
    font-size: 2rem;
  }
}

.todays-schedule-hero__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
}

.todays-schedule-hero__list-item {
  @media (width > 760px) {
    flex-basis: calc(33.33% - 3rem);
  }
}

.todays-schedule-hero__list-items {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125rem;
  line-height: 1.1;
  gap: 0.375rem 0.75rem;

  @media (width > 760px) {
    font-size: 1.25rem;
  }

  >*:last-child .todays-schedule-hero__list-items-status span {
    display: none;
  }

  >* .todays-schedule-hero__list-items-status span {
    font-weight: 400;
    color: #2C2E35;
  }
}

.todays-schedule-hero__list-items-time {
  font-family: 'DIN Next LT Pro Light Condensed';
  font-weight: 300;
}

.todays-schedule-hero__list-items-spacer,
.todays-schedule-hero__list-items-status {
  font-family: 'DIN Next LT Pro Condensed';
}

.todays-schedule-billboard__list-item-confirmation {
  .confirmation {
    display: inline-block;
    padding-left: 0.125rem;
  }
}

.todays-schedule-hero__list-items-status {
  font-weight: bold;
  text-transform: uppercase;
}

.todays-schedule-hero__list-items-status.cancelled {
  color: #D10000;
}

.todays-schedule-hero__list-items-status.confirmed {
  color: #06751E;
}

.todays-schedule-hero__list-items-status.pending {
  color: #115FD4;
}