/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 21 2026 | 16:18:29 */
/* ============================================================
   BrightLeaf Giving — Fiscal Sponsor vs 501(c)(3) Decision Quiz
   Page: /quiz/ (post 11352) — embeds form 207
   Scope: URL rule loads on /quiz/; selectors prefixed with
   .bl-fsq-page or .bl-fsq__result for safety. Result panels
   ALSO get tokens applied directly so they're self-contained
   inside the GF confirmation wrapper.
   ============================================================ */

/* Tokens — applied on both the page wrapper and the result panels
   so that GF's confirmation render (which replaces the form) still
   resolves the vars. */
.bl-fsq-page,
.bl-fsq__result {
    --blfsq-green: #2F7E4B;
    --blfsq-green-hover: #25663D;
    --blfsq-green-deep: #1F5A35;
    --blfsq-green-soft: rgba(47, 126, 75, 0.08);
    --blfsq-green-soft-2: rgba(47, 126, 75, 0.16);
    --blfsq-lime: #A8C64A;
    --blfsq-navy: #0b2a4a;
    --blfsq-navy-deep: #082040;
    --blfsq-navy-soft: rgba(11, 42, 74, 0.06);
    --blfsq-amber: #B07C1D;
    --blfsq-amber-hover: #8C6116;
    --blfsq-amber-soft: #FDF6E3;
    --blfsq-amber-border: #ECD9A3;
    --blfsq-ink: #1F2A26;
    --blfsq-ink-2: #2A3833;
    --blfsq-muted: #56645F;
    --blfsq-muted-2: #8A958F;
    --blfsq-white: #ffffff;
    --blfsq-surface: #F7F9F6;
    --blfsq-surface-2: #F1F4F0;
    --blfsq-border: #DEE4E1;
    --blfsq-border-soft: #E8EDE9;
    --blfsq-error: #B53E3E;
    --blfsq-radius: 12px;
    --blfsq-radius-sm: 8px;
    --blfsq-radius-lg: 16px;
    --blfsq-shadow-sm: 0 1px 2px rgba(11, 42, 74, 0.04);
    --blfsq-shadow-md: 0 4px 12px rgba(11, 42, 74, 0.10), 0 12px 32px rgba(11, 42, 74, 0.06);
    --blfsq-tx: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --blfsq-font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --blfsq-font-display: 'RM Neue', 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */

.bl-fsq-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    font-family: var(--blfsq-font-body);
    color: var(--blfsq-ink);
}

.bl-fsq-page__title {
    font-family: var(--blfsq-font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--blfsq-navy);
    margin: 0 0 16px;
}

.bl-fsq-page__intro {
    font-size: 17px;
    line-height: 1.55;
    color: var(--blfsq-muted);
    margin: 0 0 36px;
}

/* ============================================================
   FORM CHROME (.bl-fsq)
   ============================================================ */

.bl-fsq-page .bl-fsq {
    max-width: none;
}

.bl-fsq-page .bl-fsq .gform_heading {
    margin: 0 0 28px;
}

.bl-fsq-page .bl-fsq .gform_description {
    font-size: 16px;
    line-height: 1.55;
    color: var(--blfsq-muted);
}

/* Question spacing */
.bl-fsq-page .bl-fsq__question {
    margin-bottom: 32px;
}

.bl-fsq-page .bl-fsq__question .gfield_label {
    font-family: var(--blfsq-font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--blfsq-ink);
    margin: 0 0 16px;
    display: block;
}

.bl-fsq-page .bl-fsq .gfield_required {
    color: var(--blfsq-muted-2);
    font-weight: 400;
    font-size: 0.85em;
    margin-left: 4px;
}

