.weblogPost > * + * {
    margin-top: var(--articleMarginBottomSmall);
}

.weblogPost__backToOverview,
.weblogPostNavigation__itemLinkIcon {
    color: var(--secondaryColor500);
    transition: margin ease-in-out .2s;
}

.weblogPost__backToOverview__icon::before,
.weblogPostNavigation__itemLinkIcon::before {
    font-size: var(--textSizeXS);
}

.weblogPost__backToOverview__link {
    color: inherit;
    text-decoration: underline;
}

.weblogPost__title {
    font-size: var(--h1Size);
    line-height: 1.2;
}

.weblogPost__date {
    color: #777;
}

.weblogPost__image {
    margin-bottom: 2rem;
}

.weblogPost__introduction {
    font-size: var(--h5Size);
}

/**
* Tagcloud
 */
.wl-tagcloud {
    clear: both;
}

/**
* Text
 */
.weblogPost__text ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: auto;
}

.weblogPost__text ul li {
    margin: 0.8rem 0;
    padding-left: 2rem;
    background: url(../../../images/shape.svg) no-repeat;
    background-position-y: 3px;
    background-size: 1.125rem;
}

.weblogPost__text ul ul {
    margin:.25rem 0 .5rem 1rem;
}

/**
 * Attachments
 */

.weblogPost__attachments {
    clear: both;
}

.weblogPost__attachmentLink {
    position: relative;
    display: block;
    padding: 1rem 3rem 1rem 4rem;
    color: inherit;
}

.weblogPost__attachmentLink:hover {
    color: var(--eespa-primary);
    background-color: #f6f6f6;
}

.weblogPost__attachmentLink::before,
.weblogPost__attachmentLink::after {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    display: block;
    width: 25px;
    height: 26px;
    margin-top: -13px;
    color: inherit;
    background: transparent url(../images/icon--document.svg) no-repeat 0 0;
    background-size: cover;
}

.weblogPost__attachmentLink[href*='.pdf']::before {
    background-image: url(../images/icon--pdf.svg);
}

.weblogPost__attachmentLink::after {
    right: 1rem;
    left: auto;
    width: 20px;
    height: 15px;
    margin-top: -7px;
    background: transparent url(../images/icon--download.svg) no-repeat 0 0;
    background-size: cover;
}

.weblogPost__attachmentItem + .weblogPost__attachmentItem {
    border-top: 1px solid var(--baseLight300);
}

/**
 * Navigation
 */

.weblogPostNavigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.7rem;
    border-top: 1px solid #eaeaea;
}

.weblogPostNavigation__item--next {
    text-align: right;
}

.weblogPostNavigation__itemTitle {
    display: block;
    margin-bottom: .5rem;
    font-size: var(--labelSize);
    text-transform: uppercase;
    color: #777;
}

.weblogPostNavigation__itemLink {
    display: flex;
    gap: .5rem;
    color: var(--eespa-secondary);
}

.weblogPost__shareTitle {
    color: var(--primaryColor500);
}

.weblogPost__share,
.shareButtons {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.shareButtons__itemLink {
    font-size: var(--h4Size);
}

.shareButtons__itemLink:hover {
    color: var(--secondaryColor500);
    text-decoration: none;
}

@media (min-width: 768px) {
    .blog-full-post .aside {
        margin-top: var(--articleMarginBottomSmall);
        transition: transform 0.3s ease-out;
    }
}

@media (min-width: 1024px) {
    .weblogPost__image {
        float: left;
        margin: 0 2rem 2rem 0;
    }
}

@media (min-width: 1300px) {
    .weblogPost__image {
        margin-left: -70px;
    }

    .weblogPostNavigation__itemLinkWrapper {
        display: flex;
    }

    .weblogPostNavigation__item--next .weblogPostNavigation__itemLinkWrapper {
        flex-direction: row-reverse;
    }

    .weblogPostNavigation__item--previous .weblogPostNavigation__itemLinkIcon {
        margin-right: .2em;
    }

    .weblogPostNavigation__item--previous .weblogPostNavigation__itemLinkWrapper {
        margin-left: .2em;
    }

    .weblogPostNavigation__item--next .weblogPostNavigation__itemLinkIcon {
        margin-left: .2em;
    }

    .fullPost .header + .main {
        padding-top: 33em;
    }
}


