.bomecoop-offres-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bomecoop-offre {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bomecoop-offre:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.bomecoop-offre.offre-expiree {
    border-color: #e53935; /* Rouge pour les offres expirées */
    opacity: 0.7;
}

.bomecoop-offre-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bomecoop-offre-titre {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.bomecoop-offre-statut {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bomecoop-offre-statut-active {
    background: #e0f7e9;
    color: #1b5e20;
}

.bomecoop-offre-statut-expiree {
    background: #ffebee;
    color: #b71c1c;
}

.bomecoop-offre-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: #555;
}

.bomecoop-offre-meta li {
    margin-bottom: 4px;
}

.bomecoop-offre-extrait {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 16px;
}

.bomecoop-offre-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bomecoop-btn-postuler,
.bomecoop-btn-details {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.bomecoop-btn-postuler {
    background: #1b5e20; /* tu peux adapter à la couleur BOMECOOP */
    color: #fff;
}

.bomecoop-btn-postuler.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bomecoop-btn-details {
    background: #f5f5f5;
    color: #333;
}
