.whu-news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    article.whu-news-item {
        background-color: #f4f4f4;
        padding: 18px;
        width: 100%;
        @media (min-width: 768px) and (max-width: 1023px) {
            width: calc(50% - 16px);
        }
        @media (min-width: 1024px) {
            width: calc(33.33% - 22px);
        }
        a {
            display: flex;
            flex-direction: row;
            font-size: 14px;
            line-height: 20px;
            gap: 12px;

            figure {
                width: 20px;
                min-width: 20px;
                max-width: 20px;
                height: 100%;
                display: inline-flex;
                align-self: flex-start;

                img {
                    width: 20px;
                    min-width: 20px;
                    max-width: 20px;
                    max-height: 20px;
                    width: 100%;
                    object-fit: cover;
                }
            }
            .source {
                margin-bottom: 0;
            }

            .subline {
                margin-bottom: 0;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 19px;
                font-weight: 400;
                line-height: 1.33;
            }
        }
    }

    .meta {
        display: grid;
        grid-template-areas:
            'subline subline'
            'figure source';
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 8px;
    }

    .meta figure {
        grid-area: figure;
        margin: 0;
    }

    .meta .source {
        grid-area: source;
        align-self: center;
        color: rgb(127, 127, 127);
    }

    .meta .subline {
        grid-area: subline;
    }
}

.scraper-source {
    text-align: right;
    font-size: 12px;
    padding: 20px 0 0;
    a {
        font-size: 12px;
    }
}

.whu-press-releases-wrapper {
    .whu-press-release-item {
        border-width: 0px;
        background-color: #f4f4f4;
        padding: 43px 20px 54px 55px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .whu-press-release-category {
        color: #00a5dc;
        text-transform: uppercase;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600;
        display: block;
    }

    .whu-press-release-item h4 {
        margin-bottom: 0;
    }

    .whu-press-release-item .read-more {
        font-weight: normal;
        text-transform: none;
        width: min-content;
    }
}
