/* Careers Section Styles - Aligned with Brands */

body.wheelers-careers {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    background: #000000;
    color: #FFFFFF;
}

/* Typography */
.wheelers-careers .section-title {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 700;
    /* Aligned with Brands */
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.wheelers-careers .section-subtitle {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* Aligned with Brands */
    line-height: 1.5;
    color: #A1A3A5;
}

/* Navigation */
.wheelers-careers .nav-link {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.wheelers-careers .nav-link:hover {
    color: var(--wm-accent);
}

/* Buttons - Aligned with Brands */
.wheelers-careers .cta-button {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wheelers-careers .cta-button:hover {
    transform: translateY(-2px);
}

/* Cards */
.wheelers-careers .value-card,
.wheelers-careers .position-card,
.wheelers-careers .benefit-card {
    background: rgba(18, 28, 45, 0.3);
    border: 1px solid rgba(161, 163, 165, 0.1);
    transition: all 0.3s ease;
    border-radius: 18px;
    /* Aligned with Academy/Brands */
}

.wheelers-careers .value-card:hover,
.wheelers-careers .position-card:hover,
.wheelers-careers .benefit-card:hover {
    border-color: var(--wm-accent);
    transform: translateY(-4px);
}

.wheelers-careers .position-card {
    cursor: pointer;
}

.wheelers-careers .position-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(0, 199, 111, 0.9);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 199, 111, 0.25);
}

/* Footer Links */
.wheelers-careers .footer-column {
    font-family: 'neue-haas-grotesk-display', sans-serif;
}

.wheelers-careers .footer-link {
    color: #A1A3A5;
    transition: all 0.3s ease;
}

.wheelers-careers .footer-link:hover {
    color: var(--wm-accent);
}

/* Animations */
.wheelers-careers .reveal-element {
    opacity: 0;
    transform: translateY(30px);
}

/* Shared Careers hero (matches Brands Services/Portfolio proportions) */
.careers-hero {
    position: relative;
    background-color: #000000;
    overflow: hidden;
    --careers-hero-min-height: 70vh;
    --mx: 0.5;
    --my: 0.4;
}

.careers-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.9) 65%, #000 100%);
    z-index: 1;
}

.careers-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
    background:
        linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.85) 85%, #000000 100%),
        radial-gradient(circle at 15% 0%, rgba(0, 199, 111, 0.35), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(0, 199, 111, 0.3), transparent 45%),
        radial-gradient(circle at 50% 0%, rgba(18, 28, 45, 0.6), transparent 50%),
        radial-gradient(circle at calc(var(--mx, 0.5) * 100%) calc(var(--my, 0.4) * 100%), rgba(0, 199, 111, 0.8), transparent 6%);
    background-color: #000000;
}

.careers-hero-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 2rem 5rem;
}

/* Main landing page hero stays full-height */
.careers-hero--main .hero-content {
    min-height: 70vh;
    padding: 120px 2rem 80px;
}

.careers-hero .eyebrow {
    color: #00C76F;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: block;
}

.careers-hero h1 {
    font-family: 'neue-haas-grotesk-display', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.careers-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A1A3A5;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .careers-hero h1 {
        font-size: 2.2rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }
}

