/*-- -------------------------- -->
<---         Class Schedule     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #schedule-101 {
    padding: var(--sectionPadding);
  }

  #schedule-101 .cs-container {
    width: 100%;
    max-width: var(--containerMaxWidth);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--headerGap);
  }

  #schedule-101 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #schedule-101 .cs-title {
    max-width: 20ch;
  }

  #schedule-101 .cs-text {
    max-width: 40rem;
  }

  #schedule-101 .cs-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gridGap);
  }

  #schedule-101 .cs-day {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
  }

  #schedule-101 .cs-day-title {
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2em;
    margin-bottom: 1rem;
    color: var(--headerColor);
    text-align: center;
  }

  #schedule-101 .cs-time-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  #schedule-101 .cs-time-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--headerColor);
    background-color: var(--bgLight);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: var(--borderRadius);
  }

  #schedule-101 .cs-divider {
    display: none;
  }

  #schedule-101 .cs-closed-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 1.5rem 0.5rem;
  }

  #schedule-101 .cs-closed-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--headerColor);
    margin-bottom: 0.375rem;
    display: block;
  }

  #schedule-101 .cs-closed-text {
    font-size: 0.8125rem;
    line-height: 1.4em;
    color: var(--bodyTextColor);
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #schedule-101 .cs-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }

  #schedule-101 .cs-day {
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    padding: 1.25rem 0.375rem;
    background: transparent;
  }

  #schedule-101 .cs-day:last-child {
    border-right: none;
  }

  #schedule-101 .cs-day-title {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    padding-bottom: 0.875rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }

  #schedule-101 .cs-time-list {
    display: grid;
    grid-template-rows: repeat(3, 2.5rem) 1.25rem repeat(3, 2.5rem);
    gap: 0.5rem;
  }

  #schedule-101 .cs-time-item {
    font-size: 0.875rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 0.25rem;
  }

  #schedule-101 .cs-divider {
    display: block;
    grid-row: 4;
    align-self: center;
    margin: 0 0.5rem;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.25);
  }

  #schedule-101 .cs-t-400pm {
    grid-row: 5;
  }

  #schedule-101 .cs-t-500pm {
    grid-row: 6;
  }

  #schedule-101 .cs-t-600pm {
    grid-row: 7;
  }
}