/* ============================
   REALISATIONS GALLERY STYLING
============================ */

.rg-realisaties-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.rg-realisatie-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 40px;
}

.rg-title {
    margin-bottom: 16px;
    font-size: 22px;
}

.rg-main-image {
    max-height: 520px;
    overflow: visible; 
}

.rg-main-image img {
    width: 100%;
    height: auto;              /* ✅ geen vaste hoogte meer */
    max-height: 520px;
    object-fit: contain;       /* ✅ VOLLEDIGE AFBEELDING ZICHTBAAR */
    background: #000;          /* ✅ zwarte balken indien nodig */
    border-radius: 0;
    display: block;
}

.rg-thumbs-wrapper {
    margin-top: 12px;
    overflow-x: auto;
}

.rg-thumbs-slider {
    display: flex;
    gap: 10px;
}

.rg-thumb {
    width: 110px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 0;
    opacity: 0.5;
    transition: 0.2s;
    border: 1px solid #ddd;
}

.rg-thumb.active,
.rg-thumb:hover {
    opacity: 1;
    border-color: #000;
}
