/* SCF Services Media Gallery - 034fff5c */

.smg-034fff5c-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.smg-034fff5c-container.smg-034fff5c-thumbs-right {
    flex-direction: row-reverse;
}

/* Thumbnails strip */
.smg-034fff5c-thumbs {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2;
}

.smg-034fff5c-thumbs::-webkit-scrollbar {
    display: none;
}

.smg-034fff5c-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    box-sizing: border-box;
}

.smg-034fff5c-thumb:focus-visible {
    outline: 2px solid #00e0d0;
    outline-offset: 2px;
}

.smg-034fff5c-thumb.smg-034fff5c-active {
    opacity: 1;
    border-color: #00e0d0;
}

.smg-034fff5c-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.smg-034fff5c-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
}

/* Main image area */
.smg-034fff5c-main-wrap {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 3/4;
}

.smg-034fff5c-main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0% 0% 0% 0%);
}

.smg-034fff5c-main-slide:not(.smg-034fff5c-slide-active) {
    clip-path: inset(100% 0% 0% 0%);
    pointer-events: none;
}

.smg-034fff5c-main-slide.smg-034fff5c-slide-active {
    clip-path: inset(0% 0% 0% 0%);
    z-index: 1;
}

.smg-034fff5c-main-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block !important;
}

.smg-034fff5c-main-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .smg-034fff5c-container {
        flex-direction: column-reverse;
    }

    .smg-034fff5c-container.smg-034fff5c-thumbs-right {
        flex-direction: column-reverse;
    }

    .smg-034fff5c-thumbs {
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
    }

    .smg-034fff5c-main-wrap {
        width: 100%;
        aspect-ratio: 3/4;
    }
}
