.schedule {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.schedule-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
}
.schedule-article {
    width: 50vw;
}
  .schedule-date {
    font-size: 4vw;
    color: var(--light-grey);
    margin-bottom: 1rem;
  }
  .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .schedule-item {
    display: grid;
    grid-template-columns: auto 2fr;
    font-size: 3vw;
    gap: 10px;
    }
  .schedule-wrapper .title {
    padding-bottom: 0;
    font-weight: 100;
  }
  .schedule-item.active span {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
   }
   .schedule-item span{
    color: var(--grey);
   }
   .schedule-article .views-field-field-image, .schedule-article .views-field.views-field-title, .schedule-article .views-field.views-field-field-tags {
    grid-column: span 2;
    }
    .schedule-article .views-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        align-items: end;
    }
    .btn_soundcloud_player {
        background: #fff;
        position: fixed;
        /* bottom: 2rem; */
        left: 1.5rem;
        padding: 1rem 2rem;
        border-radius: 80px;
        font-size: 3vw;
        z-index: 2;
    }

    .live-now-player.disabled{
        pointer-events: none;
        opacity: 0.5;
        filter: grayscale(1);
    }


/* Laptop (1024px - 1399px) */
@media (min-width: 1024px) {
    .schedule-date {
        font-size: 2vw;
    }
    .schedule-item {
        font-size: 1.4vw;
    }
    .btn_soundcloud_player {
        font-size: 2vw;
        bottom: 2rem
    }
    .schedule-article {
        width: 20vw;
        height: 50vh;
    }
    .schedule-wrapper {
        max-width: 600px;
    }
}

/* Ipad */
@media (min-width: 768px) and (max-width: 992px){
    .schedule-date {
        font-size: 2.5vw;
    }
    .schedule-item, .btn_soundcloud_player{
        font-size: 2vw;
    }
    .btn_soundcloud_player {
        bottom: 4rem;
    }
    .schedule-wrapper {
        max-width: 800px;
    }
    .schedule-article {
        width: 50%;
    }
}
/* Desktop */
@media (min-width: 1400px) {
    .schedule-date {
        font-size: 1.5vw;
    }
    .schedule-wrapper {
        max-width: 30vw !important;
    }
    .schedule-item {
        font-size: 1vw;
        gap: 20px;
    }
    .schedule-article {
        width: 30% !important;
    }
    .schedule {
        display: flex;
        flex-direction: row;
        gap: unset;
        justify-content: space-between;
        padding-bottom: 7rem;
    }
    .schedule-article .views-field-title a {
        font-size: 1vw;
    }
    .btn_soundcloud_player {
        background: #fff;
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        padding: 2rem 7rem;
        border-radius: 80px;
        font-size: 2vw;
    }
}