.catalogue_cta {
    /* Section background covers the upper portion only — bottom 22rem is
     * transparent so the page's body background shows through and the
     * inner CTA banner visually "hangs off" into the white below.
     * Same pattern as contact_callout. Tune the cut-off if the banner
     * height changes. */
    position: relative;
    background:
        linear-gradient(
            to bottom,
            var(--panel-colour, #1B1788) 0,
            var(--panel-colour, #1B1788) calc(100% - 22rem),
            transparent calc(100% - 22rem)
        );
    color: #fff;
    padding: 8rem 0;
}

.catalogue_cta > .container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* ── Top half: floating image + content ─────────────────────────────── */
.catalogue_cta_top {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 8rem;
    align-items: center;
    position: relative;
}

.catalogue_cta.reverse_section .catalogue_cta_top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.catalogue_cta_panel {
    position: relative;
    align-self: stretch;
    min-height: 50rem;
}

.catalogue_cta_image {
    /* Absolutely positioned so the image can hang freely past its column edge */
    position: absolute;
    top: 50%;
    left: 0;
    right: -6rem;
    transform: translateY(-50%);
    z-index: 2;
}

.catalogue_cta_image img {
    width: 100%;
    height: auto;
    display: block;
}

.catalogue_cta.reverse_section .catalogue_cta_panel {
    order: 2;
}

.catalogue_cta.reverse_section .catalogue_cta_image {
    left: -6rem;
    right: 0;
}

.catalogue_cta.reverse_section .catalogue_cta_content {
    order: 1;
}

.catalogue_cta_content {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.catalogue_cta_title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.25rem;
    margin: 0;
    color: var(--title-colour, #fff);
}

.catalogue_cta_body {
    color: var(--content-colour, #fff);
    font-size: 1.6rem;
    line-height: 1.6;
}

.catalogue_cta_body p {
    margin: 0 0 1.6rem;
    color: inherit;
}

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

/* First paragraph as a styled lede when authors bold it in the WYSIWYG */
.catalogue_cta_body p:first-child strong {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 700;
    color: inherit;
}

.catalogue_cta_btn_wrapper {
    margin-top: 0.8rem;
}

.catalogue_cta_button {
    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-color 0.3s ease, color 0.3s ease;
}

.catalogue_cta_button.button_yellow {
    background-color: #FFEB01;
    color: #0A3956;
}

.catalogue_cta_button.button_yellow:hover {
    background-color: #002446;
    color: #fff;
}

.catalogue_cta_button.button_blue {
    background-color: #122841;
    color: #fff;
}

.catalogue_cta_button.button_blue:hover {
    background-color: #FFEB01;
    color: #0A3956;
}

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

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

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

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

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

.catalogue_cta_banner_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;
}

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

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

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

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

.catalogue_cta_banner_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-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .catalogue_cta {
        padding: 5rem 0;
        background:
            linear-gradient(
                to bottom,
                var(--panel-colour, #1B1788) 0,
                var(--panel-colour, #1B1788) calc(100% - 14rem),
                transparent calc(100% - 14rem)
            );
    }

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

    .catalogue_cta_top,
    .catalogue_cta.reverse_section .catalogue_cta_top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .catalogue_cta_panel {
        min-height: 0;
    }

    .catalogue_cta_image,
    .catalogue_cta.reverse_section .catalogue_cta_image {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 70%;
        margin: 0 auto;
    }

    .catalogue_cta.reverse_section .catalogue_cta_panel {
        order: 1;
    }

    .catalogue_cta.reverse_section .catalogue_cta_content {
        order: 2;
    }

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

    .catalogue_cta_banner_overlay {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .catalogue_cta_button,
    .catalogue_cta_banner_btn {
        min-width: 0;
        width: 100%;
    }

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