/**
 *    postListIntro
 */

.postListIntro__posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    grid-gap: calc(var(--columnGutter) / 2);
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    clear: both;
}

.postListIntro__post {
    position: relative;
    border-top: 4px solid var(--primaryColor500);
    background: var(--baseLight100);
}

.postListIntro__image {
    display: block;
    width: 100%;
}

.postListIntro__text {
    position: absolute;
    padding: 3%;
    bottom: 0;
}

.postListIntro__title {
    margin: 0 0 .25em 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: var(--siteFontCondensed);
    text-transform: uppercase;
    color: var(--baseLight100);
    transition: all 0.8s;
}

.weblogMeta {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1818em;
    text-transform: uppercase;
    color: var(--baseLight100);
}

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

.postListIntro__link {
    z-index: 1;
}

.postListIntro__imageWrapper:after {
    content: '';
    background-image: radial-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.5));
}

.postListIntro__post:hover {
    cursor: pointer;
}

.postListIntro__post:hover .postListIntro__title {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

.postListIntro__readMore.backToOverview {
    margin-right: auto;
    margin-left: auto;
}
