/* Storyfellow — standalone editing quote. One column, existing screen shell. */

#screen-standalone-editing {
    padding: var(--st-page-pad-y) var(--st-page-pad-x) 0;
    align-items: stretch;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
}

#screen-standalone-editing > .brand-bar {
    flex: 0 0 auto;
    width: 100%;
}

#screen-standalone-editing > .standalone-editing-layout {
    flex: 1 1 auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 0 64px;
    text-align: left;
    box-sizing: border-box;
}

.standalone-editing-title {
    margin: 0 0 8px;
    font-family: var(--st-serif, Georgia, serif);
    font-size: 1.75rem;
    font-weight: 500;
}

.standalone-editing-lead,
.standalone-editing-words,
.standalone-editing-note {
    margin: 0 0 20px;
    line-height: 1.5;
}

.standalone-editing-note {
    white-space: pre-line;
}

.standalone-editing-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 20px;
}

.standalone-editing-service {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.standalone-editing-service.is-selected {
    border-color: currentColor;
}

.standalone-editing-service-name,
.standalone-editing-service-summary,
.standalone-editing-service-price {
    display: block;
}

.standalone-editing-service-name {
    font-weight: 600;
}

.standalone-editing-service-summary,
.standalone-editing-service-price {
    margin-top: 4px;
}

.standalone-editing-checkout,
.standalone-editing-start,
.standalone-editing-back {
    font: inherit;
    cursor: pointer;
}

.standalone-editing-checkout,
.standalone-editing-start {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 14px 16px;
}

.standalone-editing-back {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    #screen-standalone-editing > .standalone-editing-layout {
        max-width: var(--st-desktop-canvas);
    }
}
