.what-you-get-with-us-post__container {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
}

.what-you-get-with-us-post__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.what-you-get-with-us-post__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 100px;
    padding: 26px 30px;
    border-radius: 12px;
}

.what-you-get-with-us-post__item--filled {
    background: #EEEEEE;
    border: 1px solid transparent;
}

.what-you-get-with-us-post__item--outline {
    background: transparent;
    border: 1px solid #D2D2D2
}

.what-you-get-with-us-post__content {
    flex: 1 1 auto;
    min-width: 0;
}

.what-you-get-with-us-post__text {
    letter-spacing: -0.03em;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.what-you-get-with-us-post__icon-wrap {
    flex: 0 0 auto;
}

.what-you-get-with-us-post__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-you-get-with-us-post__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}


@media (max-width: 767px) {
    .what-you-get-with-us-post {
        padding: 16px 0;
    }

    .what-you-get-with-us-post__container {
        padding: 0px 20px;
    }

    .what-you-get-with-us-post__item {
        min-height: auto;
        padding: 20px;
        gap: 10px;
        align-items: flex-start;
        flex-direction: row-reverse;
    }

    .what-you-get-with-us-post__text {
        font-size: 16px;
        line-height: 24px;
    }

    .what-you-get-with-us-post__icon img {
        width: 40px;
        height: 40px;
    }
}