.standard-size {
    width: 100%;
    padding: calc(var(--space) * 60) 0;
    background-color: #eaece8;
    box-sizing: border-box;
    text-align: center;
}

.standard-size__wrapper {
    max-width: var(--size, 82.5rem);
    margin: 0 auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.single-content h2.standard-size__title,
.editor-styles-wrapper .block-editor-block-list__layout h2.standard-size__title,
.standard-size__title {
    font-size: var(--fs-48);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cl-black);
    margin: 0 0 3rem 0;
    text-align: center;
}

.standard-size__image-wrap {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.standard-size__image {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

@media screen and (max-width: 61.9375rem) {
    .standard-size {
        padding: calc(var(--space) * 30) 0;
    }

    .single-content h2.standard-size__title,
    .editor-styles-wrapper .block-editor-block-list__layout h2.standard-size__title,
    .standard-size__title {
        font-size: var(--fs-32);
        margin-bottom: calc(var(--space) * 16);
        padding-right: 1.25rem;
    }

    .standard-size__wrapper {
        padding-right: 0;
    }

    .standard-size__image-wrap {
        padding-right: 0;
        padding-bottom: 10px;
        overflow: hidden;
        overflow-x: auto;
    }

    .standard-size__image-wrap img {
        width: auto;
        height: auto;
        max-width: 785px;
        margin-right: 1.25rem;
    }


}