/* Import main theme */
@import url('styles.css');

/* Hero Section */
.careers-hero {
    padding: 5rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.careers-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.careers-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Careers Section */
.careers-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.career-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.career-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-intro p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Job Cards Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Job Card */
.job-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    text-align: left;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.job-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.job-location {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.job-location i {
    margin-right: 5px;
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .careers-title {
        font-size: 2.3rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }
}
