.news-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.news-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: black !important;
    text-decoration: unset !important;
}

.news__tag {
    padding-right: 5px;
    border-right: 1px solid black;
    margin-right: 5px;
}

.news__title {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    margin: 0;
}

.news__type-date {
    font-size: 14px;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    margin: 0;
}


.news-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 100%;
}

.news__img-container {
    aspect-ratio: 313/226;
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.news__img {
    border-radius: 8px;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    object-fit: cover;
    object-position: center;
    height: 100%;
    position: relative;
}

.news__img {
    z-index: -1;
}

.news__img-container:hover .news__img {
    transition: .4s;
    transform: scale(1.05);
}

.news-article:hover .news__title {
    text-decoration: underline;
}


.news__tag {
    padding-right: 5px;
    border-right: 1px solid black;
    margin-right: 5px;
}

.news__title {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    margin: 0;
    font-size: 24px;
    line-height: 130%;
    font-family: Roboto;
    font-weight: bold;
}

.news__type-date {
    font-size: 13px;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    margin-bottom: 0;
    margin-top: 13px;
}

@media (min-width: 768px) {
    .news-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 58px;
    }

}

@media (min-width: 1024px) {
    .news-section {
        grid-template-columns: repeat(3, 1fr);
    }
}
