.news-main {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 20px;
}

.news-main .news-main__item {
    box-shadow: 0 4px 12px 0 #00000029;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.5s;
}

.news-main .news-main__item:last-child {
    display: none;
}

.news-main .news-main__item:hover {
    transition: all 0.5s;
    transform: scale(1.05);
    box-shadow: 0 4px 12px 0 #0000004f;
}

.news-main .news-main__item:hover .date-day{
    color: #e84a36 !important;
    transition: all 0.5s;
}
.news-main .news-main__item:hover .date-month{
    color: #e84a36 !important;
    transition: all 0.5s;
}


@media (max-width: 768px) {
    .news-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-main .news-main__item:last-child {
        display: block;
    }
}

@media (max-width: 410px) {
    .news-main {
        grid-template-columns: repeat(1, 1fr);
    }
    .news-main .news-main__item:last-child {
        display: none;
    }
}


.news-main .news-main__item img {
    width: 100%;
}




.news-main .news-main__preview {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: unset;
    font-size: 1.2rem;
    line-height: 1.2rem;
    transition: all 0.5s;
    color: #4d3e33a8;
    white-space: break-spaces;
    overflow-wrap: anywhere;
}

.news-main .news-main__item h4 {
    line-height: 2rem;
}


.news-main .news-main__item .date-day {
    font: 36px 'Circe Extra Bold';
    color: #C39367;
    transition: all 0.5s;
}

.news-main .news-main__item .date-month {
    font: 11px 'Circe Extra Bold';
    color: #C39367;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 0 3px;
    letter-spacing: 0.3px;
    transition: all 0.5s;
}

.news__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.news__more {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #e84a36;
}
