.post_custom_sub_part_wrapper {
    padding: 20px 10px;
    background-color: #e8e9ea;
    margin-bottom: 20px;
    font-size: 70%;
}

.post_custom_sub_part_point {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.post_custom_sub_part_point:not(:last-of-type) {
    margin-bottom: 15px;
}

.post_custom_sub_part_point_number {
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #042b58;
    color: #fff;
    flex-shrink: 0;
}

.post_custom_sub_part_point_content {
    width: 90%;
}

.post_custom_sub_part_point_content_img {
    width: 40%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    max-width: 70px;
}

.post_custom_sub_part_point_content_paragraph {
    margin: 0 !important;
}

.post_custom_sub_part_point_content_paragraph strong {
    font-weight: 900;
    font-size: 17px;
}

@media screen and (min-width:1024px) {
    .post_custom_sub_part_wrapper {
        padding: 40px 30px;
    }

    .post_custom_sub_part_points_wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .post_custom_sub_part_point {
        width: calc(50% - 20px);
    }
}