/**
 * CTA Career component – shared career band. Used wherever #component-cta is present.
 */
/* cap-container: width constraint (from Capabilities) – needed when cta-career is used without capabilities.css */
.cap-cta .cap-container {
    width: min(1288px, 92vw);
    margin: 0 auto;
}

/* ===== CTA Section – Capabilities design ===== */
.cap-cta {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    background: #282828;
    overflow: hidden;
}

.cap-cta-shape {
    position: absolute;
    left: -22px;
    top: 22px;
    width: 157px;
    height: 156px;
    z-index: 2;
    pointer-events: none;
}

.cap-cta-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cap-cta-inner p {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    flex: 1 1 0;
    min-width: 0;
}

.cap-cta-inner p strong {
    font-weight: 700;
}

.cap-cta-btn {
    flex-shrink: 0;
    text-decoration: none;
    background: #cc0000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .cap-cta {
        min-height: 200px;
        padding: 42px 0;
        box-sizing: border-box;
    }

    .cap-cta-shape {
        left: auto;
        right: 23px;
        top: auto;
        bottom: -10px;
        width: 129px;
        height: 128px;
        object-fit: contain;
        object-position: right bottom;
    }

    .cap-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cap-cta-inner p {
        font-size: 18px;
        line-height: 1.5;
    }
}
