@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Playball&display=swap');

.card-wrapper{
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    width: 300px;
    display: block;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    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-list .card-item .card-link:hover {
    border-color: #111827;
}

.card-list .card-link .card-image {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #111827;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #111827;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #111827;
    margin: -35px;
}

@media screen and (max-width: 768px) {
    .card-wrapper {
        margin: 0 10px 0 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}