﻿
.card-wrapper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

    .card-list .card-item .card-link {
        user-select: none;
        display: block;
        background: #fff;
        padding: 18px;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transition: 0.2s ease;
    }

        .card-list .card-item .card-link:active {
            cursor: grabbing;
        }

.card-img-top {
    height: 200px;
    width: auto;
}



@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

        .card-wrapper .swiper-slide-button {
            display: none;
        }
}

.card-content::-webkit-scrollbar {
    width: 8px;
}

.card-content::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

    .card-content::-webkit-scrollbar-thumb:hover {
        background: #888;
    }
