#primary section.delivery-approach {
    padding-top: 60px;
    padding-bottom: 60px;
}

.delivery-approach__wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.delivery-approach__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-basis: 537px;
}

.delivery-approach__section-title {
    font-size: 40px;
    color: var(--black-color, #0d1118);
}

.delivery-approach__content {
    flex-basis: calc(100% - 537px - 40px);
    max-width: 783px;
}

.delivery-approach__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-approach__item {
    --hover-progress: 0;
    position: relative;
    display: flex;
    gap: 24px;
    border-radius: 16px;
    padding: 23px;
    border: 1px solid transparent;
    box-sizing: border-box;
    background: var(--white-color, #fefefe);
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}

.delivery-approach__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 16px;
    background: radial-gradient(
        69.27% 69.29% at 46.34% 30.74%,
        #fff 0%,
        var(--BlueGrey-25, #f4f6f9) 100%
    );
    opacity: var(--hover-progress, 0);
    pointer-events: none;
}

.delivery-approach__item--scroll-active {
    box-shadow: 0 8px 32px 0 rgba(22, 41, 214, 0.1);
    border-color: var(--BlueGrey-50, #eef3ff);
}

.delivery-approach__item-number,
.delivery-approach__item-content {
    position: relative;
    z-index: 1;
}

.delivery-approach__item-number {
    flex-basis: 112px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.delivery-approach__item-number-value {
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #4951e2;
    transition:
        color 0.3s ease,
        -webkit-text-stroke 0.3s ease;
}

.delivery-approach__item--scroll-active .delivery-approach__item-number-value {
    color: #4951e2;
    -webkit-text-stroke-color: #4951e2;
}

.delivery-approach__item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.delivery-approach__item-title {
    font-size: 24px;
    color: var(--black-color, #0d1118);
    font-weight: 700;
}

.delivery-approach__item-description {
    color: var(--black-color, #0d1118);
}

@media screen and (max-width: 1200px) {
    .delivery-approach__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .delivery-approach__head,
    .delivery-approach__content {
        flex-basis: 100%;
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    #primary section.delivery-approach {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .delivery-approach__item {
        flex-direction: column;
    }

    .delivery-approach__item-content,
    .delivery-approach__item-number {
        flex-basis: 100%;
    }

    .delivery-approach__head {
        gap: 16px;
    }

    .delivery-approach__section-title {
        font-size: 32px;
    }

    .delivery-approach__item {
        padding: 31px 15px;
    }

    .delivery-approach__item-title {
        font-size: 20px;
    }
}
