.contact_callout {
    position: relative;
    /* Section background only covers the upper portion. The bottom 22rem
     * is transparent so the page's body background (white) shows through
     * — the inner CTA banner straddles the boundary and visually "hangs
     * off" the navy section into the white below. Tune the cut-off if
     * the CTA changes height. Mobile drops the offset since the CTA gets
     * smaller. */
    background:
        linear-gradient(
            to bottom,
            var(--secondary, #1B1788) 0,
            var(--secondary, #1B1788) calc(100% - 22rem),
            transparent calc(100% - 22rem)
        );
    color: #fff;
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .contact_callout {
        background:
            linear-gradient(
                to bottom,
                var(--secondary, #1B1788) 0,
                var(--secondary, #1B1788) calc(100% - 14rem),
                transparent calc(100% - 14rem)
            );
    }
}

.contact_callout > .container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Contact info row */
.contact_callout_info {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4rem;
}

.contact_callout_info_item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: #fff;
}

.contact_callout_info_label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Karla', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.12rem;
    color: #fff;
}

.contact_callout_info_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: #FFEB01;
    color: #1B1788;
    flex-shrink: 0;
}

.contact_callout_info_value {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
}

a.contact_callout_info_value:hover {
    text-decoration: underline;
}

/* Newsletter + Websites row */
.contact_callout_secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 4rem;
    align-items: start;
}

.contact_callout_subheading {
    font-family: 'Karla', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.12rem;
    color: #fff;
    margin: 0 0 1.6rem;
}

.contact_callout_newsletter_form {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 200px;
    padding: 0.4rem;
    max-width: 40rem;
}

.contact_callout_newsletter_input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 1.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
    outline: none;
    min-width: 0;
}

.contact_callout_newsletter_input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact_callout_newsletter_button {
    background: #FFEB01;
    color: #1B1788;
    border: none;
    border-radius: 200px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact_callout_newsletter_button:hover {
    background: #fff;
    color: #1B1788;
}

.contact_callout_websites_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact_callout_website_pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFEB01;
    color: #1B1788;
    border: 1px solid #fff;
    border-radius: 500px;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact_callout_website_pill:hover {
    background: #fff;
    color: #1B1788;
}

/* Embedded CTA banner */
.contact_callout_cta {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    min-height: 36rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem;
    color: #fff;
}

.contact_callout_cta_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact_callout_cta_bg img,
.contact_callout_cta_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Half-width multiply overlay on the content side, matching dual_cta_banner */
.contact_callout_cta_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background: #0055A5;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.contact_callout_cta_inner {
    position: relative;
    z-index: 2;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    text-align: left;
}

.contact_callout_cta_title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.2rem;
    color: #fff;
    margin: 0;
}

.contact_callout_cta_content {
    font-size: 1.6rem;
    line-height: 1.6;
}

.contact_callout_cta_content p {
    margin: 0 0 1rem;
    color: inherit;
}

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

.contact_callout_cta_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 1.6rem;
}

.contact_callout_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 3.2rem;
    min-height: 5.6rem;
    min-width: 22rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 500px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.contact_callout_cta_btn_primary {
    background: #FFEB01;
    color: #0055A5;
    border-color: #FFEB01;
}

.contact_callout_cta_btn_primary:hover {
    background: #002446;
    color: #fff;
    border-color: #002446;
}

.contact_callout_cta_btn_secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.contact_callout_cta_btn_secondary:hover {
    background: #fff;
    color: #0055A5;
}

@media (max-width: 1100px) {
    .contact_callout_info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .contact_callout_secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact_callout {
        padding: 5rem 0;
    }

    .contact_callout > .container {
        gap: 4rem;
    }

    .contact_callout_info {
        grid-template-columns: 1fr;
    }

    .contact_callout_cta {
        padding: 4rem 2.4rem;
        min-height: auto;
    }

    .contact_callout_cta_overlay {
        width: 100%;
    }

    .contact_callout_cta_buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact_callout_cta_btn {
        width: 100%;
        min-width: 0;
    }
}