/* Culture Gallery */
.wheelers-careers .culture-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.wheelers-careers .culture-image {
    aspect-ratio: 16/9;
    background: #1F2937;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.wheelers-careers .culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    /* Careers Section Styles - Aligned with Brands */

    body.wheelers-careers {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        background: #000000;
        color: #FFFFFF;
    }

    /* Typography */
    .wheelers-careers .section-title {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 700;
        /* Aligned with Brands */
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
        letter-spacing: -0.01em;
    }

    .wheelers-careers .section-subtitle {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 400;
        font-size: 18px;
        /* Aligned with Brands */
        line-height: 1.5;
        color: #A1A3A5;
    }

    /* Navigation */
    .wheelers-careers .nav-link {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 400;
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

    .wheelers-careers .nav-link:hover {
        color: var(--wm-accent);
    }

    /* Buttons - Aligned with Brands */
    .wheelers-careers .cta-button {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.85rem 2.4rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .wheelers-careers .cta-button:hover {
        transform: translateY(-2px);
    }

    /* Cards */
    .wheelers-careers .value-card,
    .wheelers-careers .position-card,
    .wheelers-careers .benefit-card {
        background: rgba(18, 28, 45, 0.3);
        border: 1px solid rgba(161, 163, 165, 0.1);
        transition: all 0.3s ease;
        border-radius: 18px;
        /* Aligned with Academy/Brands */
    }

    .wheelers-careers .value-card:hover,
    .wheelers-careers .position-card:hover,
    .wheelers-careers .benefit-card:hover {
        border-color: var(--wm-accent);
        transform: translateY(-4px);
    }

    .wheelers-careers .position-card {
        cursor: pointer;
    }

    /* Footer Links */
    .wheelers-careers .footer-column {
        font-family: 'neue-haas-grotesk-display', sans-serif;
    }

    .wheelers-careers .footer-link {
        color: #A1A3A5;
        transition: all 0.3s ease;
    }

    .wheelers-careers .footer-link:hover {
        color: var(--wm-accent);
    }

    /* Animations */
    .wheelers-careers .reveal-element {
        opacity: 0;
        transform: translateY(30px);
    }

    /* Culture Gallery */
    .wheelers-careers .culture-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }

    .wheelers-careers .culture-image {
        aspect-ratio: 16/9;
        background: #1F2937;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .wheelers-careers .culture-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 2rem 1rem 1rem;
        color: white;
    }

    /* Hero Background */
    .wheelers-careers .hero-bg {
        background: linear-gradient(135deg, color-mix(in srgb, var(--wm-accent) 10%, transparent) 0%, rgba(0, 0, 0, 0.9) 100%);
    }
}

/* Cards */
.wheelers-careers .value-card,
.wheelers-careers .position-card,
.wheelers-careers .benefit-card {
    background: rgba(18, 28, 45, 0.3);
    border: 1px solid rgba(161, 163, 165, 0.1);
    transition: all 0.3s ease;
    border-radius: 18px;
    /* Aligned with Academy/Brands */
}

.wheelers-careers .value-card:hover,
.wheelers-careers .position-card:hover,
.wheelers-careers .benefit-card:hover {
    border-color: var(--wm-accent);
    transform: translateY(-4px);
}

.wheelers-careers .position-card {
    cursor: pointer;
}

/* Footer Links */
.wheelers-careers .footer-column {
    font-family: 'neue-haas-grotesk-display', sans-serif;
}

.wheelers-careers .footer-link {
    color: #A1A3A5;
    transition: all 0.3s ease;
}

.wheelers-careers .footer-link:hover {
    color: var(--wm-accent);
}

/* Animations */
.wheelers-careers .reveal-element {
    opacity: 0;
    transform: translateY(30px);
}

/* Culture Gallery */
.wheelers-careers .culture-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.wheelers-careers .culture-image {
    aspect-ratio: 16/9;
    background: #1F2937;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.wheelers-careers .culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    /* Careers Section Styles - Aligned with Brands */

    body.wheelers-careers {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        background: #000000;
        color: #FFFFFF;
    }

    /* Typography */
    .wheelers-careers .section-title {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 700;
        /* Aligned with Brands */
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
        letter-spacing: -0.01em;
    }

    .wheelers-careers .section-subtitle {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 400;
        font-size: 18px;
        /* Aligned with Brands */
        line-height: 1.5;
        color: #A1A3A5;
    }

    /* Navigation */
    .wheelers-careers .nav-link {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 400;
        font-size: 0.875rem;
        transition: all 0.3s ease;
    }

    .wheelers-careers .nav-link:hover {
        color: var(--wm-accent);
    }

    /* Buttons - Aligned with Brands */
    .wheelers-careers .cta-button {
        font-family: 'neue-haas-grotesk-display', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.85rem 2.4rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .wheelers-careers .cta-button:hover {
        transform: translateY(-2px);
    }

    /* Cards */
    .wheelers-careers .value-card,
    .wheelers-careers .position-card,
    .wheelers-careers .benefit-card {
        background: rgba(18, 28, 45, 0.3);
        border: 1px solid rgba(161, 163, 165, 0.1);
        transition: all 0.3s ease;
        border-radius: 18px;
        /* Aligned with Academy/Brands */
    }

    .wheelers-careers .value-card:hover,
    .wheelers-careers .position-card:hover,
    .wheelers-careers .benefit-card:hover {
        border-color: var(--wm-accent);
        transform: translateY(-4px);
    }

    .wheelers-careers .position-card {
        cursor: pointer;
    }

    /* Footer Links */
    .wheelers-careers .footer-column {
        font-family: 'neue-haas-grotesk-display', sans-serif;
    }

    .wheelers-careers .footer-link {
        color: #A1A3A5;
        transition: all 0.3s ease;
    }

    .wheelers-careers .footer-link:hover {
        color: var(--wm-accent);
    }

    /* Animations */
    .wheelers-careers .reveal-element {
        opacity: 0;
        transform: translateY(30px);
    }

    /* Culture Gallery */
    .wheelers-careers .culture-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
    }

    .wheelers-careers .culture-image {
        aspect-ratio: 16/9;
        background: #1F2937;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .wheelers-careers .culture-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 2rem 1rem 1rem;
        color: white;
    }

    /* Hero Background */
    .wheelers-careers .hero-bg {
        background: linear-gradient(135deg, color-mix(in srgb, var(--wm-accent) 10%, transparent) 0%, rgba(0, 0, 0, 0.9) 100%);
    }

    /* Generic Link Hover Override */
    .wheelers-careers a:hover,
    .wheelers-careers a:focus {
        color: var(--wm-accent);
        transition: color 0.3s;
    }
}

/* ================================================================
   CAREERS FOOTER — mirrors brands-sweep.css .wm-footer pattern
   ================================================================ */
body.wheelers-careers .wm-footer {
    background-color: #000000;
    color: #A1A3A5;
    font-family: 'neue-haas-grotesk-display', sans-serif;
}

body.wheelers-careers .wm-footer .footer-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 3rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 5rem 2rem 3rem !important;
}

