.postListIntro__post {
    position: relative;
    margin-bottom: calc(var(--rowGutter) * 2);
    padding-bottom: calc(var(--rowGutter) * 2);
    border-bottom: 1px solid var(--border-color-light);
}

.postListIntro__post:hover .postListIntro__title {
    color: var(--secondaryColor500);
}

.postListIntro__title {
    margin-bottom: 0;
}

.postListIntro__date {
    display: inline-block;
    margin: .5rem 0;
    color: #777;
}

.postListIntro__authors {
    z-index: 12;
    position: relative;
}

.postListIntro__introduction {
    clear:both;
}

.postListIntro__imageWrapper {
    margin-top: 1rem;
}

.postListIntro__image {
    display: block;
    mix-blend-mode: multiply;
}

.postListIntro__metaWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: .5rem;
    margin-top: 1rem;
}

.postListIntro__moreLink,
.postListIntro__icon {
    display: inline-block;
    color: var(--secondaryColor500);
}

.postListIntro__moreLink {
    font-weight: 700;
}

.postListIntro__icon {
    font-size: .8rem;
    transition: all ease-in-out .2s;
}

.postListIntro__post:hover .postListIntro__icon:before {
    transform: translateX(5px);
    transition: transform ease-in-out .2s;
}

@media (min-width: 1000px) {
    .postListIntro__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: var(--columnGutter);
    }

    .postListIntro__imageWrapper {
        flex: 1 0 270px;
        margin-top: 0;
    }
}
