.gallery-carousel {
    position: relative;
    max-width: 1550px;
    margin: 0 auto;
    overflow: hidden;
}
.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.gallery-slide {
    flex: 0 0 100%;
    min-width: 0;
}
@media (min-width: 768px) {
    .gallery-slide {
        flex: 0 0 50%;
    }
}
@media (min-width: 1200px) {
    .gallery-slide {
        flex: 0 0 33.333%;
    }
}
.gallery-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
@media (max-width: 767px) {
    .gallery-slide img {
        height: 350px;
    }
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1;
}
.gallery-btn:hover,
.gallery-btn:focus,
.gallery-btn:active {
    background: rgba(255,255,255,0.2);
    outline: none;
}
.gallery-prev {
    left: 0;
}
.gallery-next {
    right: 0;
}
.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.gallery-dot:hover {
    background: rgba(255,255,255,0.5);
}
.gallery-dot.active {
    background: #fff;
}
.e-dbbe930-807475a { text-align: center; }
