/* --------------------------------------------------------
   Recrutement — liste des offres
   -------------------------------------------------------- */
.recrutement-intro {
    margin-bottom: 30px;
    padding: 40px;
    background: rgba(105, 119, 80,.1);
}

.section-recrutement {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offre-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background-color: #fff;
    border: 1px dashed  #697750;
    border-left: 4px solid #697750;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s, border-left-color 0.3s;
}

.offre-card:hover {
    border-color: #000;
    color: #000;
    background-color: #f6f6f6;
}

.offre-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offre-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    color: #697750;
    padding: 0 0 10px 0;
}

.offre-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.offre-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8em;
    font-weight: 600;
    border-radius: 20px;
}

.offre-tag.tag-contrat {
    background-color: #697750;
    color: #fff;
}

.offre-tag.tag-lieu,
.offre-tag.tag-taux {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.offre-excerpt {
    font-size: 0.95em;
    margin: 0;
    opacity: 0.75;
}

/* --------------------------------------------------------
   Recrutement — page offre individuelle
   -------------------------------------------------------- */

.single-offre {
    padding: 60px 0;
}

.single-offre .single-offre-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.single-offre .single-offre-content {
    margin-bottom: 50px;
}

.single-offre .single-offre-back {
    margin-top: 40px;
}


/* --------------------------------------------------------
   Responsive
   -------------------------------------------------------- */

@media (max-width: 768px) {
    .offre-card {
        padding: 20px;
    }
}
