.section-news {
    padding-top: 9em;
}

.section-news__title {
    text-align: center;
    margin-bottom: 2em;
}

.section-news ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-news li {
    width: calc(33.33% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.section-news__wrapper-new {
    box-sizing: border-box;
    height: 100%;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-items: center;
}

.section-news__wrapper-new:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-basket__wrapper-image {
    width: 200px;
    height: 160px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
}

.section-basket__wrapper-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-bottom: 1em;
}

.section-basket__wrapper-description {
    display: flex;
    flex-direction: column;
    padding: 10px;
    text-align: center;
    height: 6em;
}

.section-news__sub-title {
    margin-bottom: 5px;
    text-align: center;
}

.section-news_description {
    margin-top: 0;
    text-align: left;
}

.section-news a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1000px) {
    .section-basket__wrapper-description {
        height: 9em;
    }
}

@media (max-width: 768px) {
    .section-news li {
        width: calc(50% - 20px);
    }

    .section-basket__wrapper-description {
        height: 9em;
    }
}

@media (max-width: 480px) {
    .section-news li {
        width: calc(100% - 20px);
    }
}

.section-news__button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #225fa2;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.section-news__button:hover {
    background-color: #0056b3;
}
