/* Tags shown inside each event-details */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.news-tag {
    padding: .28rem .65rem;
    font-size: .82rem;
    line-height: 1;
    background-color: var(--lit-teal);
    color: var(--infleqtion-blue);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
}

/* Hidden state when filtered out */
.event-item.hidden {
    display: none !important;
}