.meetingListHomepage {
    margin-bottom: 0;
    padding-bottom: var(--articleMarginBottom);
    background-color: var(--secondaryColor100);
}

.meetingListHomepage .mmt-ml-meetings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gridGap);
}

@media (max-width: 1039px) {
    .highlightedEvent:first-child {
        grid-column: 1/-1;
    }
}

.highlightedEvent {
    position: relative;
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: all .4s ease-out;
}

.highlightedEvent .wrapper {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    align-items: flex-start;
}

.highlightedEvent:hover {
    translate: 0 -.5rem;
}

.highlightedEvent__image {
    display: block;
    width: 100%;
    order: -1;
    border-radius: var(--borderRadius);
}

.highlightedEvent__text {
    padding-top: 0.7em;
}

@media (min-width: 1024px) {
    .meetingListHomepage {
        background-image: linear-gradient(180deg, var(--secondaryColor100) 0%, var(--secondaryColor100) 86%, var(--baseLight100) 86%);
    }
}

@media screen and (min-width: 1440px) {
    .highlightedEvent__text {
        font-size: 1.1em;
    }
}

.highlightedEvent__date {
    translate: -1rem -1rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--borderRadius);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
    background: var(--secondaryColor500);
}

.highlightedEvent__month {
    font-size: .8em;
}

.highlightedEvent__day {
    font-weight: 700;
}

.highlightedEvent__title {
    padding: 1rem 1rem 0 0;
    hyphens: auto;
}

.highlightedEvent__link {
    text-align: right;
}

.moreLinkWrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--articleMarginBottom);
}
