.wlpl__title {
    margin-bottom: 2rem;
    font-size: var(--txtSize-3);
    font-family: var(--fam-regular);
    line-height: var(--lnHeight-sm);
    font-weight: var(--txt-regular);
}

.wlplList {
    margin-block: 0;
    padding-inline: 0;
    list-style: none;
}

.wlpl__header {
    flex-direction: column;
}

.wlplItem__date {
    display: block;
    margin-bottom: 0.5rem;
    font-size: .9rem;
}

.wlplItem__title {
    margin-bottom: .5rem;
    font-size: var(--txtSize-4);
}

.wlplItem:hover .wlplItem__title {
    color: var(--clr1-normal);
}

.wlplItem__imageWrapper {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-block: auto;
    border-radius: var(--radius-lg);
    width: 237px;
    max-width: 100%;
}

.wlplItem__image {
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    object-fit: cover;
    transition: all var(--transition-time--slow) ease-in-out;
}

.wlplItem:hover .wlplItem__image {
    transform: scale(1.02);
}

.wlplItem__title a {
    text-decoration: none;
    color: inherit;
}

@media screen and (min-width: 990px) {
    .wlpl__title {
        font-family: var(--fam-light);
        line-height: var(--lnHeight-sm);
        font-weight: var(--txt-light);
    }
}

/**
* More link, below article
 */
.wl-more-link {
    font-size: var(--txtSize-6);
    font-family: var(--fam-medium);
    text-decoration: none;
    color: var(--clr1-normal);
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    .wl-more-link {
        display: inline-block;;
        text-align: inherit;
        position: absolute;
        top: .5rem;
        right: 0;
    }
}

/**
 * Tile snippetStyles
 */
.wlp-tiles {
    position: relative;
}

.wlp-tiles .wlplItem {
    margin-bottom: 2rem;
}

.wlplItem p {
    font-size: var(--txtSize-6);
}

.wlp-tiles .wlpl__tags {
    margin-bottom: .7em;
}

@media (min-width: 580px) {
    .wlp-tiles .wlplList {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /* if not multiple of 3*/
    .wlp-tiles .wlplItem {
        flex: 0 calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
        margin-right: 2rem;
    }

    .wlp-tiles .wlplItem:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 990px) {
    /* if multiple of 3 */
    .wlp-tiles .wlplList--multiple-of-3 .wlplItem {
        flex: 0 calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
        margin-right: 2rem;
    }

    .wlp-tiles .wlplList--multiple-of-3 .wlplItem:nth-child(3n) {
        margin-right: 0;
    }
}

@media (min-width: 1200px) {
    /* if not multiple of 3*/
    .wlp-tiles .wlplList:not(.wlplList--multiple-of-3) .wlplItem {
        flex: 0 calc((100% - 6rem) / 4);
        max-width: calc((100% - 6rem) / 4);
    }

    .wlp-tiles .wlplList:not(.wlplList--multiple-of-3) .wlplItem:nth-child(2n) {
        margin-right: 2rem;
    }

    .wlp-tiles .wlplList:not(.wlplList--multiple-of-3) .wlplItem:nth-child(4n) {
        margin-right: 0;
    }
}
