.Article__content {
    max-width: none;
}

.weblogPost__backLink {
    font-family: var(--proximaMedium);
    font-size: var(--h4Size);
    color: var(--baseLight900);
}

section:not(.titleSection.--twoCol) .weblogPost__backLink {
    margin-bottom: 1rem;
}

.weblogPost__title {
    margin-bottom: 1rem;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

@media (min-width: 768px) {
    .titleSection.--twoCol .titleSection__inner {
        gap: 0 clamp(1rem,10vw,4rem);
        grid-template-columns: 1.2fr fit-content(35vw);
    }

    .pageTitle {
        grid-column: 1;
        grid-row: 2;
    }

    .weblogPost__info {
        grid-column: 1;
        grid-row: 3;
    }

    .weblogPost__image {
        grid-column: 2;
        grid-row: 1/-1;
    }

    .titleSection.--twoCol .weblogPost__backLink,
    .weblogPost__backLink {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 1rem;
    }
}

.weblogPost__content {
    margin-block: var(--margin);
}

.weblogPost__introduction,
.weblogPost__text {
    max-width: var(--maxTextWidth);
}

.weblogPost__text:has(iframe) {
    max-width: none;
}

.weblogPost__introduction {
    position: relative;
    margin-bottom: var(--margin);
    font-size: var(--h3Size);
}

.weblogPost__introduction--noAccess::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 88%);
}

.weblogPost__text {
    margin-bottom: var(--margin);
    line-height: 1.8;
}

/**
 * weblog attachments
 */

.weblogPost__attachments {
    margin-block: var(--margin);
}

.weblogPost__attachmentList {
    margin: 0;
    padding: 0;
    list-style: none;
}

.weblogPost__attachmentLink {
    position: relative;
    display: flex;
    align-items: center;
    padding: .75rem 2.5rem .75rem 0;
    border-bottom: 1px solid var(--baseLight500);
    font-family: var(--proximaSemibold);
    font-size: var(--h4Size);
    color: var(--baseLight900);
    text-decoration: none;
}

.weblogPost__attachmentItem:last-child .weblogPost__attachmentLink {
    border-bottom: none;
}

.weblogPost__attachmentLink::after {
    position: absolute;
    top: 50%;
    right: .5rem;
    margin-top: -15px;
    content: '\e812';
    font-family: 'fa-regular', sans-serif;
    transition: transform .3s ease-out;
}

.weblogPost__attachmentLink:hover {
    color: var(--secondaryColor500);
}

.weblogPost__attachmentLink .icon-lock {
    margin-left: auto;
    color: var(--primaryColor500);
}

.weblogPost__attachmentIcon {
    margin-right: .5rem;
    font-size: 1.9rem;
}

.weblogPost__attachmentLink:hover {
    text-decoration: none;
    background-color: var(--primaryColor200);
}

