/* === LL_FILE_START ===
 * File: newsletter-owner-prompt.css
 * Description: Canonical presentation for the newsletter owner/manager segmentation prompt across standalone subscriber and poll signup flows.
 * Release: 2026.09.01.3
 */

/* The standalone newsletter step is hidden until JavaScript advances to it. */
.ll-newsletter-step--business {
    display: none;
}

/*
 * SINGLE SOURCE OF TRUTH — OWNER/MANAGER STEP PRESENTATION
 *
 * Every owner/manager segmentation surface uses the ll-owner-prompt classes.
 * Flow-specific scripts may add selectors for behavior, but they should not
 * redefine the question, reason, two-column layout, or choice-button styling.
 */
.ll-owner-prompt {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.ll-owner-prompt__question {
    margin: 0 0 8px !important;
    color: #1d2327;
    font-size: 26px !important;
    font-weight: 700;
    line-height: 1.25 !important;
    text-align: center !important;
}

.ll-owner-prompt__reason {
    margin: 0 0 20px !important;
    color: #1d2327 !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.ll-owner-prompt .ll-owner-prompt__choices {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 0 !important;
}

/*
 * Own the full choice-button appearance here instead of inheriting different
 * .button/.ll-btn styles from each signup surface. This keeps Step 2 visually
 * identical whether it is reached from a poll or a standalone subscriber form.
 */
.ll-owner-prompt .ll-owner-prompt__choice {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 52px !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 12px 16px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    cursor: pointer;
    font: inherit !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: normal !important;
}

.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="1"] {
    background: #2271b1 !important;
    border: 1px solid #2271b1 !important;
    color: #ffffff !important;
}

.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="1"]:hover,
.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="1"]:focus {
    background: #135e96 !important;
    border-color: #135e96 !important;
    color: #ffffff !important;
}

.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="0"] {
    background: #ffffff !important;
    border: 1px solid #8c8f94 !important;
    color: #1d2327 !important;
}

.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="0"]:hover,
.ll-owner-prompt .ll-owner-prompt__choice[data-owner-manager="0"]:focus {
    background: #f6f7f7 !important;
    border-color: #646970 !important;
    color: #1d2327 !important;
}

.ll-owner-prompt .ll-owner-prompt__choice:focus-visible {
    outline: 3px solid rgba(34, 113, 177, 0.32) !important;
    outline-offset: 2px;
}

.ll-owner-prompt .ll-owner-prompt__choice:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 480px) {
    .ll-owner-prompt__question {
        font-size: 23px !important;
    }

    .ll-owner-prompt__reason {
        font-size: 17px !important;
    }

    .ll-owner-prompt .ll-owner-prompt__choices {
        gap: 8px !important;
    }
}



/*
 * Poll newsletter signup Step 1 — release 2026.09.01.3
 *
 * Keep this scoped to the poll newsletter modal so the generic poll dialogs
 * retain their existing widths. The input remains 100% of the form width.
 */
.ll-poll-page #pvs-newsletter-modal:not(.pvs-modal--confirmation) .pvs-modal__dialog {
    width: min(520px, 100%);
    padding: 24px 28px;
}

.ll-poll-page #pvs-newsletter-email-label {
    display: block;
    margin: 18px 0 6px;
    color: #1d2327;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.ll-poll-page #pvs-newsletter-email {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 14px !important;
}

@media (max-width: 600px) {
    .ll-poll-page #pvs-newsletter-modal:not(.pvs-modal--confirmation) .pvs-modal__dialog {
        padding: 22px 20px;
    }
}

/* === LL_FILE_END === */
