/**
 * weblog list
 */

.postListIntro__subTitle {
    min-height: 73px;
}

.postListIntro__imageWrapper {
    float: left;
    width: 100px;
    margin-right: .5em;
    overflow: hidden;
}

.postListIntro__image {
    display: block;
    transition: all ease-in-out .2s;
}

.postListIntro__post:hover .postListIntro__image {
    scale: 1.025;
}

/**
 * intro list on home page
 */

.templateHome .postListIntro__post {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.templateHome .postListIntro__imageWrapper {
    flex: 0 0 90px;
    max-width: 90px;
    margin: 0;
    overflow: hidden;
}

.templateHome .postListIntro__contentWrapper {
    flex: 0 0 calc(100% - 90px - 1em);
    max-width: calc(100% - 90px - 1em);
    padding: 0;
}

.templateHome .postListIntro__post {
    margin-bottom: 1.3em;
}

.templateHome .postListIntro__subTitle {
    min-height: unset;
}

.templateHome .postListIntro__subTitle {
    font-size: .7em;
}

.templateHome .postListIntro__title {
    font-size: .8em;
}

.templateHome .weblogMeta {
    display: none;
}

@media (min-width: 900px) {
    .postListIntro__post {
        display: flex;
    }

    .postListIntro__imageWrapper {
        flex: 0 0 240px;
        max-width: 240px;
        margin-right: 0;
    }

    .postListIntro__contentWrapper {
        flex: 0 0 calc(100% - 240px);
        max-width: calc(100% - 240px);
        padding-left: 1.5em;
    }

    .templateHome .postListIntro__imageWrapper {
        flex: 0 0 182px;
        max-width: 182px;
    }

    .templateHome .postListIntro__contentWrapper {
        flex: 0 0 calc(100% - 182px - 1em);
        max-width: calc(100% - 182px - 1em);
    }

    .postListIntro__subTitle {
        min-height: unset;
    }

    .templateHome .postListIntro__subTitle {
        font-size: 1.1em;
    }

    .templateHome .postListIntro__title {
        font-size: 1.3em;
    }

    .templateHome .weblogMeta {
        display: block;
    }
}

.weblogMeta__date,
.weblogMeta__tags {
    margin-bottom: .6em;
    text-transform: lowercase;
    color: #5466af;
}

.weblogMeta__tag {
    display: inline-block;
}

.weblogMeta__tags:before {
    padding: 0 .4em;
    content: '|';
}

.weblogMeta__tag:after {
    margin-right: .2em;
    content: ',';
}

.weblogMeta__tag:last-child::after {
    content: none;
}

.postListIntro__readMoreLink {
    position: absolute;
    inset: 0;
    text-indent: -9999em;
}

/**
 * weblog full post
 */

.weblogPost__imageWrapper {
    margin: 1em 0 2em 0;
}

.weblogPost__imageCaption {
    font-size: .7em;
}

/**
 * weblog bottom tags in sidebar
 */

.weblogTagsBottom--title {
    margin-bottom: .5em;
    font-size: 1.4em;
    font-weight: 300;
}

.weblogTagsBottom--tag {
    display: inline-block;
    margin: 0 .8em .8em 0;
    padding: .8em;
    font-size: .8em;
    color: #344293;
    text-transform: lowercase;
    white-space: nowrap;
    background: #d4d6e4;
}
