/* ==========================================================================
   PAGE: Careers
   assets/css/components/pages/careers.css
   ========================================================================== */

/* Hero */
.hero-careers {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232,80,2,0.05) 0%, transparent 60%),
        var(--bg-void);
    overflow: hidden;
}

.hero-careers .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-careers h1 {
    font-size: clamp(2.5rem, 5.2vw, 3.7rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-subhead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero-trust-line {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Role card enhancements */
.role-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-card .experience {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Intern card subtle highlight */
.intern-card {
    border-color: rgba(232,80,2,0.15);
}

/* Application process styling */
.application-process .step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-careers {
        min-height: 60vh;
    }
    .application-process {
        flex-direction: column;
        align-items: center;
    }
}
.hero-job-single {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(232,80,2,0.05) 0%, transparent 60%),
        var(--bg-void);
    overflow: hidden;
}
.hero-job-single .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}
.hero-department {
    display: inline-block;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}