.mod_meeting2 #postListFilterSection > div {
    flex: 0 0 47%;
}

.mod_meeting2 #postListFilterSection select {
    width: 100%;
}

.mmt-my-meetings-overview {
    padding: 1.5rem;
    box-shadow: 0 0 1.5rem rgb(0 0 0 / 13%);
}

.mmt-ml-meetings {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mmt-my-meetings-overview .mmt-ml-meetings {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
    grid-column-gap: 2rem;
    margin-bottom: 3rem;
}

.mmt-ml-meeting {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5rem;
    word-break: break-word;
    color: var(--gray);
    background-color: #fff;
}

.mmt-meeting-list-detailed .mmt-ml-meeting {
    margin-bottom: 1em;
    box-shadow: var(--boxShadow);
}

.mmt-meeting-list-simple .mmt-ml-meeting + .mmt-ml-meeting {
    border-top: 1px solid rgb(0 0 0 / 13%);
}

.mmt-my-meetings-overview .mmt-ml-meeting a {
    display: block;
    padding: 2em 1em 2em 5.5rem;
    color: inherit;
}

.mmt-meeting-list-simple .mmt-ml-meeting a {
    padding: 2em 1em;
}

.mmt-meeting-list-simple .mmt-ml-meeting:hover a,
.mmt-meeting-list-simple .mmt-ml-meeting:hover .mmt-ml-date,
.mmt-my-meetings-overview .mmt-ml-meeting:hover a,
.mmt-my-meetings-overview .mmt-ml-meeting:hover .mmt-ml-date {
    text-decoration: none;
    color: var(--darkBlue);
}

.mmt-meeting-list-simple .mmt-ml-date,
.mmt-my-meetings-overview .mmt-ml-date {
    left: 15px;
    top: 50%;
    border-radius: 50%;
    box-shadow: none;
}

.mmt-meeting-list-simple .mmt-ml-more-link,
.mmt-my-meetings-overview .mmt-ml-more-link {
    display: block;
    padding: 15px;
    border-top: 1px solid rgb(0 0 0 / 13%);
    text-align: center;
    font-weight: bold;
    color: var(--lightGreen);
}

.mmt-ml-meeting-image {
    background: var(--lightGray) 50%;
    background-size: cover;
}

.mmt-ml-content {
    margin: 15px 15px 0;
    padding-left: 4.5rem;
}

.mmt-ml-registrations {
    float: right;
    margin-left: 1rem;
    color: #1b1464;
    font-weight: 400;
}

.mmt-ml-date {
    position: absolute;
    transform: translateY(-50%);
    top: 2.5rem;
    left: 15px;
    width: 3.5rem;
    height: 3.5rem;
    padding-top: .5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    text-align: center;
    font-family: Dosis,sans-serif;
    font-weight: 500;
    line-height: 1;
    color: var(--mediumGray);
    background: var(--lightGray);
}

.mmt-meeting-list-detailed .mmt-ml-date {
    color: var(--darkBlue);
    background: var(--lightGreen);
}

.mmt-ml-date span {
    display: block;
    font-size: .9375rem;
    text-transform: uppercase;
}

.mmt-ml-title {
    overflow: hidden;
    max-width: 26rem;
    margin: 0 0 0.5rem;
    text-overflow: ellipsis;
    font-size: 1.5em;
    word-break: break-word;
    hyphens: auto;
}

.mmt-ml-title,
.mmt-ml-meeting:hover .mmt-ml-title,
.mmt-ml-title:hover {
    color: var(--primary);
}

.mmt-ml-location {
    position: relative;
    color: var(--mediumGray);
}

.mmt-ml-location::before {
    position: absolute;
    top: 0;
    left: -3.75rem;
    font-size: 1.8rem;
    color: var(--mediumGray);
}

.mmt-ml-location a {
    color: var(--gray);
}

.mmt-meeting-list-simple .mmt-ml-location {
    display: none;
}

.mmt-ml-more {
    text-indent: -999em;
}

.mmt-ml-more::after {
    content:'';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.mmt-meeting-list #postListFilterSection label {
    color: var(--lightGreen);
}

@media (max-width: 399px) {
    .mmt-meeting-list-simple .mmt-ml-date {
        position: relative;
        display: block;
        top: 10px;
        left: 0;
    }
}

@media (min-width: 400px){
    #postListFilterSection {
        display: flex;
        gap: 2rem;
    }

    .mmt-meeting-list-simple .mmt-ml-meeting a {
        display: block;
        padding: 2em 1em 2em 5.5rem;
        color: inherit;
    }

    .mmt-meeting-list-simple .mmt-ml-date {
        left: 15px;
        top: 50%;
        border-radius: 50%;
        box-shadow: none;
    }
}

@media (min-width: 992px) {
    .mmt-meeting-list-detailed .mmt-ml-meetings {
        display: flex;
        flex-wrap: wrap;
        column-gap: 30px;
    }

    .mmt-meeting-list-detailed .mmt-ml-meeting {
        justify-content: space-between;
        flex: 0 1 calc(33.333% - 20px);
    }

    .mmt-ml-meeting-image {
        min-height: 9rem;
    }

    .mmt-ml-content {
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: 16rem;
        margin: 2rem;
        padding: 1.5rem 15px 10px 3rem;
        background: var(--white);
        flex-grow: 1;
    }

    .mmt-meeting-list-detailed .mmt-ml-content {
        margin-top: -4rem;
    }

    .mmt-ml-registrations {
        transform: translate(.8em, -1.5em)
    }

    .mmt-ml-title {
        font-size: 1.5em;
        color: var(--mediumGray);
    }

    .mmt-ml-title:hover {
        color: var(--darkBlue);
    }

    .mmt-ml-time {
        font-size: 1.2rem;
        color: var(--mediumGray);
    }

    .mmt-ml-date {
        top: 3rem;
        left: -1.2rem;
    }

    .mmt-ml-more {
        position: static;
        padding: 15px;
        text-indent: 0;
        text-align: center;
        font-size: 1.2rem;
        color: var(--white);
        background: var(--mediumGray);
    }

    .mmt-ml-more:hover {
        text-decoration: none;
        color: var(--white);
        background-color: var(--blue);
    }

    .body.--pink .mmt-ml-more:hover {
        background-color: var(--pink);
    }

    .body.--darkBlue .mmt-ml-more:hover {
        background-color: var(--darkBlue);
    }

    .body.--green .mmt-ml-more:hover {
        background-color: var(--blue);
    }
}

/* KNVI logo appears when used 'KNVI Event' as tag*/
.mmt-ml-logo {
   margin: 1rem 0;
}

.mmt-ml-logo::before {
    content: '';
    position: absolute;
    width: 72px;
    height: 26px;
    background: url(/ui/knvi/img/logo.png) no-repeat;
    background-size: contain;

}
