#news {
    display: flex;
    flex-direction: column;
    width: auto;
    background-color: var(--background-tertiary);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
    flex: 1;
}

.news-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding-bottom: 1rem;
}

.news-heading a:hover {
    color: var(--brand-accent);
}

.news-release:hover span {
    color: var(--brand-accent);
}

.news-release {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 1.125rem 0;
    border-bottom: solid 1px var(--text-secondary);
}

.news-release-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    align-self: stretch;
}

.news-release:nth-last-of-type(1) {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    font-size: 0.888rem;
    color: var(--text-secondary);
}

.news-description {
    font-size: 1rem;
    color: var(--text-secondary);
}

#news h1 {
    font-size: 1.33rem;
}

#news h2 {
    font-size: 1.111rem;
}