.archive-items-news .news-tile:not(:nth-child(3n)) {
    border-right: 1px solid var(--border-color);
}

.news-tile {
    border-bottom: 1px solid var(--border-color);
}

.news-tile-image-container {
    display: flex;
    line-height: 0;
}

.news-tile-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-tile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    min-height: 16rem;
    padding: var(--container-space);
    border-top: 1px solid var(--border-color);
}

.news-tile-content-up {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-tile-date {
    font-size: 0.875rem;
    color: #1c1c1c80;
}

.news-tile-title {
    color: var(--main-text-color);
    font-family: var(--font-family-headline);
    font-size: 1.75rem;
}


@media (max-width: 1200px) {

}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .news-tile-content {
        min-height: 12rem;
    }
}