.postListIntroNews {
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
}

.postListIntroNews__post {
    position: relative;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-word;
    color: var(--gray);
    background-color: #fff;
    box-shadow: var(--boxShadow);
}

.postListIntroNews__image {
    display: none;
}

.postListIntroNews__date {
    display: block;
    margin-bottom: .2em;
    color: var(--mediumGray);
}

.postListIntroNews__title {
    color: var(--baseDark500);
}

.postListIntroNews__intro {
    font-size: .875rem;
    line-height: normal;
}

.postListIntroNews__author {
    color: var(--darkBlue);
}

.postListIntroNews__more::before {
    content: '';
    position: absolute;
    top: -5rem;
    right: -15px;
    bottom: -15px;
    left: -15px;
}

.postListIntro__readMoreWrapper {
    text-align: center;
}

.weblogPostsListNews .postListIntro__readMore {
    display: block;
    padding: 15px;
    text-align: center;
    font: 700 1rem/1.5rem 'Nunito Sans', sans-serif;
    text-transform: initial;
    color: var(--lightGreen);
    border: none;
}

.weblogPostsListNews .postListIntro__readMore:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
    .postListIntroNews {
        display: flex;
        flex-wrap: wrap;
        column-gap: 30px;
    }

    .postListIntroNews__post {
        flex: 0 1 calc(33.333% - 20px);
        padding-top: 5rem;
        background: var(--lightGray);
    }

    .postListIntroNews__post:hover {
        background: var(--lightGreen);
    }

    .postListIntroNews__title {
        font-size: 1.1rem;
    }

    .postListIntroNews__image {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }

    .postListIntroNews__textColumn {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 15px;
        background: #fff;
    }

    .postListIntroNews__more {
        position: static;
        display: block;
        margin: 1rem -15px -15px;
        padding: 0.75rem 15px 15px;
        border-top: 1px solid #f4f4f4;
        text-indent: 0;
        text-align: center;
        color: inherit;
    }

    .postListIntroNews__post:hover .postListIntroNews__more {
        text-decoration: none;
        color: var(--lightGreen);
    }
}
