.schedule {
  max-width: var(--page-width);
  margin: auto;
  border-spacing: 0 1px;
  font-family: "Open Sans Condensed", serif;
}
.schedule tr th {
  background: var(--brand-medium);
  height: 40px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 130px;
  min-width: 75px;
}
.schedule tr th:first-child {
  border-radius: 5px 0 0 0;
  text-align: left;
  padding-left: 15px;
}
.schedule tr th:last-child {
  border-radius: 0 5px 0 0;
}
.schedule tr td {
  background: var(--cream);
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  min-width: 120px;
  padding: 0 6px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
}
.schedule tr td:first-child {
  text-align: left;
  padding-left: 15px;
}
.schedule tr .wide {
  width: 100%;
  max-width: 280px;
}
.schedule tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.schedule tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: grid;
    gap: 10px;
    max-width: var(--page-width);
    padding: 0 20px;
  }
  .mobile .section {
    display: grid;
    gap: 10px;
  }
  .mobile .section tbody tr th {
    text-align: left;
    padding: 10px 15px;
    background: var(--brand-medium);
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    height: 22px;
    text-transform: uppercase;
    border-radius: 5px 5px 0 0;
  }
  .mobile .section tbody tr td {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--cream);
    font-weight: 500;
    font-size: 16px;
    height: 22px;
    text-transform: uppercase;
  }
  .mobile .section tbody tr:last-of-type td {
    border-radius: 0 0 5px 5px;
  }
}
