.ioh-event-schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ioh-event-schedule-item {
    padding: 1rem;
    border-radius: 15px;
}
.ioh-event-schedule-item:nth-child(odd) {
    background-color: #5b3eb2; /* slightly darker purple for contrast */
}
@media(max-width: 767px) { /* mobile */
    .ioh-event-schedule-item h3 {
        margin-top: 0;
        margin-bottom: 0.25rem;
    }
    .ioh-event-schedule-item .item-side {
        display: flex;
        font-size: 90%;
        gap: 0.5rem;
        text-transform: uppercase;
    }
}
@media(min-width: 767px) { /* desktop */
    .ioh-event-schedule-item.empty-body .item-time, .ioh-event-schedule-item.empty-body h3 {
        margin-bottom: 0 !important;
    }
    .ioh-event-schedule-item .item-time {
        font-size: 18px;
        margin-bottom: 1rem;
        font-weight: bold;
    }
    ..ioh-event-schedule-item .item-location {
        font-size: 16px;
    }
    .ioh-event-schedule-item {
        display: grid;
        grid-template-columns: 150px 1fr;
    }
    .ioh-event-schedule-item .item-side {
        grid-row: 1/span 2;
        grid-column: 1;
    }
    .ioh-event-schedule-item h3 {
        margin-top: 0;
        grid-column: 2;
    }
    .ioh-event-schedule-item .item-body {
        grid-column: 2;
        grid-row: 2;
    }
    .ioh-event-schedule-item .item-body > :first-child {
        margin-top: 0;
    }
}