.news-component-container .footer-social {
    margin-bottom: 0;
}

.news-component-container hr {
    margin-left: 0;
    margin-block: 2.5rem;
}

.news-component-container h2 {
    margin-block: 0;
}

.news-component-container .news-component-header {
    display: grid;
    grid-template-columns: 1fr 25rem;
    justify-content: space-between;
    margin-block: 2.5rem 1rem;
    min-height: 7.6rem;
    gap: 1.5rem;
}

.news-component-container .news-component-articles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3.5rem;
    row-gap: 3.5rem;
}

.news-component-container .news-component-articles .news-component-article {
    text-decoration: none;
    color: var(--color-primary-black);
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    display: grid;
    grid-template-rows: 23.2rem auto;
    height: 100%;
    position: relative;
}

.news-component-container .news-component-articles .news-component-article:hover .details > h3,
.news-component-container .news-component-articles .article-card:hover .content h3,
.news-component-container .news-component-articles .article-card:focus-visible .content h3 {
    text-decoration: underline;
}

.news-component-container .footer-social,
.news-component-container .footer-social > ul {
    margin-block: 0;
}
.news-component-container.featured .news-component-articles .article-card:first-child {
    grid-column: 1 / span 3;
    display: grid;
    grid-template-columns: 53.5rem 1fr;
    grid-template-rows: unset !important;
    height: fit-content;
    max-height: 31.2rem;
    overflow-y: hidden;
}

.news-component-container.featured .news-component-articles .article-card:first-child :is(.at-a-glance) {
    display: -webkit-box;
}

.news-component-container.featured .news-component-articles .article-card:first-child picture,
.news-component-container.featured .news-component-articles .article-card:first-child img {
    width: 100%;
    height: 100%;
}

.news-component-container.featured .news-component-articles .article-card:not(:first-child) picture,
.news-component-container:not(.featured) .news-component-articles .article-card picture {
    max-height: 20.2rem;
    overflow: hidden;
}

.news-component-container.featured .news-component-articles .article-card:first-child .header {
    font-size: 2.3rem;
    -webkit-line-clamp: 2;
}

.news-component-container.featured .news-component-articles .article-card:first-child .excerpt {
    display: -webkit-box;
}

.news-component-container.featured .news-component-articles .article-card:first-child .at-a-glance {
    -webkit-line-clamp: 3;
}

.news-component-container.featured .news-component-article:first-child .details .date {
    grid-row: 2;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child p.hidden {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child picture {
    width: 100%;
    height: 100%;
}

.news-component-container .news-component-articles .news-component-article picture.no-fly-image {
    height: 100%;
    width: 100%;
}

.news-component-container .news-component-articles .news-component-article picture.no-fly-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child img {
    width: 100%;
}

.news-component-container.featured .news-component-article:first-child .news-component-article-content .details h3 {
    font-size: 2.5rem;
}

.news-component-container .news-component-article-content {
    grid-template-rows: 4rem 2fr;
    padding: 2rem 3rem 5rem;
}

.news-component-container .news-component-article-content .topic {
    text-transform: uppercase;
    margin: auto 0 0.5rem 0;
    align-self: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
    font-family: var(--font-family-main);
}

.news-component-container .news-component-article-content .details {
    width: 100%;
    display: grid;
    grid-template-rows: auto 5rem;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child .news-component-article-content > .details {
    grid-template-rows: auto auto auto;
    align-items: center;
}

.news-component-container .news-component-article-content .details h3 {
    font-size: 1.9rem;
    color: var(--color-uw-anchor);
    font-weight: 600;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    font-family: var(--font-family-main);
    margin-top: 0;
}

.news-component-container .news-component-article-content .details h5 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    padding-top: 0;
    font-family: var(--font-family-main);
    color: #646569;
    font-weight: 400;
}

.news-component-container .news-component-cta {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child .news-component-article-content {
    padding: 4rem 5rem 1rem;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child h3 {
    -webkit-line-clamp: 2;
}

.news-component-container.featured .news-component-articles .news-component-article:first-child .news-component-article-content .details h5 {
    position: relative;
}

.news-component-container .news-component-articles a.article-card {
    box-shadow: 0 0.3rem 1.5rem rgb(0 0 0 / 10%);
}

@media screen and (max-width: 1180px) {
    .news-component-container.featured .news-component-articles .article-card:first-child {
        max-height: unset !important;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 20rem auto !important;
    }

    .news-component-container.featured .news-component-articles .article-card:first-child .header {
        font-size: 1.9rem;
        -webkit-line-clamp: 3;
    }

    .news-component-container .news-component-articles {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .news-component-articles .article-card:not(:first-child) {
        width: 34.1rem;
    }

    .news-component-container.featured .news-component-articles .article-card:first-child img {
        min-height: unset;
        height: auto;
        max-height: 20rem;
    }

    .news-component-container .article-card {
        width: 34.1rem;
        max-height: unset;
    }

    .news-component-container.featured .news-component-articles .article-card:first-child .excerpt {
        display: none;
    }

    .news-component-container .news-component-cta {
        margin-top: 4rem;
    }
}


@media screen and (max-width: 980px) {
    .news-component-container .news-component-header{
        display: flex;
        flex-flow: row wrap;
    }
}
