.calendar-event {
    width:76px;
    min-width:76px;
    border-radius: 8px;
    overflow:hidden;
    background-color:white;
    border-radius: 14px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.9);
}

.calendar-event .month {
    text-transform: uppercase;
    background-image: linear-gradient(180deg, #EB6357 0%, #D85A4E 100%);
    font-weight: bolder;
    font-size:11px;
    display:block;
    text-align: center;
    padding:4px 0;;
    color:white;
}

.calendar-event .day {
    display:block;
    text-align: center;
    font-size:42px;
    font-weight: lighter;
    color:var(--page-bg-color);
    padding:2px 0;
}

.section-hero-with-calendar {
    display:flex;
    flex-direction: row;
    align-items: start;
}

.section-hero-with-calendar .calendar-event {
    margin-right:24px;
    margin-top:4px;
    align-self: start;
}

.event-card {
    padding:16px;
    background:rgba(255,255,255,0.06);
    border-radius: 18px;
    max-width:50%;
    border:1px solid rgba(255,255,255,0.1);
}

.event-card .calendar-event .month {
    padding:0;
}

.event-card .calendar-event .day {
    padding:14px 0;
}

.event-card {
    position:relative;
    font-size:0.92em;
}

.event-card .banner {
    display:flex;
    flex-direction: row;
    align-items: start;
}

.event-card .banner .calendar-event {
    align-self: start;
}

.event-card .banner ul {
    list-style: none;
}

.event-card .banner ul li {
    margin:6px 0;
}

.event-card .banner ul li:before {
    content:"";
    display:none;
}

.event-card .banner ul {
    display:block;
    padding-left:16px;
    width:100%;
}

.event-card .banner ul li.event-title span {
    font-family: var(--rounded-font-family);
    font-weight:600;
    font-size:1.2em;
}

.event-card .banner ul li span.question {
    opacity: 0.7;
    padding-right:10px;
}


.event-card .banner ul li.event-title {
    display:flex;
    flex-direction: row;
}

.event-card .banner ul li.event-title span {
    display: block;
    flex-grow: 1;
}

.event-card .banner ul li.event-title span.calendar-title a {
    text-decoration: none;
}

.event-card .banner ul li.event-title a.calendar-link {
    text-decoration: none;
    font-size:13px;
}

.event-location-map-container {
    height:230px;
    margin-top:16px;
}

.event-location-map .mk-map-view {
    height:230px;
    border-radius: 10px;
    box-shadow: 1px 1px 14px rgba(0,0,0,0.2);
}

.episode-details .event-card {
    margin-top:32px;
}

@media screen and (max-width: 950px) {
    .event-card {
        max-width:100%;
    }
}

@media screen and (max-width: 600px) {
    .event-card {
        max-width:100%;
        font-size:0.8em;
    }
    .event-card .banner {
        flex-direction: column;
    }
    .event-card ul {
        margin:0!important;
        padding:0!important;
    }
    .event-card .banner ul li.event-title {
        flex-direction: column;
        padding-top:10px;
    }
    .event-card ul li span.question {
        display:block;
    }
}

.event-card.past .calendar-event .month {
    background:rgb(50,50,50);
}

.event-card.past .banner ul li.event-title span.calendar-title a {
    color:white;
}

.event-card.past {
    padding:16px;
    background:rgba(255,255,255,0.02);
    border:none;
}

.event-card.past .banner ul li span.question {
    display:block;
}
