/* =========================================================
   appareil.css — version nettoyée
   ========================================================= */

/* ---------------------------------------------------------
   Différences / validations
--------------------------------------------------------- */
.diff-ajout {
    background: #fff3a0;
    padding: 1px 3px;
    border-radius: 3px;
}

.diff-suppr {
    text-decoration: line-through;
    color: #888;
    background: #f1f1f1;
    padding: 1px 3px;
    border-radius: 3px;
}

.bouton_admin {
    color: red;
}

/* ---------------------------------------------------------
   Bloc caractéristiques / identification
--------------------------------------------------------- */
.spec-block {
    position: relative;
}

.spec-block dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 28px;
    row-gap: 8px;
    align-items: baseline;
}

.spec-block dt {
    grid-column: 1;
}

.spec-block dd {
    grid-column: 2;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0;
}

.spec-block dd .texte-multiligne {
    display: inline;
}

.spec-block dd .valeur-suffixe {
    display: inline;
    white-space: nowrap;
}

.cartouche-ref-gl {
    position: absolute;
    top: 10px;
    right: 12px;

    padding: 4px 9px;
    border-radius: 999px;

    background: rgba(97, 75, 75, 0.1);
    border: 1px solid rgba(24, 24, 24, 0.25);
    color: #734701;

    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;

    cursor: pointer;
    transition: opacity 0.15s ease;
}

.cartouche-ref-gl:hover {
    opacity: 0.85;
}

.cartouche-ref-gl.copied {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}

.groupe-affichage {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: baseline;
}

.groupe-affichage-item {
    white-space: nowrap;
}

.groupe-affichage-item strong {
    font-weight: normal;
    color: #6a4a24;
}

/* ---------------------------------------------------------
   Galerie photos
--------------------------------------------------------- */
.main-photo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: #fff;
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
}

.main-photo {
    display: block;
    max-width: 100%;
    height: auto;
}

.legende-photo-principale {
    width: 100%;
    margin-top: 10px;

    color: #000;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
}

.legende-photo-principale div {
    margin-bottom: 2px;
}

.thumb-action-button {
    width: 86px;
    min-height: 64px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;

    text-align: center;
    text-decoration: none;
    font-size: 0.78rem;
    line-height: 1.15;

    border: 1px solid #d8c7ae;
    border-radius: 8px;
    background: #f5efe6;
    color: #2b2118;
}

.thumb-action-button:hover {
    background: #eadcc9;
    color: #000;
}

.thumb-action-button i {
    font-size: 1rem;
}

/* ---------------------------------------------------------
   Sidebar : actions admin + recherche
--------------------------------------------------------- */
.device-sidebar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 22px;
}

.edit-device-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(212,154,42,0.45);

    background: linear-gradient(180deg, rgba(70,40,12,0.92), rgba(38,18,5,0.96));
    color: #f0c56a;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.05);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.edit-device-button i {
    font-size: 1rem;
    opacity: 0.95;
}

.edit-device-button:hover {
    transform: translateY(-2px);
    color: #ffd98a;
    border-color: rgba(240,197,106,0.85);
    background: linear-gradient(180deg, rgba(88,48,12,0.96), rgba(50,24,6,0.98));
    box-shadow:
        0 14px 34px rgba(0,0,0,0.42),
        0 0 18px rgba(212,154,42,0.22);
}

.edit-device-button:active {
    transform: translateY(0);
}

.mini-search.search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-search .search-input-wrap {
    width: 0;
    overflow: hidden;
    transition: width 0.2s ease;
}

.mini-search:focus-within .search-input-wrap,
.mini-search:hover .search-input-wrap {
    width: 210px;
}

.mini-search .search-input {
    width: 210px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212,154,42,0.45);
}

.mini-search-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,154,42,0.45);
    background: rgba(25,10,0,0.5);
    color: #d49a2a;
    cursor: pointer;
}

.mini-search .autocomplete-results {
    position: absolute;
    top: 52px;
    right: 0;
    width: 280px;
    z-index: 100;
}

.autocomplete-item.active {
    background: #f1dfbd;
    font-weight: bold;
}

/* ---------------------------------------------------------
   Documents
--------------------------------------------------------- */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document-item {
    display: flex;
    gap: 12px;
    align-items: center;

    padding: 8px;
    border-radius: 8px;

    background: rgba(255,255,255,0.05);
    color: inherit;
    text-decoration: none;

    transition: background 0.15s ease;
}

