/* --- upcoming --- */
#upcoming {
  margin: 3em auto;
  display: flex;
  flex-flow: column;
  align-items: stretch;
  gap: 1em;
}
#upcoming h2 {
  margin: 0 auto .5em;
  color: #fff;
  font-size: 1.25em;
  letter-spacing: .125em;
}
@media (max-width: 439px) {
  #upcoming h2 {
    font-size: 1.5em;
  }
}
#upcoming .week {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  gap: 1.5%;
}
#upcoming .date {
  font-size: .875em;
  line-height: 1.2;

	font-family: "TradeGothicLTPro1";
  font-style: normal;
  font-stretch: normal;
  font-weight: 700;
}
@media (min-width:767px) {
  #upcoming .week {
    font-size: 1em;
  }
}
@media (max-width:768px) {
  #upcoming .week .day:nth-last-child(1),
  #upcoming .week .day:nth-last-child(1) {
    display:none;
  }
  #upcoming {
    font-size: 2.5vw;
  }
  #upcoming h2 {
    font-size: 1.375rem;
  }
}
#upcoming .day {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 6em;
  padding: .5em 0;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 1024px) {
  #upcoming .day:nth-of-type(7) {
    display: none;
  }
}
@media (max-width: 767px) {
  #upcoming .day:nth-of-type(6) {
    display: none;
  }
}
@media (max-width: 532px) {
  #upcoming .day:nth-of-type(5) {
    display: none;
  }
  #upcoming {
    font-size: 3.5vw;
  }
}
#upcoming .date {
  margin: .25em auto;
}
#upcoming .week a {
  display: inline-block;
  align-self: center;
  transition: all .2s;
  line-height: 1;
  margin: 0.25em 0;
}
#upcoming .week a:hover {
  text-decoration: none;
}
#upcoming .btn {
  align-self: center;
  margin: 0;
}