.custom-gallery {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.custom-gallery-main {
    position: relative;
}

.custom-gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 8px;
    background: #f0f0f0;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
}

#prev-image { left: 10px; }
#next-image { right: 10px; }

#custom-gallery-title {
    font-size: 18px;
    text-align: left;
    font-weight: 500;
    margin: 5px 0;
}

#custom-gallery-description {
    font-size: 16px;
    text-align: left;
    margin: 5px 0;
}

#custom-gallery-credit {
    font-size: 14px;
    text-align: left;
    /* font-style: italic; */
    margin: 5px 0;
}

#custom-gallery-thumbnails-wrapper {
    max-width: 100%;
    margin-top: 10px;
    overflow-x: auto;
}

.custom-gallery-thumbnails {
    display: flex;
    gap: 5px;
}

.custom-gallery-thumb {
    width: 80px; 
    height: 45px;  /* Ajusté pour un ratio 16:9 */
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.custom-gallery-thumb:hover,
.custom-gallery-thumb.active {
    border: 2px solid #ff3554;
}