.sectionCustomerStoryHighlight {
    color: var(--text-color);
    padding: 3.6rem;
    max-width: 160rem;
    margin: 0 auto;
    position: relative;
}

.sectionCustomerStoryHighlight__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.sectionCustomerStoryHighlight__background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sectionCustomerStoryHighlight__content {
    max-width: var(--width-large);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.sectionCustomerStoryHighlight__content-box {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5.6rem 4.8rem;
    max-width: 56.8rem;
    border-radius: 1.2rem;
}

.sectionCustomerStoryHighlight__heading {
    margin: 0 0 2.8rem;
}

.sectionCustomerStoryHighlight__description {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 3.6rem;
}

@media screen and (min-width: 768px) {
    .sectionCustomerStoryHighlight__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        margin-left: 0;
        padding: 0;
        overflow: visible;
        gap: 2rem;
    }

    .sectionCustomerStoryHighlight__content-box {
        padding: 9.8rem 8rem;
    }
}

@media screen and (min-width: 1200px) {
    .sectionCustomerStoryHighlight {
        padding: 8rem 2.4rem;
    }
}