div.column-events-teaser div.events-teaser {
    position: relative;
    min-height: 380px;
}
div.column-events-teaser div.events-teaser div.menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.33%;
    box-sizing: border-box;
    padding-right: 12px;
    min-height: 380px;
}
div.column-events-teaser div.events-teaser div.menu h1 {
    font-size: 44px;
    word-wrap: break-word;
}
div.column-events-teaser div.events-teaser div.menu div.categories {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
div.column-events-teaser div.events-teaser div.menu div.categories li {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
div.column-events-teaser div.events-teaser div.menu div.categories a {
    position: relative;
    display: block;
    padding: 10px 26px;
    color: rgba(104, 118, 130, .5);
    transition: .3s;
}
div.column-events-teaser div.events-teaser div.menu div.categories a:hover {
    color: rgba(104, 118, 130, 1);
    transition: .3s;
}
div.column-events-teaser div.events-teaser div.menu div.categories a.active {
    color: #453E38;
    font-weight: bold;
    transition: .3s;
}
div.column-events-teaser div.events-teaser div.menu div.categories a.active::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 50%;
    background: #E3001B;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

div.column-events-teaser div.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: minmax(380px, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}
div.column-events-teaser div.events-grid a.event {
    position: relative;
}
div.column-events-teaser div.events-grid a.event div.event-w {
    padding: 24px 24px 120px;
}
div.column-events-teaser div.events-grid a.event:first-child {
    grid-column-start: 2;
}
div.column-events-teaser div.events-grid a.event h3,
div.column-events-teaser div.events-grid a.event h4,
div.column-events-teaser div.events-grid a.event p {
    color: #ffffff;
}

div.column-events-teaser div.events-grid a.event span.category {
    color: #ffffff;
    background: #E3001B;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 9px;
    line-height: 14px;
    position: absolute;
    right: 0;
    top: 0;
}

div.column-events-teaser div.events-grid a.event h3 {
    margin-bottom: 24px;
}
div.column-events-teaser div.events-grid a.event ruby {
    ruby-position: under;
    ruby-align: start;
}
div.column-events-teaser div.events-grid a.event ruby rt {
    text-transform: uppercase;
    font-weight: normal;
}

div.column-events-teaser div.events-grid a.event div.info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 16px;
}
div.column-events-teaser div.events-grid a.event div.info p {
    font-size: 12px;
    line-height: 18px;
    color: rgba(255,255,255,.5);
    transition: .3s;
}
div.column-events-teaser div.events-grid a.event:hover div.info p {
    color: rgba(255,255,255,1);
    transition: .3s;
}
div.column-events-teaser div.events-grid a.event div.info p.more {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 18px;
    text-decoration: underline;
    margin-top: 10px;
}
div.column-events-teaser div.events-grid a.event div.info i.icon-map {
    top: 3px;
    transform: none;
}
div.column-events-teaser div.events-grid div.more {
    background: #F3F4F5;
    position: relative;
}
div.column-events-teaser div.events-grid div.more div.button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24px;
    right: 24px;
    text-align: center;
}

@media only screen and (max-width: 768px) {

    /*** Menu ***/

    div.column-events-teaser div.events-teaser div.menu {
        width: 100%;
        padding-right: 0;
        position: static;
        min-height: auto;
    }
    div.column-events-teaser div.events-teaser div.menu div.title {
        text-align: center;
        margin-bottom: 10px;
    }
    div.column-events-teaser div.events-teaser div.menu div.categories {
        position: relative;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 40px;
        width: 220px;
        max-width: 100%;
        z-index: 2;
    }
    div.column-events-teaser div.categories.mobile-initialized > a {
        border-bottom: 1px solid #E8E8E8;
        color: #453E38;
        font-weight: bold;
        line-height: 36px;
        display: block;
        padding: 0;
    }
    div.column-events-teaser div.categories.mobile-initialized > a i {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotateZ(90deg);
        color: #E3001B;
        font-size: 18px;
    }
    div.column-events-teaser div.categories.mobile-initialized ul {
        position: absolute;
        z-index: 3;
        left: 0;
        right: 0;
        top: 100%;
        background: #FFFFFF;
        box-shadow: 0 0 8px #00000029;
        padding: 5px 10px;
        transform: translateY(-50%) scaleY(0);
        transition: transform .3s;
    }
    div.column-events-teaser div.categories.mobile-initialized.open ul {
        transform: translateY(0) scaleY(1);
        transition: transform .3s;
    }
    div.column-events-teaser div.events-teaser div.menu div.categories.mobile-initialized a {
        padding: 6px 0;
    }
    div.column-events-teaser div.events-teaser div.menu div.categories a.active::before {
        content: none;
    }

    /*** Grid ***/

    div.column-events-teaser div.events-grid {
        display: block;
        margin: 0 -15px;
    }

    div.column-events-teaser div.events-grid div.slick-track {
        display: flex !important;
        align-items: stretch;
    }
    div.column-events-teaser div.events-grid div.slick-track .slick-slide {
        height: auto;
    }


    div.column-events-teaser div.events-grid a.event,
    div.column-events-teaser div.events-grid div.more {
        display: block;
        width: 100%;
        min-height: 300px;
        margin: 0 15px;
    }
}