.news {
    background-color: var(--gray-color);
}
.news p:not(:last-child) {
    margin-bottom: 15px;
}
.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.news-wrapper .item {
    background-color: var(--white-color);
    border-left: 5px solid var(--p-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.news-wrapper .item-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    width: 200px;
    height: 200px;
    position: relative;
}
.news-wrapper .item-text {
    width: calc(100% - 200px - 20px);
}
.news-wrapper .item-text-title {
    margin-bottom: 20px;
}
.news-wrapper .item-text-title h5 {
    color: var(--p-color);
    font-size: var(--fze-big);
}
.news-wrapper .item-text-title p {
    font-weight: 600;
    font-size: var(--fze-short);
    margin-top: 5px;
    text-transform: uppercase;
}
.news-wrapper button[data-modal-slider-btn] {
    background-color: var(--gray-color);
    border: none;
    border-radius: var(--border-radius);
    height: max-content;
    width: max-content;
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.8);
    transition: all var(--g-time) ease;

    &:hover {
        box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
        color: var(--p-color);
    }
}

@media (max-width: 1100px) {
    .news-wrapper .item {
        justify-content: center;
    }
    .news-wrapper .item-image {
        background-size: auto 100%;
        height: 200px;
        width: 200px;
    }
    .news-wrapper .item-text {
        width: 100%;
    }
    .news-wrapper .item-text-title {
        text-align: center;
    }
}
@media (max-width: 700px) {
    .news-wrapper .item-image {
        width: 100%;
    }
    .news-wrapper button[data-modal-slider-btn] {
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}