#mini-events {
    margin-bottom: 56px;
}
.mini-list-loaded {
    display: flex!important;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1322px;
    margin: 0 auto;
}
.cal-event {
    width: calc(100%/3);
    padding: 4px 15px;
    cursor: pointer;
}

.cal-content {
    border-bottom: 1px solid #B9CCD9;
    min-height: 137px;
    height: 100%;
    padding: 20px 21px;
}

.cal-content time {
    font-family: 'Inter', sans-serif;
    color: #ef3a4d;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.cal-title {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    margin-left: -1px;
}

@media only screen and (max-width:991px){
    .cal-event {
    width: calc(100%/2);
}
}
@media only screen and (max-width:600px){
    .cal-title{font-size: 20px;}
}
@media only screen and (max-width:600px){
    .cal-event {
        width: 100%;
    }
}