#seo-block .seo__wrapper {
    display: flex;
    gap: 30px;
}

#seo-block .left__wrapper {
    display: flex;
    gap: 30px;
}

#seo-block .seo__holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-primary-second);
    border-radius: 20px;
    max-height: 600px;
    max-width: 490px;
    padding: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem);
        border: 1px solid var(--bg-primary-third);
    width: 100%;
    /* gap: 20px; */
}

#seo-block .seo__holder-inner {
    display: flex;
    flex-direction: column;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    gap: 15px;
}

#seo-block .seo__holder-inner::-webkit-scrollbar {
    width: 2px;
}

#seo-block .seo__holder-inner::-webkit-scrollbar-track {
    background: var(--backgroundPrimary);
    border-radius: 10px;
    /* margin: 20px 0; */
}

#seo-block .seo__holder-inner::-webkit-scrollbar-thumb {
    background-color: var(--colors-main);
    border-radius: 10px;
}

#seo-block .title__holder {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bg-primary-third);
    min-width: 400px;
    gap: 20px;
}

#seo-block p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
}

#seo-block .seo__title {
    margin-bottom: 0;
}

#seo-block .short__desc p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--text-primary-main);
}

#seo-block .seo__img {
    display: flex;
    border-radius: 20px;
    max-width: 490px;
    min-width: 470px;
    max-height: 600px;
    width: 100%;
    overflow: hidden;
}

#seo-block .desc {

}

@media screen and (max-width: 1300px) {
    #seo-block .seo__wrapper {
        flex-direction: column;
    }

    #seo-block .seo__holder {
        max-width: unset;
    }

    #seo-block .left__wrapper {
        justify-content: space-between;
    }

    #seo-block .title__holder {
        width: 50%;
        min-width: unset;
    }

    #seo-block .seo__img {
        min-width: unset;
        width: 50%;
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    #seo-block .left__wrapper {
        flex-direction: column;
    }

    #seo-block :is(.title__holder, .seo__img) {
        width: 100%;
    }
}

/*# sourceMappingURL=block.css.map */