.forWhom__container {
    figure {
        margin-bottom: 0;
    }
}

.forWhom__li {
    margin-bottom: clamp(24px, 2.08vw, 40px);

    figure {
        padding-right: 24px;
        width: clamp(56px, 4.16vw, 80px);
        height: clamp(56px, 4.16vw, 80px);

        img {
            width: 100%;
            height: 100%;
        }
    }


    p {
        margin-top: 8px !important;
    }
}

@media only screen and (max-width: 1100px) {

    .forWhom__container {
        flex-direction: column;

        & > div:first-child {
            figure img {
                width: 100%;
                aspect-ratio: 6/5;
                object-fit: cover;
            }
        }
    
        & > div:last-child {
            padding-top: 96px;
            padding-bottom: 96px;
        }
    }

    .forWhom__li {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 576px) {
    .forWhom__container {
        flex-direction: column;

        & > div:first-child {
            figure img {
                width: 100%;
                aspect-ratio: 6/5;
                object-fit: cover;
            }
        }
    
        & > div:last-child {
            padding-top: 64px;
            padding-bottom: 64px;

            & > div {
                padding-left: 32px !important;
                padding-right: 32px !important;
            }

        }
    }

    .forWhom__li {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 32px;
    }
}