/* Responsive Twitch Embed */
#twitch-embed {
  position: relative;
  padding-top: 66.667%;
  width: 100%;
}
#twitch-embed > iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* House Show Schedule */
.schedule {
  background-color: #1a2155;
  color: white;
}

.schedule_month {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0.125rem;
  padding-left: 1.125rem;
  text-transform: uppercase;
}

.schedule_body {
  padding: 0 1rem 1rem 1rem;
}

.schedule_shows {
  list-style-type: none;
  padding-left: 0;
  position: relative;
}

.schedule_shows::before {
  background: linear-gradient(93deg, transparent 13px, currentColor 14px);
  color: currentColor;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2.5rem;
}
.color-alternate .schedule_shows::before {
  background: linear-gradient(88deg, transparent 15px, currentColor 16px);
}

.color-alternate {
  color: #e99923;
}

.schedule_show {
  display: flex;
  position: relative;
}

.schedule_date {
  color: #1a2155;
  font-size: 1rem;
  font-weight: bold;
  padding-top: 0.125rem;
  position: absolute;
  left: 1rem;
  text-align: right;
  width: 1.125rem;
}

.schedule_performers {
  display: flex;
  list-style-type: none;
  margin-bottom: 0.5rem;
  padding-left: 0;
  position: relative;
  left: 3.75rem;
  width: 70%;
}

.schedule_performers li {
  display: block;
  margin-bottom: 0.125rem;
  width: 100%;
}

.schedule_performers h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

.schedule_performers a {
  color: currentColor;
  text-decoration: underline;
}

.schedule_performers a:hover {
  text-decoration: none;
}

.schedule_performers .genre {
  color: #bbaedd;
  display: block;
  font-size: 0.875rem;
  font-style: italic;
  margin-top: -0.125rem;
}

/* Details */
.detail {
  display: flex;
  flex-direction: column;
  flex-basis: 33%;
}

@media (min-width: 767px) and (max-width: 991px) {
  .detail { font-size: 14px }
}