/* Choice cards — radios */
.bl-fsq-page .bl-fsq__question .gfield_radio {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bl-fsq-page .bl-fsq__question .gchoice {
    position: relative;
    margin: 0;
    padding: 0;
}

.bl-fsq-page .bl-fsq__question .gchoice input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.bl-fsq-page .bl-fsq__question .gchoice label {
    display: block;
    padding: 14px 18px 14px 48px;
    background: var(--blfsq-white);
    border: 1.5px solid var(--blfsq-border);
    border-radius: var(--blfsq-radius);
    font-size: 15.5px;
    line-height: 1.45;
    color: var(--blfsq-ink);
    cursor: pointer;
    transition: border-color var(--blfsq-tx), background-color var(--blfsq-tx), transform var(--blfsq-tx);
    position: relative;
    font-weight: 500;
}

.bl-fsq-page .bl-fsq__question .gchoice label::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--blfsq-border);
    border-radius: 50%;
    background: var(--blfsq-white);
    transition: border-color var(--blfsq-tx), background-color var(--blfsq-tx);
}

.bl-fsq-page .bl-fsq__question .gchoice label::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blfsq-white);
    opacity: 0;
    transition: opacity var(--blfsq-tx);
}

.bl-fsq-page .bl-fsq__question .gchoice label:hover {
    border-color: var(--blfsq-green);
    background: var(--blfsq-green-soft);
}

.bl-fsq-page .bl-fsq__question .gchoice input[type="radio"]:checked + label {
    border-color: var(--blfsq-green);
    background: var(--blfsq-green-soft);
    color: var(--blfsq-ink-2);
}

.bl-fsq-page .bl-fsq__question .gchoice input[type="radio"]:checked + label::before {
    border-color: var(--blfsq-green);
    background: var(--blfsq-green);
}

.bl-fsq-page .bl-fsq__question .gchoice input[type="radio"]:checked + label::after {
    opacity: 1;
}

.bl-fsq-page .bl-fsq__question .gchoice input[type="radio"]:focus-visible + label {
    outline: 3px solid var(--blfsq-green-soft-2);
    outline-offset: 2px;
}

/* Submit button */
.bl-fsq-page .bl-fsq .gform_footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--blfsq-border-soft);
    display: block;
}

.bl-fsq-page .bl-fsq .gform_button {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: var(--blfsq-green);
    border: none;
    border-radius: var(--blfsq-radius);
    color: var(--blfsq-white);
    font-family: var(--blfsq-font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color var(--blfsq-tx), transform var(--blfsq-tx), box-shadow var(--blfsq-tx);
    box-shadow: var(--blfsq-shadow-sm);
}

.bl-fsq-page .bl-fsq .gform_button:hover,
.bl-fsq-page .bl-fsq .gform_button:focus {
    background: var(--blfsq-green-hover);
    transform: translateY(-1px);
    box-shadow: var(--blfsq-shadow-md);
    color: var(--blfsq-white);
}

.bl-fsq-page .bl-fsq .gform_button:active {
    transform: translateY(0);
}

/* Validation errors */
.bl-fsq-page .bl-fsq .gfield_error .gfield_label {
    color: var(--blfsq-error);
}

.bl-fsq-page .bl-fsq .gfield_validation_message,
.bl-fsq-page .bl-fsq .validation_message {
    color: var(--blfsq-error);
    font-size: 14px;
    margin-top: 8px;
}

.bl-fsq-page .bl-fsq .validation_error {
    color: var(--blfsq-error);
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid var(--blfsq-error);
    border-radius: var(--blfsq-radius-sm);
    margin: 0 0 20px;
    background: rgba(181, 62, 62, 0.05);
}

/* Hidden field 6 (Fit Score) — visibility is "hidden" in form config but make doubly sure */
.bl-fsq-page .bl-fsq .gfield--type-number {
    display: none;
}

/* ============================================================
   RESULT PANELS (.bl-fsq__result)
   ============================================================ */

.bl-fsq__result {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 32px;
    background: var(--blfsq-white);
    border: 1px solid var(--blfsq-border);
    border-top: 4px solid var(--blfsq-green);
    border-radius: var(--blfsq-radius-lg);
    box-shadow: var(--blfsq-shadow-md);
    font-family: var(--blfsq-font-body);
    color: var(--blfsq-ink);
    line-height: 1.6;
}

.bl-fsq__result p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--blfsq-ink);
    margin: 0 0 18px;
}