body.wheelers-careers .wm-footer .footer-about img {
    height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

body.wheelers-careers .wm-footer .footer-about p {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #A1A3A5 !important;
    max-width: 280px !important;
}

body.wheelers-careers .wm-footer .footer-column h4,
body.wheelers-careers .wm-footer .footer-heading {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 1.25rem !important;
    font-family: 'neue-haas-grotesk-display', sans-serif !important;
}

body.wheelers-careers .wm-footer .footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.65rem !important;
}

body.wheelers-careers .wm-footer .footer-column ul li a {
    color: #A1A3A5 !important;
    font-size: 0.92rem !important;
    text-decoration: none !important;
    transition: color .2s !important;
}

body.wheelers-careers .wm-footer .footer-column ul li a:hover {
    color: #00C76F !important;
}

body.wheelers-careers .wm-footer .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    gap: 1rem !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 1.5rem 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.wheelers-careers .wm-footer .footer-bottom p,
body.wheelers-careers .wm-footer .footer-bottom-left p {
    font-size: 0.82rem !important;
    color: #A1A3A5 !important;
    margin: 0 !important;
}



body.wheelers-careers .wm-footer .footer-bottom-center {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.82rem !important;
    color: #A1A3A5 !important;
    white-space: nowrap !important;
}

body.wheelers-careers .wm-footer .footer-bottom-center a {
    color: #A1A3A5 !important;
    text-decoration: none !important;
    transition: color .2s !important;
}

