/* ============================================================
   Widget Formations — Feuille de style
   Couleur principale par défaut : #ff7007
   ============================================================ */

.wf-liste {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ── Ligne / Item ─────────────────────────────────────────── */
.wf-item {
    display: flex;
    align-items: center;
    gap: 16px;

    /* Bordure gauche orange */
    border-left: 4px solid #ff7007;

    /* Fond orange à 10 % */
    background-color: rgba(255, 255, 255, 1);

    /* Fallback pour navigateurs modernes */
    /* background-color: color-mix(in srgb, #ff7007 10%, transparent); */

    border-radius: 4px;
    padding: 7px 15px;

    /* Espacement entre items géré via le contrôle Elementor,
       valeur par défaut ici pour la preview hors Elementor */
    margin-top: 10px;

    transition: background-color 0.2s ease;
}

.wf-item:first-child {
    margin-top: 0;
}

/* ── Titre ────────────────────────────────────────────────── */
.wf-titre {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff7007;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* ── Durée + Prix ─────────────────────────────────────────── */
.wf-meta {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

.wf-sep {
    font-weight: 400;
    opacity: 0.6;
}

/* ── Bouton Détails ───────────────────────────────────────── */
.wf-btn {
    flex: 0 0 auto;
    display: inline-block;
    padding: 5px 15px;
    border: 3px solid #ff7007;
    border-radius: 16px;
    color: #ff7007!important;
    background-color: transparent;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.wf-btn:hover,
.wf-btn:focus {
    background-color: #ff7007;
    color: #ffffff !important;
    text-decoration: none;
    outline: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .wf-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 14px;
    }

    .wf-titre {
        flex-basis: 100%;
        font-size: 13px;
    }

    .wf-meta {
        font-size: 13px;
    }

    .wf-btn {
        margin-left: auto;
    }
}
