/* Modify Portfolio Slider — style.css */

.mps-slider {
    position: relative;
    width: 100%;
    /* height comes from .mps-swiper which fills from .mps-slide height control */
}

.mps-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Default slide height — overridden by Elementor slider control */
.mps-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* ── Image — real <img> fullscreen cover ── */
.mps-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mps-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ── Dark overlay ── */
.mps-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 35%;
    pointer-events: none;
}

/* ── Content ── */
.mps-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    z-index: 2;
    color: #fff;
}

.mps-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.mps-terms a {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: none;
    opacity: .75;
    transition: opacity .2s;
}

.mps-terms a:hover { opacity: 1; }

.mps-title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.mps-title a {
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}

.mps-title a:hover { opacity: .8; }

/* ── Arrows ── */
.mps-btn-prev,
.mps-btn-next {
    color: #fff;
    font-size: 30px;
    z-index: 3;
    transition: opacity .2s;
}

.mps-btn-prev:hover,
.mps-btn-next:hover { opacity: .7; }

.mps-btn-prev::after,
.mps-btn-next::after {
    font-size: inherit;
}

/* ── Pagination dots ── */
.mps-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.5);
    opacity: 1;
    transition: background .3s, transform .3s;
}

.mps-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mps-content {
        left: 24px;
        right: 24px;
        bottom: 40px;
    }
}