.bl-fsq__result p:last-child {
    margin-bottom: 0;
}

.bl-fsq__result strong {
    font-weight: 700;
    color: var(--blfsq-ink-2);
}

.bl-fsq__headline {
    font-family: var(--blfsq-font-display);
    font-size: clamp(24px, 3.2vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--blfsq-navy);
    margin: 0 0 22px;
}

.bl-fsq__subhead {
    font-family: var(--blfsq-font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--blfsq-ink);
    margin: 32px 0 14px;
}

/* Bulleted list — Outcomes A and C */
.bl-fsq__list {
    margin: 14px 0 22px;
    padding: 0 0 0 22px;
    list-style: none;
}

.bl-fsq__list li {
    position: relative;
    padding: 0 0 12px 4px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--blfsq-ink);
}

.bl-fsq__list li:last-child {
    padding-bottom: 0;
}

.bl-fsq__list li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--blfsq-lime);
    border-radius: 50%;
}

/* Definition list — Outcome B */
.bl-fsq__factors {
    margin: 18px 0 26px;
    padding: 0;
}

.bl-fsq__factors dt {
    font-family: var(--blfsq-font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--blfsq-ink-2);
    margin: 22px 0 8px;
    padding-left: 14px;
    border-left: 3px solid var(--blfsq-lime);
    line-height: 1.4;
}

.bl-fsq__factors dt:first-of-type {
    margin-top: 0;
}

.bl-fsq__factors dd {
    margin: 0 0 0 14px;
    padding-left: 3px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--blfsq-muted);
}

/* CTA block */
.bl-fsq__cta-block {
    margin: 28px 0;
    padding: 24px 22px 20px;
    background: var(--blfsq-surface);
    border-radius: var(--blfsq-radius);
    border: 1px solid var(--blfsq-border-soft);
}

.bl-fsq__cta-primary {
    display: inline-block;
    width: 100%;
    padding: 16px 28px;
    background: var(--blfsq-green);
    color: var(--blfsq-white) !important;
    font-family: var(--blfsq-font-display);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    border-radius: var(--blfsq-radius);
    box-shadow: var(--blfsq-shadow-sm);
    transition: background-color var(--blfsq-tx), transform var(--blfsq-tx), box-shadow var(--blfsq-tx);
    box-sizing: border-box;
    border: none;
}

.bl-fsq__cta-primary:hover,
.bl-fsq__cta-primary:focus {
    background: var(--blfsq-green-hover);
    transform: translateY(-1px);
    box-shadow: var(--blfsq-shadow-md);
    color: var(--blfsq-white) !important;
}

.bl-fsq__cta-secondary {
    margin: 14px 0 0;
    padding: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--blfsq-muted);
}

.bl-fsq__cta-secondary a {
    color: var(--blfsq-green-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.bl-fsq__cta-secondary a:hover,
.bl-fsq__cta-secondary a:focus {
    color: var(--blfsq-green-hover);
}

.bl-fsq__cta-secondary-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: var(--blfsq-white);
    color: var(--blfsq-green-deep) !important;
    border: 1.5px solid var(--blfsq-green);
    border-radius: var(--blfsq-radius);
    font-family: var(--blfsq-font-display);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    transition: background-color var(--blfsq-tx), color var(--blfsq-tx);
    box-sizing: border-box;
}

.bl-fsq__cta-secondary-button:hover,
.bl-fsq__cta-secondary-button:focus {
    background: var(--blfsq-green-soft);
    color: var(--blfsq-green-deep) !important;
}

.bl-fsq__cta-footnote {
    margin: 22px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--blfsq-border-soft);
    font-size: 14px;
    line-height: 1.6;
    color: var(--blfsq-muted);
    font-style: italic;
}

