.gallery-description {
    max-width: 1250px;           
    margin: 1.5rem auto 2rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.8;
    text-align: justify;
    word-break: break-word;      
}

/* =========================
BLOC EDIT GALLERY
========================= */

.existing-media {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-item-existing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.media-item-existing img,
.media-item-existing video {
    border-radius: 8px;
    object-fit: cover;
}

.btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-delete:hover {
    background: #c0392b;
}