body.wheelers-careers .wm-footer .footer-bottom-center a:hover {
    color: #00C76F !important;
}

body.wheelers-careers .wm-footer .footer-social {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-right: 20px !important;
    flex-shrink: 0 !important;
}

body.wheelers-careers .wm-footer .footer-social a img {
    height: 22px !important;
    width: 22px !important;
    opacity: 0.65 !important;
    transition: opacity .2s ease !important;
    display: block !important;
}

body.wheelers-careers .wm-footer .footer-social a:hover img {
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    body.wheelers-careers .wm-footer .footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
        padding: 4rem 2rem 2rem !important;
    }

    body.wheelers-careers .wm-footer .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 1.5rem 1.25rem !important;
        text-align: center !important;
    }

    body.wheelers-careers .wm-footer .footer-bottom-center {
        position: static !important;
        transform: none !important;
        left: auto !important;
        justify-content: center !important;
    }

    body.wheelers-careers .wm-footer .footer-social {
        margin-right: 0 !important;
        justify-content: center !important;
    }
}

@media (max-width: 640px) {
    body.wheelers-careers .wm-footer .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 3rem 1.25rem 1.5rem !important;
    }
}

/* ── Careers button palette: green bg + black text; hover = white + green ── */
body.wheelers-careers .cta-button,
body.wheelers-careers .wm-btn,
body.wheelers-careers button[type="submit"],
body.wheelers-careers input[type="submit"],
body.wheelers-careers .brief-cta-btn {
    background-color: #00C76F !important;
    color: #000 !important;
    border-color: transparent !important;
}

body.wheelers-careers .cta-button:hover,
body.wheelers-careers .wm-btn:hover,
body.wheelers-careers button[type="submit"]:hover,
body.wheelers-careers input[type="submit"]:hover,
body.wheelers-careers .brief-cta-btn:hover {
    background-color: #ffffff !important;
    color: #00C76F !important;
    border-color: #00C76F !important;
    box-shadow: none !important;
}

/* ================================================================
   MOBILE ACCORDION — Open Positions dropdown (mirrors brands Solutions)
   ================================================================ */

.wm-mobile-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
    font-family: var(--wm-font, 'neue-haas-grotesk-display', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease, transform 0.3s ease;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1025px) {
    .wm-mobile-accordion__trigger {
        font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
        line-height: 1.15;
    }
}

body.wheelers-careers .wm-mobile-accordion__trigger:hover,
body.wheelers-careers .wm-mobile-accordion__trigger:focus,
body.wheelers-careers .wm-mobile-accordion__trigger:active {
    color: #00C76F;
    transform: translateX(10px);
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.wm-mobile-accordion__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.28s ease;
}

@media (min-width: 1025px) {
    .wm-mobile-accordion__chevron {
        width: 32px;
        height: 32px;
    }
}

.wm-mobile-accordion__chevron svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wm-mobile-accordion.is-open .wm-mobile-accordion__chevron {
    transform: rotate(180deg);
}

.wm-mobile-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
    padding-left: 16px;
    margin-top: 0;
}

@media (min-width: 1025px) {
    .wm-mobile-accordion__panel {
        padding-left: 24px;
    }
}

.wm-mobile-accordion.is-open .wm-mobile-accordion__panel {
    max-height: 500px;
    margin-top: 10px;
}

.wm-mobile-accordion__panel a {
    display: block;
    padding: 8px 0;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
    margin-left: 0;
    transition: all 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-break: keep-all;
    width: max-content;
    max-width: 90vw;
}

@media (min-width: 1025px) {
    .wm-mobile-accordion__panel a {
        font-size: 1.5rem !important;
        padding: 12px 0 12px 24px;
    }
}

body.wheelers-careers .wm-mobile-accordion__panel a:hover {
    color: #fff !important;
    border-left-color: #00C76F;
    transform: translateX(5px);
}