.epp-ic-wrap { position: relative; }

/* Caption overlay */
.epp-ic-slide { position: relative; }
.epp-ic-caption {
    position: absolute;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    pointer-events: none;
    z-index: 5;
}
.epp-ic--cap-bottom .epp-ic-caption { bottom: 0; }
.epp-ic--cap-top    .epp-ic-caption { top: 0; }
.epp-ic--cap-center .epp-ic-caption {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    background: rgba(0,0,0,.45);
}

.epp-ic-swiper { padding-bottom: 40px; }

.epp-ic-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform .4s ease;
}
.epp-ic--zoom-yes .epp-ic-slide:hover img { transform: scale(1.05); }
.epp-ic-slide { overflow: hidden; }

/* Arrows */
.epp-ic-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .2s;
    margin-top: -20px;
}
.epp-ic-arrow:hover { background: rgba(0,0,0,.75); }
.epp-ic-arrow--prev { left: 10px; }
.epp-ic-arrow--next { right: 10px; }
.epp-ic-arrow.swiper-button-disabled { opacity: .35; pointer-events: none; }
