/*--------------------------------------------------------------
# Career

FOUND IN CAREER.CSS
        - CAREER GLOBAL ------------------------------LINE 14
        - CAREER TITLE--------------------------------LINE 25
        - CAREER META INFORMATION---------------------LINE 34
        - CAREER CONTENT -----------------------------LINE 60
        - CAREER SECTIONS-----------------------------LINE 69
        - CAREER RESPONSIVE---------------------------LINE 96
--------------------------------------------------------------*/

/*--------------------------------------------------------------
CAREER GLOBAL
--------------------------------------------------------------*/
.career {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

/*--------------------------------------------------------------
CAREER TITLE
--------------------------------------------------------------*/
.career-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
CAREER META INFORMATION
--------------------------------------------------------------*/
.career-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 420px;
    margin: 24px 0;

    /* Encadré */
    background-color: #f5f5f5;
    border-radius: 6px;
    padding: 16px 20px;
}

.career-meta-item {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.career-meta-item span {
    font-weight: 400;
    color: #555;
}

/*--------------------------------------------------------------
CAREER CONTENT
--------------------------------------------------------------*/
.career-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*--------------------------------------------------------------
CAREER SECTIONS
--------------------------------------------------------------*/
.career-section {
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.career-section:last-child {
    border-bottom: none;
}

/* ===== Section titles ===== */
.career-section h2 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #111;
}

/* ===== Section text ===== */
.career-section p {
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

/*--------------------------------------------------------------
CAREER RESPONSIVE
--------------------------------------------------------------*/
@media (max-width: 600px) {
    .career-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .career-meta {
        grid-template-columns: 1fr;
    }
}