/* Styles spécifiques page recrutement */

/* Grid des offres */
.offres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .offres-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card offre */
.offre-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.offre-card:hover {
    border-color: rgba(191, 26, 26, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Titre offre */
.offre-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
}

/* Infos offre */
.offre-infos {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #525252;
    margin-bottom: 0.75rem;
}

.offre-infos p {
    margin: 0;
}

.offre-infos strong {
    font-weight: bold;
}

/* Description */
.offre-description {
    font-size: 0.875rem;
    color: #E5E5E5;
    opacity: 0.8;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Bouton postuler */
.btn-postuler {
    display: block;
    text-align: center;
    background-color: #bf1a1a;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-postuler:hover {
    background-color: rgba(191, 26, 26, 0.8);
}

/* Message aucune offre */
.no-offres {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    border: 1px dashed #525252;
}

.no-offres p {
    color: #525252;
    font-size: 1.125rem;
    margin: 0;
}

