.seotext-block {
    margin-top: clamp(0.9375rem, 0.125rem + 4.0625vw, 5rem);
    /* 80 - 15 */
    background: var(--bg-light-2, #E4E4E4);
    position: relative;
    overflow: hidden;
}

.seotext-block .seoBg {
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.seotext-block .seoBg img {
    all: initial;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seotext-block h3 {
    margin-bottom: clamp(0.9375rem, 0.625rem + 1.5625vw, 2.5rem);
    /* 40 - 15 */
}



.seotext-block img {
    aspect-ratio: 1/1;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    max-width: 421px;
    max-height: 488px;
    flex-shrink: 0;
}

.seotext-block .seotext-inner {
    display: flex;
    flex-direction: row;
    gap: clamp(0.9375rem, 0.375rem + 2.8125vw, 3.75rem);
    /* 60 - 15 */
    padding-top: clamp(0.9375rem, 0.125rem + 4.0625vw, 5rem);
    padding-bottom: clamp(0.9375rem, 0.125rem + 4.0625vw, 5rem);
    /* 80 - 15, 80 - 15 */
    position: relative;
    z-index: 2;
}

.seotext-block .seotext-inner .text {
    max-height: 416px;
    overflow-y: auto;
    padding-right: clamp(0.9375rem, 0.375rem + 2.8125vw, 3.75rem);
    /* 60 - 15 */
}

.seotext-block .photo__holder {
    position: relative;
}

.seotext-block .photo__holder .pseudo {
    position: absolute;
    left: -120px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
}

.seotext-block .photo__holder img {
    z-index: 2;
    position: relative;
}

.seotext-block .photo__holder .pseudo img {
    all: initial;
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    z-index: 1;
}

.seotext-block p,
.seotext-block li {
    margin-bottom: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    /* 15 - 10 */
    color: var(--stroke, #424242);

    /* p2 */
    font-family: 'Gilroy';
    font-size: var(--p2);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

@media(max-width:850px) {
    .seotext-block .seotext-inner {
        flex-direction: column;
    }

    .seotext-block img {
        max-width: unset;
        width: 100%;
        aspect-ratio: 16/9;
        max-height: 350px;
    }

    .seotext-block .seoBg img {
        object-fit: contain;
    }
}

@media(max-width:500px) {
    .seotext-block img {
        aspect-ratio: 1/1;
        max-height: 300px;
    }


}