.document-item:hover {
    background: rgba(255,255,255,0.10);
}

.document-thumb {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.document-title {
    font-weight: bold;
}

.document-meta {
    margin-top: 3px;
    gap: 8px;
    font-size: 13px;
    opacity: 0.75;
}

.document-attente {
    display: inline-flex;
    margin-left: .35rem;
    vertical-align: middle;
    font-size: .95em;
    opacity: .85;
}

.document-ajout-item {
    opacity: .85;
    border-top: 1px dashed rgba(0,0,0,.18);
    padding-top: .8rem;
    margin-top: .4rem;
}

.document-ajout-item:hover {
    opacity: 1;
}

.document-ajout-item .document-thumb {
    object-fit: contain;
    background: #f3efe7;
}

/* ---------------------------------------------------------
   Liens externes
--------------------------------------------------------- */
.liens-externes-block {
    margin-top: 0;
}

.liens-externes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.lien-externe-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px;
    border-radius: 8px;

    background: rgba(255,255,255,0.05);
    color: inherit;
}

.lien-externe-item:hover {
    background: rgba(255,255,255,0.10);
}

.lien-externe-main {
    flex: 1;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: inherit;
    text-decoration: none;
}

.lien-externe-admin {
    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #b26a00;
    background: #f6efe4;
    border: 1px solid #e2cfad;
    text-decoration: none;
    opacity: .85;
}

.lien-externe-admin:hover {
    opacity: 1;
    color: #8d4d00;
    background: #eadcc9;
}

/* ---------------------------------------------------------
   Appel ajout photo
--------------------------------------------------------- */
.appel-ajout-photo {
    max-width: 720px;
    margin: 18px auto 30px;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px;
    border-radius: 14px;
    border: 1px solid #d4b17a;

    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    text-decoration: none;

    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease;
}

.appel-ajout-photo:hover {
    transform: translateY(-1px);
    border-color: #f0c27b;
}

.appel-ajout-photo-image img {
    width: 180px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.appel-ajout-photo-texte {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appel-ajout-photo-texte strong {
    font-size: 1.25rem;
    color: #fff;
}

.appel-ajout-photo-texte span {
    color: #e7d4b1;
    line-height: 1.4;
}

.appel-ajout-photo-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    margin-top: 4px;
    padding: 10px 16px;
    border-radius: 999px;

    background: #c9962d;
    color: #1f1408;
    font-weight: 600;
}

/* ---------------------------------------------------------
   Marque
--------------------------------------------------------- */
.side-card-marque .marque-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.marque-logo-box {
    width: 180px;
    min-height: 110px;
    padding: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);

    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,241,235,0.96));
    box-shadow:
        0 6px 18px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.65);

    transition: all .18s ease;
}

