
.books-slider {
    position: relative;
    overflow: hidden;
}

.books-slider .prev, .books-slider .next {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 30%;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1), 0 3px 3px 0 rgba(0, 0, 0, .2);
}

.books-slider .next {
    right: -22px;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22feather%20feather-chevron-right%22%3E%3Cpolyline%20points%3D%229%2018%2015%2012%209%206%22%2F%3E%3C%2Fsvg%3E');
}

.books-slider .prev {
    left: -22px;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22feather%20feather-chevron-left%22%3E%3Cpolyline%20points%3D%2215%2018%209%2012%2015%206%22%2F%3E%3C%2Fsvg%3E');
}

.books-slider__wrapper {
    display: flex;
    gap: 20px;
}

.books-slider__item {
    width: 140px;
    flex-shrink: 0;
}

.books-slider__image-wrapper {
    position: relative;
}

.books-slider__image-wrapper .books-slider__read-link {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.3);
}

.books-slider__image-wrapper:hover .books-slider__read-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.books-slider__read-link a {
    display: flex;
    justify-content: center;
    width: 80%;
    height: 38px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #eaeaf9;
    background-color: #3d3dc7;
    box-sizing: border-box;
}

.books-slider__read-link a:hover {text-decoration: none;}

.books-slider__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 4px;
}

.books-slider__book-name {
    display: -webkit-box;
    overflow: hidden;
    color: #000;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}

.books-slider__author-name {
    color: #767479;
    word-break: break-word;
    font-size: 14px;
    line-height: 20px;
}

.books-slider__rating {
    background: url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%2302AA6C%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20class%3D%22feather%20feather-star%22%3E%3Cpolygon%20points%3D%2212%202%2015.09%208.26%2022%209.27%2017%2014.14%2018.18%2021.02%2012%2017.77%205.82%2021.02%207%2014.14%202%209.27%208.91%208.26%2012%202%22%2F%3E%3C%2Fsvg%3E') no-repeat;
    background-size: 12px;
    padding-left: 16px;
    font-size: 14px;
    color: #02AA6C;
    margin-top: 4px;
}

.books-slider__rating span {color: #5a617c;}


@media screen and (max-width: 1610px) {
    .books-slider .next {
        right: -13px;
    }
    .books-slider .prev {
        left: -13px;
    }
}

.prev.swiper-button-disabled,.next.swiper-button-disabled {
    display: none
}


.slider_block .swiper-button-disabled {
    display: none
}