.postListBlog {
    .postListIntro__rssIcon {
        display: block;
        float: right;
        width: 16px;
        height: 16px;
        margin-bottom: 1rem;
        text-indent: -999em;
        background: url('../icons/rss.png') no-repeat 0 0;
    }

    .postListIntro__posts {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
        margin: 0 0 2rem;
        padding: 0;
        list-style: none;
        clear: both;
    }

    @media screen and (min-width: 768px) {
        .postListIntro__posts {
            grid-gap: var(--columnGutterSmall);
        }
    }

    .content .postListIntro__posts {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .postListIntro__post {
        position: relative;
        background: var(--baseLight100);
        margin-bottom: 1rem;
    }

    .postListIntro__post--noImage {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--baseLight200);
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    @media screen and (min-width: 768px) {
        .postListIntro__post--noImage {
            padding: 1.25rem;
            border: 1px solid var(--baseLight200);
            box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.055), 0 0 30px 0 rgba(0, 0, 0, 0.03);
            margin-bottom: .25rem;
        }
    }

    .postListIntro__post--noImage .postListIntro__imageWrapper {
        display: none;
    }

    .postListIntro__post--noImage .postListIntro__text {
        padding: 0 2.5rem 0 0;
    }

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

    @media screen and (min-width: 768px) {
        .postListIntro__post--noImage .postListIntro__text {
            padding: 0 1.5rem 0 0;
        }
    }

    .postListIntro__tags {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        z-index: 1;
    }

    .postListIntro__tags--noImage {
        position: static;
        left: inherit;
        bottom: inherit;
        z-index: inherit;
        margin-top: .25rem;
    }

    .postListIntro__tag {
        float: left;
        padding: .3rem .85rem;
        margin: .5rem .5rem 0 0;
        border-radius: 2rem;
        font-size: var(--labelSize);
        font-family: var(--specialFont);
        color: var(--baseLight100);
        background: rgba(0, 0, 0, .55);
    }

    .postListIntro__tag:hover {
        text-decoration: none;
        background: rgba(0, 0, 0, .7);
    }

    .postListIntro__tag::before {
        margin-right: .35rem;
        font-size: .7rem;
    }

    .postListIntro__imageWrapper {
        position: relative;
        overflow: hidden;
        border-radius: var(--borderRadiusLarge);
        border: 1px solid var(--baseLight200);
        box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.055), 0 0 30px 0 rgba(0, 0, 0, 0.03);
    }

    .postListIntro__image {
        display: block;
        width: 100%;
        transition: transform var(--transitionTime) ease-in-out;
    }

    .postListIntro__post:hover .postListIntro__image {
        transform: scale(1.035);
    }

    .postListIntro__date {
        color: var(--baseDark200);
    }

    .postListIntro__title {
        margin: 0;
        font-size: var(--h5Size);
        color: var(--baseDark500);
        transition: all var(--transitionTime) ease-out;
    }

    .postListIntro__text {
        padding: 1.25rem 0 0;
    }

    .postListIntro__link {
        transition: all var(--transitionTime) ease-in-out;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border: 1px solid transparent;
    }

    @media screen and (min-width: 768px) {
        .postListIntro__post--noImage .postListIntro__link:hover {
            border-radius: var(--borderRadius);
            border-color: rgba(var(--primaryRGBColor900), .3);
        }
    }

    .postListIntro__post--noImage .postListIntro__link {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        text-decoration: none;
    }

    .postListIntro__post--noImage .postListIntro__link:after {
        transition: all var(--transitionTime) ease-in-out;
        opacity: 0.85;
        display: inline-block;
        margin-left: 0;
        font-size: 0.8rem;
        content: '\e84e';
        font-family: var(--iconFont);
        font-weight: 400;
        position: relative;
        right: 1.25rem;
    }

    .postListIntro__post--noImage .postListIntro__link:hover:after {
        opacity: 1;
        right: 1.1rem;
    }

    /*
    * Filter
    */

    .fe-checkboxgroup li {
        margin-bottom: .35rem;
        font-size: .95rem;
        align-items: center;
    }

    .weblogList .aside .article {
        padding: 1.5rem;
        background: var(--lightBlue);
        margin-bottom: var(--articleMarginBottomSmall);
    }

    .weblogList #postListFilter.show {
        margin-top: var(--articleMarginBottomSmall);
    }

    .weblogList #postListFilterSection label.field {
        font-weight: 700;
        color: var(--primaryColor500);
    }

    .weblogList .togglePostListFilter:before {
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "";
        display: block;
        background: url('/ui/kortom/images/icon--filter.svg') no-repeat;
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
        float: left;
        margin: 0 8px 0 0;
    }
}
