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

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

.ll-owner-prompt {
    text-align: center;
}

.ll-owner-prompt__question {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
}

.ll-owner-prompt__reason {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: black;
}

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

.ll-owner-prompt__choice {
    min-height: 52px;
}

/* Poll email verification uses the modal heading as the owner-prompt question. */
.pvs-email-modal--owner-step .ll-owner-prompt__question {
    margin-bottom: 8px;
}

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

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

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

/* === LL_FILE_END === */
