/* ============================================================
   ZEM Landing Testimonials Widget
   ============================================================ */

.elementor-widget-zem_landing_testimonials {
    width: 100%;
    height: auto;
}

/* ── Slider container ────────────────────────────────────── */
.zem-lt {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: visible;
}

/* ── Each slide ──────────────────────────────────────────── */
.zem-lt__slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    cursor: grab;
}

.zem-lt__slide:active {
    cursor: grabbing;
}

.zem-lt__quote {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #1a1a1a;
    text-align: left;
}

.zem-lt__quote::before {
    content: '\201C';
}

.zem-lt__quote::after {
    content: '\201D';
}

.zem-lt__name {
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #1a1a1a;
    text-align: left;
}

/* ── Pagination dots ─────────────────────────────────────── */
/* Higher specificity + !important needed: Swiper's own bundled CSS
   (.swiper-pagination-bullets.swiper-pagination-horizontal) sets
   position: absolute with a fixed "bottom", which otherwise wins over
   a single-class rule and makes the dots overlap the slide content
   whenever a slide is taller than the others. */
.zem-lt__pagination.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
}

.zem-lt__pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 50%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #F4F3F2;
    opacity: 1;
    transition: background 0.3s ease;
}

.zem-lt__pagination .swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0.375);
}
