.swiper{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.card-list{
    margin: 0;
    padding: 0;
}

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

.card-list .card-item .card-link{
    user-select: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 3 / 4;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: 0.2s ease;
    color: #fff;
}

.card-list .card-item .card-link:active{
    cursor: grabbing;
}

.card-list .card-item .card-link:hover{
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.18), 0 0 0 2px #3FA3D5;
}

.card-list .card-link .card-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.card-list .card-link::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(6, 23, 49, 0.05) 0%, rgba(6, 23, 49, 0.7) 65%, rgba(6, 23, 49, 0.9) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.card-list .card-link:hover .card-image{
    filter: brightness(1.08);
    transform: scale(1.03);
}

.card-list .card-link:hover::after{
    background: linear-gradient(180deg, rgba(6, 23, 49, 0.02) 0%, rgba(6, 23, 49, 0.55) 65%, rgba(6, 23, 49, 0.75) 100%);
}

.card-list .card-link .card-title{
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.card-list .card-link .card-date{
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    margin: 5px 0;
}

.card-list .card-link .card-button{
    height: 35px;
    width: 35px;
    color: #3FA3D5;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    transform: rotate(-45deg);
    border: 2px solid #3FA3D5;
    transition: 0.4s ease;
    padding: 0px;
}

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

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

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

.card-wrapper .swiper-slide-button{
    color: #3FA3D5;
    margin-top: -35px;
    background: rgba(255, 255, 255, 0.95);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.card-wrapper .swiper-slide-button::after{
    font-size: 18px;
}

.card-wrapper .swiper-slide-button:hover{
    color: #30277A;
    background: #fff;
    border-color: rgba(48, 39, 122, 0.35);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.append-buttons{
    text-align: center;
    margin-bottom: 20px;
}

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

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