#publisher-tags  span {
    font-size: 12px;
    font-weight: bold;
    color: var(--color-primary);
    background-color: var(--lighter-gray);
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.5px;
}

#tags-wrapper {
    display: flex;
    padding: 0.666rem;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

#tags-wrapper span {
    margin: 0.25rem;
}

#publisher-name {
    margin-bottom: 0;
}

hr {
    margin: 2.5rem 0;
}

.publisher-logo {
    max-width: 256px;
    max-height: 128px;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--translucent-gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Make sure the news widgets layout nicely */
.news-widget-grid {
    display: grid;
    grid-auto-rows: minmax(0, 580px);
    grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.article-widget {
    overflow: hidden;
}

.article-widget > img {
    max-height: 10vh;
}

.article-headline {
    font-size: 22px;
}

.tags-list {
    display: flex;
    justify-content: center;
}

.news-tag {
    margin-top: 0.45rem;
}