.textblock.textblock_below .textblock__inner{
    border-radius: 40px;
    background: var(--color-bg-neutral-md, #E3E5E7);
}

.textblock.textblock_below .textblock__img {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    height: 325px;
}

.textblock.textblock_above .textblock__inner{
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    height: 710px;
}

.textblock.textblock_above .textblock__img{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 1;
}

.textblock.textblock_above .textblock__content{
    position: relative;
    z-index: 2;
    border-radius: 40px;
    background-color: var(--color-bg-neutral-md, #E3E5E7);
}

.textblock__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.textblock__content {
    display: grid;
    gap: 32px;
    padding: 32px;
}

.textblock__title {
    color: var(--color-content-neutral-primary, #33373D);
    font-family: var(--second-family);
    font-size: calc(20px + 16 * ((100vw - 360px) / (1920 - 360)));
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1px;
}

.textblock__content-add {
    display: grid;
    grid-template-columns: auto max-content;
    justify-content: space-between;
    gap: 16px;
}

.textblock__subtitle {
    color: var(--color-content-neutral-secondary, #585F67);
    font-family: var(--second-family);
    font-size: calc(18px + 6 * ((100vw - 360px) / (1920 - 360)));
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
}

.textblock__description {
    color: var(--color-content-neutral-secondary, #585F67);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.1px;
    max-width: 432px;
}



@media(max-width: 1100px){
    .textblock__content-add{
        grid-template-columns: 1fr;
    }

    .textblock__content{
        gap: 16px;
    }

    .textblock__description{
        max-width: 100%;
    }
}

@media(max-width: 900px){
    .textblock.textblock_below .textblock__img{
        height: 280px;
    }

    .textblock.textblock_above .textblock__inner{
        height: 650px;
    }

    .textblock.textblock_above .textblock__img {
        height: 65%;
    }

    .textblock__content{
        padding: 24px;
    }

    .textblock__title{
        font-size: calc(16px + 14 * ((100vw - 360px) / (1920 - 360)));

    }

    .textblock__subtitle{
        font-size: calc(16px + 14 * ((100vw - 360px) / (1920 - 360)));
    }
}

@media(max-width: 680px){
    .textblock.textblock_below .textblock__img {
        height: 220px;
    }

}

@media(max-width: 500px){
    .textblock.textblock_above .textblock__inner {
        height: 680px;
    }
    
    .textblock.textblock_above .textblock__img {
        height: 50%;
    }

    .textblock__content {
        padding: 24px 16px;
        gap: 16px;
    }
}




