/* ================================================================
   GALLERY INLINE - example works slider (inside service section)
   ================================================================ */

.jp-gallery-inline {
margin-top: 36px;
}

.jp-gallery-title {
font-size: 22px;
font-weight: 700;
margin-bottom: 18px;
color: #1a1a1a;
}


/* ---- Slider ---- */

.jp-slider {
position: relative;
border-radius: 12px;
overflow: hidden;
background: #fff;
}

.jp-slider-track {
position: relative;
height: 340px;
}

.jp-slider-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.45s ease;
pointer-events: none;
}

.jp-slider-slide.active {
opacity: 1;
z-index: 1;
pointer-events: auto;
}

.jp-slider-slide img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}


/* ---- Prev / Next ---- */

.jp-slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,.45);
color: #fff;
border: none;
border-radius: 50%;
width: 44px;
height: 44px;
font-size: 26px;
line-height: 1;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: background .2s;
}

.jp-slider-btn:hover {
background: rgba(0,0,0,.75);
}

.jp-slider-prev { left: 12px; }
.jp-slider-next { right: 12px; }


/* ---- Dots ---- */

.jp-slider-dots {
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 10;
}

.jp-slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: none;
background: rgba(255,255,255,.5);
cursor: pointer;
padding: 0;
transition: background .2s;
}

.jp-slider-dot.active {
background: #fff;
}


/* TABLET */

@media(max-width: 1000px) {
.jp-slider-track {
height: 280px;
}
}


/* MOBILE */

@media(max-width: 600px) {
.jp-gallery-title {
font-size: 18px;
}

.jp-slider-track {
height: 220px;
}

.jp-slider-btn {
width: 36px;
height: 36px;
font-size: 22px;
}
}
