.dmusic-week-schedule {
  display: grid;
  gap: 0.5rem;
  color: var(--text-color, #fff);
}
.dmusic-week-schedule__tabs {
  overflow-x: auto;
  padding-bottom: .75rem;
  margin-bottom: 0 !important;
}
.dmusic-week-schedule__tabs ul {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.dmusic-week-schedule__tabs li {
  flex: 1 1 0;
}
.dmusic-week-schedule__tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.42rem;
    text-align: center;
}
.dmusic-week-schedule__program-tab a {
  justify-content: center;
}
.dmusic-week-schedule__program-tab .dmusic-week-schedule__tab-date {
  display: none;
}
.dmusic-week-schedule__tab-day,
.dmusic-week-schedule__tab-date {
  display: block;
  line-height: 1.1;
}
.dmusic-week-schedule__tab-date {
  margin-top: .25rem;
  font-size: .85rem;
  opacity: .68;
}
.dmusic-week-schedule__panels {
  min-height: 16rem;
}
.dmusic-week-schedule__panel[hidden] {
  display: none;
}
.dmusic-week-schedule__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}
.dmusic-week-card__image {
  width: 100%;
  height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 72% 68%, rgba(95, 15, 64, .9), transparent 28%),
    radial-gradient(circle at 40% 72%, rgba(15, 76, 92, .9), transparent 30%),
    var(--box-color, rgba(255, 255, 255, .1));
}
.dmusic-week-schedule__empty {
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius, 15px);
  background: var(--box-color, rgba(255, 255, 255, .1));
  opacity: .75;
}
@media (max-width: 900px) {
  .dmusic-week-schedule__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .dmusic-week-schedule__cards {
    grid-template-columns: 1fr;
  }
  .dmusic-week-schedule__tabs li {
    min-width: max-content;
  }
}
