.section-content-block .image{
    aspect-ratio: 6 / 5;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}
.section-content-block .image picture{
    width: 100%;
    height: 100%;
}
.section-content-block .content p{
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-white);
    margin-bottom: 20px;
}
.section-content-block .content > *:last-child{
    margin-bottom: 0;
}
.section-content-block .content ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 24px;
}
.section-content-block .content ul li{
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    vertical-align: middle;
    color: var(--color-grey-12);
    padding: 10px 12px;
    border-radius: 12px;
    border: var(--border-style-1)
}
@media (min-width: 1200px) {
    .section-content-block .section-header{
        margin-bottom: 24px;
    }
    .section-content-block .section-header .h3{
        font-size: 36px;
        line-height: 44px;
    }
    .section-content-block .left{
        width: 33%;
        flex-shrink: 0;
    }
    .section-content-block .image{
        width: 300px;
        flex-shrink: 0;
    }
    .section-content-block .content p{
        margin-bottom: 18px;
    }
}
@media (min-width: 1400px) {
    .section-content-block .image{
        width: 440px;
        flex-shrink: 0;
    }
    .section-content-block .content p{
        font-size: 18px;
        font-weight: 400;
    }
    .section-content-block .content ul li{
        padding: 10px 16px;
        font-size: 18px;
        line-height: 20px;
    }

}