.en-why-choose {
    width: 80%;
    max-width: 1280px;
    margin: 80px auto 0;
}

.en-why-choose__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.en-why-choose__viewport {
    overflow: hidden;
    margin-top: 32px;
}

.en-why-choose__track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.en-why-choose__card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #ebeaf4;
    box-shadow: 0 12px 32px rgba(33, 36, 44, 0.05);
    overflow: hidden;
}

.en-why-choose__media {
    aspect-ratio: 8 / 5;
    background: #f2efff;
    overflow: hidden;
}

.en-why-choose__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.en-why-choose__body {
    padding:24px;
}


.en-why-choose__body p{
    margin-top: 12px;
}
.en-why-choose__controls {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.en-why-choose__arrow {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #f2efff;
    cursor: pointer;
}

.en-why-choose__arrow img {
    width: 16px;
    height: 16px;
    display: block;
}

.en-why-choose__arrow img.is-reverse {
    transform: rotate(180deg);
}

.en-why-choose__arrow.is-disabled {
    background: #f8f7fd;
    cursor: not-allowed;
}

@media (max-width: 1279px) {
    .en-why-choose {
        width: calc(100% - 64px);
    }
}

@media (max-width: 1023px) {
    .en-why-choose {
        width: calc(100% - 48px);
        margin-top: 64px;
    }

    .en-why-choose__track {
        gap: 20px;
    }

    .en-why-choose__card {
        flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 799px) {
    .en-why-choose {
        width: calc(100% - 40px);
        margin-top: 48px;
    }

    .en-why-choose__viewport {
        margin-top: 24px;
    }

    .en-why-choose__track {
        gap: 16px;
    }

    .en-why-choose__card {
        flex-basis: 100%;
    }

    .en-why-choose__body {
        padding: 16px 16px 20px;
    }

    .en-why-choose__controls {
        margin-top: 20px;
    }
}