.marque-logo {
    display: block;
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.drapeau {
    display: inline;
}

/* ---------------------------------------------------------
   Signalement
--------------------------------------------------------- */
.bloc-lien-signalement {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lien-signalement {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #b26a00;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;

    transition: color 0.15s ease;
}

.lien-signalement:hover {
    color: #d98200;
    text-decoration: underline;
}

.bloc-signalement {
    width: 100%;
    max-width: 680px;
    margin-top: 14px;
    padding: 16px;

    background: #fffdf8;
    border: 1px solid #ecd8b2;
    border-radius: 12px;

    text-align: left;
}

.signalement-textarea {
    width: 100%;
    min-height: 130px;

    box-sizing: border-box;
    padding: 12px;

    border: 1px solid #d8d8d8;
    border-radius: 10px;

    font-family: inherit;
    font-size: 0.96rem;
    resize: vertical;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.signalement-textarea:focus,
#signalement-email:focus {
    outline: none;
    border-color: #d08a1f;
    box-shadow: 0 0 0 3px rgba(208,138,31,0.15);
}

#signalement-email {
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    font-size: 0.95rem;
}

.signalement-aide,
.signalement-identite {
    margin-bottom: 12px;
    color: #6b6255;
    font-size: 0.92rem;
    line-height: 1.45;
}

.signalement-identite strong {
    color: #3f3527;
}

.btn-signalement {
    padding: 10px 18px;

    background: #d97706;
    color: white;
    border: 0;
    border-radius: 8px;

    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;

    transition:
        background 0.15s ease,
        transform 0.05s ease;
}

.btn-signalement:hover {
    background: #c56d05;
}

.btn-signalement:active {
    transform: translateY(1px);
}

.popup-signalement {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99999;

    transform: translate(-50%, -50%);
    opacity: 0;

    padding: 18px 26px;
    border-radius: 12px;

    background: #198754;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);

    transition: opacity 0.25s ease;
}

.popup-signalement.visible {
    opacity: 1;
}

/* ---------------------------------------------------------
   Photoswipe
--------------------------------------------------------- */
.pswp__custom-caption {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 10000;

    transform: translateX(-50%);

    width: 100%;
    max-width: 900px;
    min-height: 110px;
    box-sizing: border-box;
    padding: 12px 18px;

    background: rgba(0, 0, 0, 0.92);
    color: #fff;

    font-size: 14px;
    line-height: 1.35;
    text-align: left;
}

.pswp-caption-main {
    margin-bottom: 3px;
    color: #ffd36a;
    font-weight: bold;
}

.pswp-caption-title {
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: bold;
}

.pswp-caption-meta {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.pswp-caption-tools {
    margin-top: 8px;
}

.pswp--zoomed-in .pswp__custom-caption {
    display: none;
}

/* ---------------------------------------------------------
   Correctifs formulaires
--------------------------------------------------------- */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* ---------------------------------------------------------
   Responsive smartphone
--------------------------------------------------------- */
@media (max-width: 768px) {

    body,
    main,
    .device-page,
    .container,
    .device-content,
    .device-layout,
    .spec-grid,
    .spec-block {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container.device-content,
    .container.device-layout {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .device-layout {
        display: block !important;
        padding: 18px 0 30px;
    }

    .device-content,
    .device-layout > .device-content {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .device-gallery {
    width: auto;    
        box-sizing: border-box;
        padding: 10px;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .main-photo-link {
        width: 100%;
        min-width: 0;
    }

    .photo-thumbs-vertical {
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .photo-thumbs-vertical a,
    .thumb-action-button {
        width: 82px !important;
        height: 82px !important;
        min-height: 82px;
    }

    .spec-block {
        padding: 0 18px 18px;
    }

    .spec-block dl {
        display: block !important;
    }

    .spec-block dt {
        margin-top: 12px;
        font-weight: 700;
    }

    .spec-block dd {
        display: block !important;
        margin: 2px 0 8px;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .texte-multiligne,
    .valeur-suffixe,
    .groupe-affichage-item {
        white-space: normal !important;
    }

    .cartouche-ref-gl {
        max-width: calc(100% - 24px);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        overflow: hidden;
    }

    .cartouche-ref-gl span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-copy-ref {
        flex: 0 0 auto;
    }

    .device-sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: block;
    }

    .device-sidebar-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 12px;
        margin-bottom: 22px;
    }

    .edit-device-button {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .mini-search.search-form {
        justify-content: center;
    }

    .side-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 22px;
        overflow: hidden;
        overflow-wrap: anywhere;
    }

    .side-card p,
    .side-card a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}
.device-sidebar-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 22px;
}

.edit-device-button {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.mini-search.search-form {
    justify-content: center;
}
.type-cartouche {
    display: inline-block;
    margin: 2px 4px 2px 0;
    padding: 3px 10px;
    border-radius: 999px;
    background: #eef3ff;
    border: 1px solid #c7d5f5;
    color: #16306b;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   Correspondances
--------------------------------------------------------- */

.corres-card {
    margin-top: 18px;
    padding: 12px 16px;

    background: linear-gradient(
        180deg,
        rgba(212,154,42,0.08),
        rgba(212,154,42,0.03)
    );

    border: 1px solid rgba(212,154,42,0.25);
    border-left: 4px solid #d49a2a;

    border-radius: 10px;
}

.corres-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    color: #734701;
    font-weight: 700;
    font-size: 1rem;
}

.corres-title i {
    color: #d49a2a;
}

.corres-line {
    margin: 5px 0;
    line-height: 1.35;
}

.corres-line a {
    color: #f0c56a;
    font-weight: 700;
    text-decoration: none;
}

.corres-line a:hover {
    color: #ffd98a;
    text-decoration: underline;
}

.corres-type {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;

    background: #d6a117;
    color: #111;

    font-size: 0.8rem;
    font-weight: 700;
}

.corres-comment {
    color: #777;
    font-style: italic;
}

/* INTROUVABLE */
.erreur-fiche {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.erreur-fiche-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto 25px auto;
}

.erreur-fiche h1 {
    margin-bottom: 15px;
    color: #8c5400;
}

.erreur-fiche p {
    color: #555;
    margin-bottom: 10px;
}

.erreur-fiche-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.erreur-fiche-visuel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.erreur-fiche-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.erreur-fiche-overlay {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

.erreur-fiche-overlay h1 {
    color: #8c5400;
    font-size: 2.4rem;
    margin-bottom: 15px;
}
.erreur-fiche-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-erreur-fiche {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: #b56b00;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.btn-erreur-fiche:hover {
    background: #d98200;
    color: #fff;
}


/* CORRESPONDANCES MODELES  */

.admin-page-corres {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

.admin-page-corres .spec-block {
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.4rem;
    margin: 1.2rem 0;
    color: #f5f0e6;
}

.admin-page-corres h1,
.admin-page-corres h2,
.admin-page-corres p,
.admin-page-corres label {
    color: #f5f0e6;
}

.admin-corres-form {
    display: grid;
    gap: 1rem;
}

.admin-corres-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
}

.admin-corres-form input[type="text"] {
    width: 100%;
    max-width: 520px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.corres-checkboxes {
    display: grid;
    gap: 0.45rem;
}

.corres-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 500;
}

.btn-enregistrer {
    width: auto;
    justify-self: start;
    padding: 0.75rem 1.3rem;
    border: 0;
    border-radius: 999px;
    background: #d6a117;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}
.corres-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.corres-delete {
    color: #c62828;
    font-weight: 700;
    text-decoration: none;
    margin-left: auto;
}

.corres-delete:hover {
    color: #8b0000;
}

.corres-admin-ajout {
    margin-top: 0.7rem;
}

.corres-admin-ajout a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: #1f5f8b;
}

.admin-corres-form {
    display: grid;
    gap: 1rem;
}

.admin-corres-form input[type="text"] {
    width: 100%;
    max-width: 520px;
}

.corres-checkboxes {
    display: grid;
    gap: 0.35rem;
}
.admin-source-item {
    background: #fff;
    border: 1px solid #e2c27a;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.admin-source-label {
    color: #6b3f00;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.admin-source-label code {
    color: #666;
    font-weight: normal;
    background: #f3f3f3;
    padding: 1px 4px;
    border-radius: 4px;
}

.admin-source-value {
    color: #222;
    font-size: 1.15rem;
    margin-top: 4px;
    cursor: copy;
}
.admin-source-col {
    color: #888;
    font-size: 0.85em;
    font-weight: normal;
}
.admin-source-block h2,
.admin-source-block h2 i {
    color: #7a4b00;
}
.admin-source-block {
    background: #fff8e8;
    border: 2px solid #d9b15c;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 24px;
}
.admin-source-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.admin-source-bool {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-size: 1.05rem;
}

.admin-source-bool input {
    transform: scale(1.15);
}
.admin-source-item.bool {
    padding: 8px 12px;
}

.admin-source-item.bool .admin-source-value {
    margin-top: 2px;
}
.admin-badge-bool {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.admin-badge-bool.oui {
    background: #dff5df;
    color: #196b24;
}

.admin-badge-bool.non {
    background: #f2f2f2;
    color: #666;
}
.admin-source-row {
    padding: 8px 0;
    border-top: 1px solid #e5d3a5;
}

.admin-source-row:first-child {
    border-top: none;
}

.admin-source-label {
    font-weight: 700;
    color: #7a4b00;
    margin-bottom: 4px;
}

.admin-source-value {
    color: #222;
}

.admin-badge {
    display: inline-block;
    margin-right: 6px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .9rem;
}

.admin-badge.oui {
    background: #dff5df;
    color: #196b24;
}

.admin-badge.non {
    background: #ececec;
    color: #666;
}
.versions-fiche{
    margin-top:30px;
    padding:16px 20px;
    background:#fffaf0;
    border:1px solid #d6c7a4;
    border-radius:12px;
}

.versions-fiche h3{
    margin:0 0 12px 0;
    font-size:1rem;
}

.versions-fiche ul{
    margin:0;
    padding-left:18px;
}

.versions-fiche li{
    margin-bottom:10px;
    line-height:1.5;
}

.versions-fiche small{
    color:#6b7280;
}
.versions-fiche{
    max-width: 760px;
    margin: 30px auto 40px;
    padding: 16px 20px;
    background: #fffaf0;
    border: 1px solid #d6c7a4;
    border-radius: 12px;
    color: #3f3527;
}

.versions-fiche h3{
    color: #7a4b00;
}