.features-list .feature-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.features-list .feature-swiper {
    overflow: hidden;
}

.features-list .feature-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.features-list .feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    font-size: 14px;
    max-width: 143px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.features-list .feature-link.active {
    font-weight: 700;
}

.features-list .feature-link.active .feature-card {
    border: 1px solid currentColor;
    border-radius: 12px;
}
.features-list .feature-link.active .feature-card.feature-card-change-color {
    background-color: color-mix(in srgb, currentColor 10%, white) !important;
}

.features-list .feature-link.active .feature-card span {
    font-weight: 800;
    font-size: 14px;
    color: inherit;
}

.features-list .feature-link.active .icon-bg {
    background-color: currentColor;
}

.features-list .feature-thumbnail {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.features-list .load-more-btn {
    height: 49px;
}


@media (min-width: 992px) {
    .features-list .feature-swiper .swiper-slide {
        flex-shrink: 0;
    }

    .features-list .feature-swiper .swiper-pagination {
        display: none;
    }
}