/*** START Academic Calendar ***/
.calendar-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.calendar-list--arrow > li {
  margin-bottom: 1.5rem;
}

.heading-bottom-border--short::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #f6b436;
  display: block;
  position: relative;
  top: 0.75rem;
}

.calendar-jumpto__title {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.calendar-jumpto > ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 1rem;
  color: #0076bb;
}
.calendar-jumpto li:not(:first-child) {
  margin-top: 0.5rem;
}

.calendar-semester {
  margin-top: 3rem;
}

.calendar-semester:not(:first-of-type) {
  margin-top: 5rem;
}

.calendar-month {
  margin-top: 2rem;
}

.calendar-month__table {
  width: 100%;
  border-top: 6px solid #6dc5e8;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-collapse: collapse;
  display: table;
}

.calendar-month__table tr {
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}

.calendar-month__table td {
  padding-block: 0.75rem;
  font-size: 1rem;
}

.calendar-month__table td:first-child {
  padding-right: 1rem;
  width: 120px;
  min-width: 120px;
  padding-left: 1rem;
}

.calendar-month:first-of-type {
  margin-top: 0;
}

.calendar-session__heading {
	color: #07b;
}

.calendar-session__heading:first-of-type {
	margin-top: 2rem;
}

.calendar-month__heading {
	text-transform: none;
}

.calendar-semester > .calendar-month:first-of-type .calendar-month__heading {
	margin-top: 1.5rem;
}

@media screen and (min-width: 53.75em) {
  .calendar-semester:not(:first-of-type) {
    margin-top: 6rem;
  }

  .calendar-month {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 62.5em) {
  .calendar-wrapper {
    display: grid;
    grid-template-columns: 8fr 1fr 3fr;
    grid-template-areas: "caldata . calaside";
  }

  .calendar-data {
    grid-area: caldata;
  }

  .calendar-jumpto {
    grid-area: calaside;
    align-self: start;
    margin-top: 5.5rem;
    background-color: rgba(178, 224, 227, 0.25);
    padding: 2.5rem 1.5rem;
	position: sticky;
	top: 0;
  }
  .calendar-jumpto li:not(:first-child) {
    margin-top: 0.75rem;
  }

  .calendar-semester:first-of-type {
    margin-top: 0;
  }
}
/*** END Academic Calendar ***/