.cpt-text-and-image {
    padding: 40px var(--global-sides-margin);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(47ch, 100%), 1fr));
    align-items: center;
    row-gap: 36px;
    column-gap: 8vw;
    
    min-height: 55vh;
}
.cpt-text-and-image__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
}
.cpt-text-and-image__img.img-left {
        order: -1;
    }
.cpt-text-and-image__textcontent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    line-height: 22px;
}
.cpt-text-and-image__content {
    margin-bottom: 35px;
}
.cpt-text-and-image__img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 0 50px 0 rgba(67, 67, 93, 0.1);
    background-color: white;
    
    
    height: 100%;
    object-fit: cover;
}
.cpt-text-and-image__img.no-bg-no-shadow {
    box-shadow: none;
    background: none;
}

.cpt-text-and-image__content ul,
.cpt-text-and-image__content ol {
    padding-left: 2.5em;
}
.cpt-text-and-image__content ul {
    list-style-type: disc;
}
.cpt-text-and-image__content ul ul {
    list-style-type: circle;
}
.cpt-text-and-image__content ol {
    list-style-type: decimal;
}


@media screen and (max-width: 990px) {
    .cpt-text-and-image__img.img-left {
        order: 1;
    }
}
@media screen and (min-width: 768px) {
    .cpt-text-and-image__title {
        font-size: 48px;
        line-height: 54px;
    }
    .cpt-text-and-image {
        padding: 80px var(--global-sides-margin); /* 80px 100px */
    }
}