/* Inline links inside result body (not the dedicated CTA classes) */
.bl-fsq__result a:not([class]) {
    color: var(--blfsq-green-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color var(--blfsq-tx);
}

.bl-fsq__result a:not([class]):hover,
.bl-fsq__result a:not([class]):focus {
    color: var(--blfsq-green-hover);
}

/* ============================================================
   VARIANT TREATMENTS
   ============================================================ */

/* --a : CSF fits — confident forest green (default) */
.bl-fsq__result--a {
    border-top-color: var(--blfsq-green);
}

/* --b : Gray zone — neutral navy */
.bl-fsq__result--b {
    border-top-color: var(--blfsq-navy);
}

.bl-fsq__result--b .bl-fsq__cta-block {
    background: var(--blfsq-navy-soft);
}

.bl-fsq__result--b .bl-fsq__cta-primary {
    background: var(--blfsq-navy);
}

.bl-fsq__result--b .bl-fsq__cta-primary:hover,
.bl-fsq__result--b .bl-fsq__cta-primary:focus {
    background: var(--blfsq-navy-deep);
}

.bl-fsq__result--b .bl-fsq__factors dt {
    border-left-color: var(--blfsq-navy);
}

.bl-fsq__result--b .bl-fsq__headline {
    color: var(--blfsq-navy);
}

/* --c : Form a 501(c)(3) — serious amber */
.bl-fsq__result--c {
    border-top-color: var(--blfsq-amber);
}

.bl-fsq__result--c .bl-fsq__cta-block {
    background: var(--blfsq-amber-soft);
    border-color: var(--blfsq-amber-border);
}

.bl-fsq__result--c .bl-fsq__cta-primary {
    background: var(--blfsq-amber);
}

.bl-fsq__result--c .bl-fsq__cta-primary:hover,
.bl-fsq__result--c .bl-fsq__cta-primary:focus {
    background: var(--blfsq-amber-hover);
}

.bl-fsq__result--c .bl-fsq__list li::before {
    background: var(--blfsq-amber);
}

.bl-fsq__result--c .bl-fsq__cta-secondary-button {
    color: var(--blfsq-amber-hover) !important;
    border-color: var(--blfsq-amber);
}

.bl-fsq__result--c .bl-fsq__cta-secondary-button:hover,
.bl-fsq__result--c .bl-fsq__cta-secondary-button:focus {
    background: var(--blfsq-amber-soft);
    color: var(--blfsq-amber-hover) !important;
}

/* GF confirmation wrapper — strip default spacing */
.bl-fsq-page .gform_confirmation_message {
    margin: 0;
    padding: 0;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 600px) {
    .bl-fsq-page {
        padding: 28px 16px 60px;
    }

    .bl-fsq-page__title {
        font-size: 26px;
        line-height: 1.22;
    }

    .bl-fsq-page__intro {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .bl-fsq-page .bl-fsq__question {
        margin-bottom: 28px;
    }

    .bl-fsq-page .bl-fsq__question .gfield_label {
        font-size: 17px;
    }

    .bl-fsq-page .bl-fsq__question .gchoice label {
        padding: 13px 16px 13px 44px;
        font-size: 15px;
        line-height: 1.4;
    }

    .bl-fsq-page .bl-fsq__question .gchoice label::before {
        left: 14px;
        width: 18px;
        height: 18px;
    }

    .bl-fsq-page .bl-fsq__question .gchoice label::after {
        left: 19px;
        width: 8px;
        height: 8px;
    }

    .bl-fsq-page .bl-fsq .gform_button {
        padding: 16px 24px;
        font-size: 16px;
    }

    .bl-fsq__result {
        padding: 26px 20px;
        border-radius: var(--blfsq-radius);
    }

    .bl-fsq__headline {
        font-size: 23px;
        line-height: 1.28;
    }

    .bl-fsq__subhead {
        font-size: 17px;
        margin-top: 26px;
    }

    .bl-fsq__cta-block {
        padding: 18px 16px 16px;
        margin: 24px 0;
    }

    .bl-fsq__cta-primary,
    .bl-fsq__cta-secondary-button {
        padding: 15px 18px;
        font-size: 15.5px;
    }

    .bl-fsq__factors dd {
        margin-left: 10px;
    }
}
