.news-item-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.news-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.news-item .title {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: var(--news-font), serif;
    border-bottom: 2px solid var(--text);
    text-align: left;
    padding: 0.25rem;
    display: flex;
    column-gap: 1.5rem;
}

.news-item .title .date {
    color: var(--dark-alpha);
    margin-left: auto;
    text-wrap: nowrap;
}

.news-item .text {
    text-align: justify;
    padding: 0.5rem;

    column-count: 2;
    column-gap: 20px;
}

.news-item .text .location {
    font-weight: bold;
    text-transform: uppercase;
}

/* xs screen */
@media only screen and (max-width: 768px) {
    .news-item .text {
        column-count: unset;
        column-gap: unset;
    }
}