/* Styles for date */
.date-teaser-container {
    position: relative;
    height: 16rem;
    width: 100%;
}
.date-teaser-image {
    position: absolute;
    top: 15px;
    bottom: 13px;
    left: 0;
    right: 52%;
    height: 14rem;
}
.date-teaser-image img{
    height: 14rem;
    width: 100%;
    object-fit: cover;
}
.date-teaser-date {
    background-color: #f0f0f0;
    color: #000;
    font-size: 2.3rem;
    font-weight: bold;
    font-family: 'EBGaramond';
    position: absolute;
    top: 0;
    height: 7.5rem;
    width: 7.5rem;
    left: 0;
    margin: auto;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.date-teaser-body {
    position: absolute;
    top: 4.9rem;
    bottom: 0;
    left: 60%;
    right: 0;
    font-size: 0.9rem;
    text-align: left;
}
.date-teaser-body a {
    color: #331f59;
}
.date-teaser-separator {
    background-color: #331f59;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    margin: auto;
    right: 0;
}
.view-dates .views-rows > .views-row:last-child .date-teaser-separator {
    display: none;
}
.even .date-teaser-image {
    left: 52%;
    right: 0;
}
.even .date-teaser-body {
    left: 0;
    right: 60%;
    text-align: right;
}
/* Orange bar */
.view-dates .views-rows > .views-row:nth-child(6n+2) .date-teaser-image:after {
    content: " ";
    height: 8rem;
    width: 7px;
    background: #331f59;
    position: absolute;
    bottom: -8rem;
    right: 0px;
    display: block;
    z-index: 10;
}
 
@media (max-width: 992px) { 
    .date-teaser-container {
        height: 10rem;
    }
    .date-teaser-date {
        font-size: 1.6rem;
        height: 5rem;
        width: 5rem;
    }
    .date-teaser-image img {
        height: 5rem;
    }
    .date-teaser-body {
        top: 6rem;
        left: 55%;
        font-size: 0.7rem;
    }
    .even .date-teaser-body {
        right: 55%;
    }
    .view-dates .views-rows > .views-row:nth-child(6n+2) .date-teaser-image:after {
        height: 6rem;
        width: 5px;
        bottom: 2rem;
    }
}