.news {
    margin-bottom: 20px;
}
.news__header {
    display: flex;
    justify-content: center;
    margin-bottom: 51px;
}
.news__title {
    text-transform: uppercase;
    background: #11ad36;
    color: #FFFFFF;
    border-radius: 0.3em;
    font-weight: 700;
    font-size: 16px;
    padding: 1em 2em;
    width: max-content;
}
.news__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1024px) {
    .news__container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .news__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.news__item {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.news__image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
}
.news__body {
    display: flex;
    flex-direction: column;
    gap: 8.5px;
}
.news__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F131F;
    text-decoration: none;
}
.news__name:hover {
    color: #11ad36;
    text-decoration: underline;
}
.news__information {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.news__button {
    color: #11ad36;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.news__time {
    color: #727F9F;
    font-size: 0.9rem;
    margin: 0;
}
.news__text {
    color: #35415B;
    font-size: 17px;
    margin: 0;
}
.section__news {
    padding: 0 !important;
}