/* ==========================================================================
   Linov Adel – Offres d'emploi
   ========================================================================== */

.linov-adel {
    max-width: 860px;
    margin: 0 auto;
    font-family: inherit;
}

.linov-adel__list {
    list-style: none !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Carte ------------------------------------------------------------------- */
.linov-adel__item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    transition: box-shadow .2s ease;
}

.linov-adel__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

/* En-tête ----------------------------------------------------------------- */
.linov-adel__header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}

.linov-adel__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1a202c;
    line-height: 1.3;
}

/* Méta -------------------------------------------------------------------- */
.linov-adel__meta {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .85rem;
    color: #4a5568;
}

.linov-adel__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.linov-adel__location,
.linov-adel__conditions {
    font-size: .85rem;
    color: #4a5568;
}

.linov-adel__location time {
    font-style: normal;
}

.linov-adel__conditions {
    font-weight: 600;
    color: #2d3748;
}
/* Badge ------------------------------------------------------------------- */
.linov-adel__badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.linov-adel__badge--interim {
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
}

/* Description ------------------------------------------------------------- */
.linov-adel__description {
    font-size: .9rem;
    color: #4a5568;
    line-height: 1.65;
    border-top: 1px solid #edf2f7;
    padding-top: 1rem;
}


/* Lien toggle ------------------------------------------------------------- */
.linov-adel__toggle {
    display: inline-block;
    margin-top: .6rem;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* Vide -------------------------------------------------------------------- */
.linov-adel__empty {
    text-align: center;
    color: #718096;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e0;
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 600px) {
    .linov-adel__item {
        padding: 1rem;
    }

    .linov-adel__title {
        font-size: 1rem;
    }
}