.blog-featured .page-header {
    margin-bottom: 2rem;
}

.blog-items {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.blog-item:nth-child(1) {
    --blog-item-width: 976px;
    --blog-item-height: 702px;
    --blog-photo: 532px;
    --blog-title: 170px;
    --blog-headline: 2rem;
    --blog-sub: 1rem;
    --blog-category-margin: 0;
}

.blog-item:nth-child(2),
.blog-item:nth-child(3) {
    --blog-item-width: 472px;
    --blog-item-height: 468px;
    --blog-photo: 266px;
    --blog-title: 202px;
    --blog-headline: 1.35rem;
    --blog-sub: 1rem;
    --blog-category-margin: 0;
}

.blog-item {
    --blog-item-width: 304px;
    --blog-item-height: 334px;
    --blog-photo: 172px;
    --blog-title: 172px;
    --blog-headline: 1rem;
    --blog-sub: 0.9rem;
    --blog-category-margin: 0;
}

a.intro {
    background-color: var(--white);
    border-radius: 1rem;
    color: var(--black);
    height: var(--blog-item-height);
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    width: var(--blog-item-width);
}

a.intro div.photo {
    height: var(--blog-photo);
    overflow: hidden;
}

a.intro div.photo > div.tile {
    background-position: center;
    background-size: cover;
    height: 100%;
    overflow: hidden;
    transition: transform .5s ease;
}

a.intro:hover div.photo > div.tile {
    transform: scale(1.03);
}

a.intro div.title {
    display: flex;
    flex-direction: column;
    height: var(--blog-title);
    justify-content: space-between;
    padding: 1.5rem 2rem 2rem;
}

a.intro div.title div.name {
    font-family: var(--font-din-s-bld), sans-serif;
    font-size: var(--blog-headline);
    line-height: 1.2em;
}

a.intro div.title div.category,
a.intro div.title div.date {
    font-size: var(--blog-sub);
    color: var(--gray-600);
}

a.intro div.title div.category {
    margin-bottom: var(--blog-category-margin);
}

article.news {
    padding: var(--section-margin);
    background-color: var(--white);
}

article.news .h6,
article.news .h5,
article.news .h4,
article.news .h3,
article.news .h2,
article.news h6,
article.news h5,
article.news h4,
article.news h3,
article.news h2 {
    line-height: 1.1em;
}

article.news .h1,
article.news h1 {
    line-height: 1em;
}

article.news .header-cover {
    height: 100vh;
}

article.news p.indent::first-letter {
    font-size: 64px;
    line-height: 1;
    letter-spacing: -.015em;
    font-family: var(--font-din-s-med), sans-serif;
    float: left;
    margin-top: 4px;
    margin-right: 8px;
    line-height: .89286;
}

@media only screen and (max-width: 1080px) {
    .blog-item:nth-child(1),
    .blog-item:nth-child(2),
    .blog-item:nth-child(3),
    .blog-item {
        --blog-item-width: 40vw;
        --blog-item-height: 468px;
        --blog-photo: 266px;
        --blog-title: 202px;
        --blog-headline: 1.75rem;
        --blog-sub: 1rem;
        --blog-category-margin: 0;
    }

}

@media only screen and (max-width: 888px) {
    .article-wrapper {
        width: var(--page-wrapper);
    }

    .blog-featured .page-header {
        margin-bottom: 1rem;
    }

    .blog-item:nth-child(1),
    .blog-item:nth-child(2),
    .blog-item:nth-child(3),
    .blog-item {
        --blog-item-height: 468px;
        --blog-photo: 266px;
        --blog-title: 202px;
        --blog-headline: 1.35rem;
        --blog-sub: 1rem;
        --blog-category-margin: 0;
    }

    a.intro div.title {
        padding: 1rem 1.25rem 2rem;
    }
}

@media only screen and (max-width: 624px) {
    .blog-item:nth-child(1),
    .blog-item:nth-child(2),
    .blog-item:nth-child(3),
    .blog-item {
        --blog-item-width: var(--page-wrapper);
        --blog-item-height: 404px;
        --blog-photo: 242px;
        --blog-title: 164px;
        --blog-headline: 1.25rem;
        --blog-sub: 0.9rem;
        --blog-category-margin: 0;
    }
}