/* ==============================================
   Careers Page Styles
   Version: 1
   Last Updated: 2026-04-04
   Signatur/Sign: Lillehest - Team Stallion
   ============================================== */

/* --- Hero Section --- */
.careers-hero-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-200) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.careers-hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-hero-subtitle {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* --- Why Join Section --- */
.careers-why-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.careers-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-bottom: 8px;
}

.careers-section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* --- Careers Cards --- */
.careers-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.careers-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.careers-card-icon {
    font-size: 2rem;
    color: var(--primary-100);
    margin-bottom: 16px;
}

.careers-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-main);
    margin-bottom: 10px;
}

.careers-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* --- CTA Section --- */
.careers-cta-section {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-200) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.careers-cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.careers-cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.7;
}

.careers-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .careers-hero-section {
        padding: 60px 0 40px;
    }

    .careers-hero-section h1 {
        font-size: 1.6rem;
    }

    .careers-cta-section {
        padding: 60px 0;
    }
}
