.news-tile {
    row-gap: 10px;
}
.news-tile__item-wrapper {}
.news-tile__item {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background: var(--color-primary);
    color: var(--color-primary-inverse);
    border-radius: var(--radius-md);
    height: 100%;
}
.news-tile__item:hover {
    color: var(--color-primary-inverse);
}
.news-tile__name {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: var(--color-primary-inverse);
}
.news-tile__name:hover {
    color: var(--color-primary-inverse);
}
.news-tile__img-wrapper {}
.news-tile__img {
    width: 100%;
}
.news-tile__text,
.news-tile__date {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.14;
}
.news-tile__date {}
.news-tile__item_large {
    background: var(--color-white);
    color: var(--color-black);
}
.news-tile__item_large:hover {
    color: var(--color-black);
}
.news-tile__item_large .news-tile__name,
.news-tile__item_large .news-tile__name:hover {
    color: var(--color-black);
}
.news-tile__item_large .news-tile__date {
    margin-top: auto;
}

@media screen and (min-width: 768px) {
    .news-tile {
        row-gap: 30px;
    }
    .news-tile__item {
        padding: 40px 20px;
        gap: 16px;
    }
    .news-tile__item_large {
        display: grid;
        grid-template-areas:
            "newsItemImg newsItemName" 
            "newsItemImg newsItemText"
            "newsItemImg newsItemDate";
        grid-template-columns: auto 1fr;
        grid-gap: 20px;
    }
    .news-tile__img-wrapper {
        grid-area: newsItemImg;
    }
    .news-tile__img {
        max-width: 360px;
    }
    .news-tile__name {
        grid-area: newsItemName;
        font-size: 28px;
    }
    .news-tile__text {
        grid-area: newsItemText;
        font-size: 14px;
    }
    .news-tile__date {
        grid-area: newsItemDate;
        font-size: 14px;
    }
}
@media screen and (min-width: 1200px) {
    .news-tile.row {
        margin-left: -20px;
        margin-right: -20px;
        row-gap: 40px;
    }
    .news-tile__item-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}