/* ==========================================================================
   CTA Explore Careers ([cta_explore_careers])
   ========================================================================== */

.cta-careers {
    background: transparent;
    color: #1a1a1d;
    font-family: 'Montserrat', sans-serif;
}

/* Full-bleed: break out of any constrained parent (Divi row, etc.) so the
   dark background spans 100vw, while .cta-careers__inner centers content. */
.cta-careers--fullbleed {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cta-careers__inner {
    width: 100%;
    max-width: 1208px;
    margin: 0 auto;
}

.cta-careers *,
.cta-careers *::before,
.cta-careers *::after {
    box-sizing: border-box;
}

.cta-careers h1,
.cta-careers h2,
.cta-careers h3,
.cta-careers h4,
.cta-careers h5,
.cta-careers h6 {
    font-family: 'Montserrat', sans-serif !important;
}

.cta-careers p,
.cta-careers h2 {
    padding: 0;
}

.cta-careers__container {
    width: 100%;
    max-width: 1208px;
    margin: 0 auto;
    padding: 64px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ---------- Content column ---------- */

.cta-careers__content {
    min-width: 0;
}

.cta-careers__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f26622;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.cta-careers__eyebrow-bar {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #f26622;
}

.cta-careers__headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    color: #1a1a1d;
    text-transform: uppercase;
    margin: 12px 0 16px;
    letter-spacing: -0.5px;
}

.cta-careers__headline-accent {
    color: #f26622;
}

.cta-careers__copy {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(26, 26, 29, 0.75);
    margin: 0 0 28px;
    max-width: 480px;
}

/* ---------- Buttons ---------- */

.cta-careers__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-careers__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    line-height: 1;
    cursor: pointer;
}

.cta-careers__btn--primary {
    background: #f26622;
    color: #fff;
    border: 1px solid #f26622;
}

.cta-careers__btn--primary:hover,
.cta-careers__btn--primary:focus {
    background: #d4551a;
    border-color: #d4551a;
    color: #fff;
}

.cta-careers__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cta-careers__btn--secondary:hover,
.cta-careers__btn--secondary:focus {
    background: #fff;
    color: #1a1a1d;
}

.cta-careers__btn-arrow {
    font-size: 16px;
    line-height: 1;
}

/* ---------- Media column ---------- */

.cta-careers__media {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: #141416;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 14px);
    overflow: hidden;
}

.cta-careers__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

.cta-careers__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .cta-careers__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-careers__media {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .cta-careers__container {
        padding: 48px 20px;
    }

    .cta-careers__headline {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .cta-careers__actions .cta-careers__btn {
        width: 100%;
    }
}
