/* Careers Page Styles */

/* Hero Banner */
.careers-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/career_page.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.careers-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-top: 0.5rem;
}

/* Content Section */
.careers-content-section {
    background: #f5f5f7;
    padding: 100px 0;
}

.no-openings-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.no-openings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.card-text {
    color: #6e6e73;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    filter: brightness(110%);
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .no-openings-card {
        padding: 32px;
    }

    .card-title {
        font-size: 1.5rem;
    }
}