﻿.wl__postList ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wl__postList ol > li {
    list-style-image: none;
}

.wl__postList ol > li::before {
    background: none;
}

.wl__postList__post {
    transition: background-color 0.125s cubic-bezier(0, 0, 0.3, 1);
    position: relative;
    padding-block: var(--mbase-spacer-reg);
    border-bottom: 1px solid var(--mbase-clr-brdr-light);
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.wl__postList__post::after {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e004";
}

.wl__postList__post::after {
    transition: left 0.25s ease-in-out;
    position: relative;
    left: 0;
    margin-left: var(--mbase-spacer-sm);
}

.wl__postList__post:hover::after {
    left: var(--mbase-spacer-xxs);
}

.wl__postList__post:hover .wl__postList__title {
    color: var(--mbase-clr-link-hover);
}

.wl__postList__post:hover .wl__postList__thumbnail::before {
    opacity: 1;
}

.wl__postList__post:hover .wl__postList__figure::before {
    opacity: 1;
}

.wl__postList__post:hover .wl__postList__figure img {
    transform: scale(1.05);
    opacity: 1;
}

.wl__postList__post:hover::after {
    left: inherit;
    right: calc(var(--mbase-spacer-xxs) * -1);
    color: var(--mbase-clr-link-hover);
}

.wl__postList__post.wl__postList__post--hasImage::after {
    align-self: flex-end;
}

.wl__postList__post.wl__postList__post--hasImage .wl__postList__text {
    padding-right: 0;
}

.wl__postList__post::after {
    transition: right 0.25s cubic-bezier(0, 0, 0.3, 1), bottom 0.25s cubic-bezier(0, 0, 0.3, 1);
    position: absolute;
    right: 0;
    left: inherit;
    display: flex;
    align-self: center;
    order: 3;
    font-size: var(--mbase-txtSize-4);
}

.wl__postList__post.wl__postList__post--tile:hover {
    background-color: var(--mbase-clr-bg-body);
}

.wl__postList__title {
    transition: all 0.25s ease-in-out;
    font-size: var(--mbase-txtSize-4);
    margin-bottom: var(--mbase-spacer-xs);
    font-family: var(--mbase-fam-special-regular);
    color: var(--mbase-clr-txt-body);
    clear: both;
}

.wl__postList__readMore {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
    text-indent: -999em;
}

.wl__postList__author {
    font-family: var(--mbase-fam-regular);
    font-size: var(--mbase-txtSize-7);
    position: relative;
    z-index: 1;
}

.wl__postList__authorLink {
    text-decoration: none;
    color: var(--mbase-clr-txt-body);
}

.wl__postList__meta {
    list-style: none;
    margin: 0;
    padding: var(--mbase-spacer-xxxs) 0 var(--mbase-spacer-xs);
    font-family: var(--mbase-fam-regular);
    font-size: var(--mbase-txtSize-7);
    color: var(--mbase-clr-txt-body);
}

.wl__postList__meta li {
    display: inline-block;
}

.wl__postList__meta li + li:before {
    content: "|";
    display: inline-block;
    color: var(--mbase-clr-txt-meta);
    position: relative;
    top: -1px;
    float: left;
    margin: 0 var(--mbase-spacer-xs);
}

.wl__postList__meta li + li::before {
    float: left;
}

.wl__postList__date {
    transition: all 0.25s ease-in-out;
    font-size: var(--mbase-txtSize-7);
    line-height: var(--mbase-lnHeight-sm);
    color: var(--mbase-clr-txt-date);
}

.wl__postList__date::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e007";
}

li:hover .wl__postList__date,
a:hover .wl__postList__date {
    color: var(--mbase-clr-link-hover);
}

.wl__postList__date::before {
    display: inline-block;
    margin-right: var(--mbase-spacer-xxs);
}

.wl__postList__thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: var(--mbase-brdr-radius-sm);
    margin-bottom: var(--mbase-spacer);
    width: 100%;
    order: 1;
}

.wl__postList__thumbnail .wl__postList__figure {
    display: flex;
    width: 100%;
    margin: 0;
    border-radius: var(--mbase-brdr-radius-sm);
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(var(--mbase-clr-white), var(--mbase-clr-black));
    align-items: flex-start;
}

.wl__postList__thumbnail .wl__postList__figure img {
    transition: all 1s cubic-bezier(0, 0, 0.3, 1);
    transform: scale(1.01);
    opacity: 0.95;
    width: 100%;
    height: auto;
}

.wl__postList__text {
    width: 100%;
    padding-right: var(--mbase-spacer-lg);
    order: 3;
}

.wl__postList__intro {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom: var(--mbase-spacer-sm);
}

.wl__postList__intro p {
    margin-bottom: 0;
}

.wl__postList__intro p + p {
    display: none;
}

.wl__postList__showMoreLink {
    text-decoration: none;
    font-weight: var(--mbase-txt-bold);
    text-align: right;
    width: 100%;
    display: block;
    margin: var(--mbase-spacer-xs) 0 var(--mbase-spacer-reg);
}

.wl__postList__showMoreLink::after {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e004";
}

.wl__postList__showMoreLink::after {
    transition: left 0.25s ease-in-out;
    position: relative;
    left: 0;
    margin-left: var(--mbase-spacer-sm);
}

.wl__postList__showMoreLink:hover::after {
    left: var(--mbase-spacer-xxs);
}

.wl__postList__tiles,
.wl__postList__tiles--fullWidth {
    position: relative;
}

