:root {
    --upload-photo-block-padding: 80px 0;
    --upload-photo-block-gap: 24px;
    --upload-photo-head-title-font-size: 42px;
    --upload-photo-head-title-line-height: 50px;
}

.upload-photo-block {
    padding: var(--upload-photo-block-padding, 80px 0);
    background: var(--Gradient-for-BG, linear-gradient(108deg, rgba(245, 245, 245, 0.60) 0%, rgba(217, 217, 217, 0.24) 100%));
}
.upload-photo-block .upb-inner {
    gap: var(--upload-photo-block-gap, 24px);
}
.upload-photo-block .upb-block-title {
    font-size: var(--upload-photo-head-title-font-size, 42px);
    line-height: var(--upload-photo-head-title-line-height, 50px);
}
.upload-photo-block .upload-images-popup-btn {
    margin-top: 0;
    margin-bottom: 0;
    font-size: var(--custom-canvas-block-upload-btn-font-size, 20px);
    line-height: var(--custom-canvas-block-upload-btn-line-height, 28px);
}

@media (max-width: 1920px) {
    :root {
        --upload-photo-head-title-font-size: 36px;
        --upload-photo-head-title-line-height: 44px;
    }

    @media (max-width: 768px) {
        :root {
            --upload-photo-block-padding: 60px 0;
            --upload-photo-head-title-font-size: 30px;
            --upload-photo-head-title-line-height: 38px;
        }

        @media (max-width: 600px) {
            :root {
                --upload-photo-block-padding: 40px 0;
                --upload-photo-head-title-font-size: 24px;
                --upload-photo-head-title-line-height: 32px;
            }
        }
    }
}