.postListIntro__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.postListIntro__item {
    position: relative;
    padding: 1rem 0 2rem;
    border-top: 1px dotted var(--baseLight500);
}

.postListIntro__titleDateWrapper {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem;
    justify-content: space-between;
}

.postListIntro__title {
    flex: 1;
    order: 2;
    text-transform: none;
    font-family: var(--baseFont);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--primaryColor500);
}

.postListIntro__item:hover .postListIntro__title {
    text-decoration: underline;
    color: var(--primaryColor900);
}

.postListIntro__image {
    display: block;
    margin-bottom: 1rem;
}

.postListIntro__introduction {
    font-size: var(--labelSize);
}

.postListIntro__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/**
 * Adjustments for the videoblog snippetStyle
 */

.postListIntro.--videoblog .postListIntro__list,
.postListIntro.--news .postListIntro__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 15px;
}

@media (min-width: 250px) {
    .postListIntro__titleDateWrapper {
        flex-wrap: nowrap;
    }

    .postListIntro__title {
        order: 1;
    }

    .weblog__dateWrapper {
        order: 2;
    }
}
