/* PAGE-SPECIFIC STYLES FOR CAREERS.HTML */

/* Override common h2 styles for this page */
h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Left-aligned underline for this page */
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Specific alignment for job title */
.job-title h2::after {
    left: 0 !important;
    margin-left: 0;
    transform: none !important;
    bottom: -15px;
    width: 60px;
}

/* Remove underline from centered headings in culture section */
.culture-section h2::after {
    display: none;
}

/* Page-specific h1 styles */
h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* HERO SECTION */
.careers-hero {
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
    background: var(--primary-bg);
}

/* JOB SECTIONS */
.job-listing {
    background: var(--primary-bg);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    flex: 1;
}

.job-title h2 {
    margin-bottom: 2.0rem;
    padding-left: 0;
    margin-left: 0;
    text-align: left !important;
}

.job-title p {
    margin: 0;
    padding-left: 0;
    margin-left: 0;
}

.job-meta {
    text-align: right;
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-meta span {
    display: block;
    margin-bottom: 0.2rem;
}

.salary-range {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.job-section {
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* COMPANY CULTURE */
.culture-section {
    background: var(--dark-bg);
    text-align: center;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
    }
    
    .job-meta {
        text-align: left;
    }
    
    h1 { 
        font-size: 2.2rem; 
    }
    
    .job-listing {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-values {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .careers-hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .job-listing {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
} 