.cards-section .cards-wrapper {
    text-align: center;
}

.cards-swiper {
    width: 100%;
    padding: 40px 0;
}

.cards-swiper .swiper-slide {
    height: auto;
}

.cards-swiper .card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards-swiper .card:hover {
    transform: translateY(-20px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cards-swiper .card__title {
    position: relative;
    z-index: 2;
    margin-bottom: auto;
    text-align: left;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.92px;
}

@media (max-width: 575px) {
    .cards-swiper .card {
        min-height: 440px;
    }
}