/* ===== SECTION ===== */
.permis-mobile-style {
    padding: 1rem;
}

/* ===== CARD ===== */
.permis-card-mobile {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    max-width: 550px;        /* ← largeur contrôlée */
    margin: 0 auto 20px;     /* ← centrée */
}

/* ===== TEXTE ===== */
.permis-card-content {
    flex: 1;
    padding: 20px 18px;
}

.permis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.permis-badge {
    background: #0d1b2a;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
}

.permis-title {
    font-weight: 700;
    margin: 0;
    color: #0d1b2a;
}

.permis-subtitle {
    color: #5c677d;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* ===== CHECKLIST ===== */
.permis-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.permis-checklist li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.permis-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4b400; /* jaune exact */
    font-weight: 700;
}

/* ===== IMAGE ===== */
.permis-card-image {
    width: 42%;
    position: relative;
}

.permis-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* effet fondu image → blanc */
.permis-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,1) 100%
    );
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .permis-card-mobile {
        flex-direction: column;
    }

    .permis-card-image {
        width: 100%;
        height: 160px;
    }

    .permis-card-image::before {
        background: linear-gradient(
            to top,
            rgba(255,255,255,0) 60%,
            rgba(255,255,255,1) 100%
        );
    }
}


.permis-cta p {
    font-size: 1.05rem;
    color: #1f2a37; /* bleu/gris foncé comme les titres */
}

