.wp-block-headless-cta-banner {
    position: relative;
    overflow: hidden;
    padding: 128px 64px;
    border-radius: 32px;
    background: #6d9aa5;
    text-align: center;
}

/* Background image layer */
.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay on top of image */
.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(25, 55, 65, 0.52);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-banner-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-size: 88px;
    font-weight: 600;
    line-height: 1.1;
}

.cta-banner-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
}

.cta-banner-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 99px;
    border: none;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
    box-shadow:
        2px 4px 9px rgba(250, 112, 13, 0.1),
        7px 15px 16px rgba(250, 112, 13, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner-button:hover {
    transform: translateY(-1px);
}

.cta-banner-button--primary {
    background: #fa700d;
    color: #ffffff;
}

.cta-banner-button--secondary {
    background: #ffffff;
    color: #fa700d;
}

@media (max-width: 900px) {
    .wp-block-headless-cta-banner {
        padding: 64px 32px;
        border-radius: 32px;
    }

    .cta-banner-title {
        font-size: 52px;
    }

    .cta-banner-subtitle {
        font-size: 16px;
    }

    .cta-banner-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-banner-button {
        width: 100%;
        max-width: 320px;
    }
}