.wl__postList__tiles .wl__postList__post,
.wl__postList__tiles--fullWidth .wl__postList__post {
    margin-bottom: var(--mbase-spacer-lg);
    padding: 0;
    border-bottom: none;
}

.wl__postList__tiles .wl__postList__post p,
.wl__postList__tiles--fullWidth .wl__postList__post p {
    font-size: var(--mbase-txtSize-6);
}

.wl__postList__tiles .wl__postList__post .wl__postList__tags,
.wl__postList__tiles--fullWidth .wl__postList__post .wl__postList__tags {
    margin-bottom: var(--mbase-spacer-sm);
}

.wl__postList__tiles .wl__postList__post .wl__postList__header,
.wl__postList__tiles--fullWidth .wl__postList__post .wl__postList__header {
    flex-direction: column;
}

.wl__postList__tiles .wl__postList__post::after,
.wl__postList__tiles--fullWidth .wl__postList__post::after {
    display: none;
    content: "";
}

.wl__postList--extendedTitle .wl__postList__post {
    border-radius: var(--mbase-brdr-radius);
}

.wl__postList--extendedTitle .l-tile {
    background-color: transparent;
}

.wl__postList--extendedTitle .l-tile__header {
    padding-top: 0;
}

.wl__postList--extendedTitle .l-tile__footer {
    padding-bottom: 0;
}

@media (min-width: 36em) {
    .wl__postList__post {
        flex-wrap: nowrap;
    }

    .wl__postList__post.wl__postList__post--hasImage .wl__postList__text {
        width: calc(70% - var(--mbase-spacer-reg));
    }

    .wl__postList__post::after {
        order: 1;
    }

    .wl__postList__thumbnail {
        margin-bottom: 0;
        margin-left: var(--mbase-spacer-lg);
        width: 30%;
        order: 2;
    }

    .wl__postList__tiles .wl__postList__post,
    .wl__postList__tiles--fullWidth .wl__postList__post {
        margin-right: var(--mbase-spacer-lg);
        flex: 0 0 calc((100% - var(--mbase-spacer-lg) * (2 - 1)) / 2);
        max-width: calc((100% - var(--mbase-spacer-lg) * (2 - 1)) / 2);
    }

    .wl__postList__tiles .wl__postList__post:nth-child(2n),
    .wl__postList__tiles .wl__postList__post:last-child,
    .wl__postList__tiles--fullWidth .wl__postList__post:nth-child(2n),
    .wl__postList__tiles--fullWidth .wl__postList__post:last-child {
        margin-right: 0;
    }

    .wl__postList__tiles .wl__postListPosts,
    .wl__postList__tiles--fullWidth .wl__postListPosts {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (min-width: 48em) {
    .wl__postList__post {
        min-height: 220px;
        padding-block: var(--mbase-spacer-lg);
    }
}


@media (min-width: 48em) and (max-width: 79.98em) {
    .wl__postList__thumbnail {
        max-height: 120px;
    }
}

@media (min-width: 62em) {
    .wl__postList__post.wl__postList__post--hasImage .wl__postList__text {
        width: calc((100% - 270px) - var(--mbase-spacer-reg));
    }

    .wl__postList__thumbnail {
        width: 270px;
    }

    .wl__postList__tiles .wl__postListPosts.wl__postListPosts--multiple-of-3 .wl__postList__post {
        margin-right: var(--mbase-spacer-lg);
        flex: 0 0 calc((100% - var(--mbase-spacer-lg) * (3 - 1)) / 3);
        max-width: calc((100% - var(--mbase-spacer-lg) * (3 - 1)) / 3);
    }

    .wl__postList__tiles .wl__postListPosts.wl__postListPosts--multiple-of-3 .wl__postList__post:nth-child(3n),
    .wl__postList__tiles .wl__postListPosts.wl__postListPosts--multiple-of-3 .wl__postList__post:last-child {
        margin-right: 0;
    }
}

@media (min-width: 80em) {
    .wl__postList__post.wl__postList__post--hasImage::after {
        align-self: center;
        right: calc(var(--mbase-spacer-xl) * -1);
    }

    .wl__postList__post.wl__postList__post--hasImage:hover::after {
        right: calc(calc(var(--mbase-spacer-xl) + var(--mbase-spacer-xxs)) * -1);
    }

    .wl__postList__tiles--fullWidth .wl__postListPosts:not(.wl__postListPosts--multiple-of-3) .wl__postList__post {
        margin-right: var(--mbase-spacer-xl);
        flex: 0 0 calc((100% - var(--mbase-spacer-xl) * (4 - 1)) / 4);
        max-width: calc((100% - var(--mbase-spacer-xl) * (4 - 1)) / 4);
    }

    .wl__postList__tiles--fullWidth .wl__postListPosts:not(.wl__postListPosts--multiple-of-3) .wl__postList__post:nth-child(4n),
    .wl__postList__tiles--fullWidth .wl__postListPosts:not(.wl__postListPosts--multiple-of-3) .wl__postList__post:last-child {
        margin-right: 0;
    }

    .wl__postList__tiles--fullWidth .wl__postListPosts:not(.wl__postListPosts--multiple-of-3) .wl__postList__post:nth-child(2n) {
        margin-right: var(--mbase-spacer-lg);
    }

    .wl__postList__tiles--fullWidth .wl__postListPosts:not(.wl__postListPosts--multiple-of-3) .wl__postList__post:nth-child(4n) {
        margin-right: 0;
    }
}
