/* ============================================================
   CEM Testimonials — Slick Fade Carousel
   ============================================================ */

.cem-testimonials {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* ─── Carousel ───────────────────────────────────────────── */

.cem-testimonials-carousel .slick-slide {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cem-testimonials-carousel .slick-slide.slick-active {
    opacity: 1;
}

/* ─── Slide Layout ───────────────────────────────────────── */

.cem-testimonials-slide {
    display: flex !important;
    gap: 60px;
    align-items: stretch;
    outline: none;
}

/* ─── Image Column ───────────────────────────────────────── */

.cem-testimonials-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
}

.cem-testimonials-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 450px;
}

.cem-testimonials-no-image {
    width: 100%;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.05);
}

/* ─── Content Column ─────────────────────────────────────── */

.cem-testimonials-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Title */
.cem-testimonials-title {
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
}

/* Description */
.cem-testimonials-desc {
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.16px;
    margin-bottom: 16px;
}

/* Author divider + line */
.cem-testimonials-author-divider {
    width: 100%;
    height: 1px;
    background: currentColor;
    margin-bottom: 24px;
}

.cem-testimonials-author-line span {
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    position: relative;
}

.cem-testimonials-author-text::before {
    content: '\2013\00a0';
}

/* ─── Navigation ─────────────────────────────────────────── */

.cem-testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

/* Arrows */
.cem-testimonials-arrows {
    display: flex;
    gap: 16px;
}

.cem-testimonials-prev,
.cem-testimonials-next {
    border-radius: 4px;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 12px 20px;
}

.cem-testimonials-prev {}

.cem-testimonials-next {
    color: #fff;
}

.cem-testimonials-prev:hover {
    background: #1a1a1a;
    color: #fff;
}

.cem-testimonials-next:hover {
    opacity: 0.85;
}

.cem-testimonials-prev svg,
.cem-testimonials-next svg {
    flex-shrink: 0;
}

/* Counter */
.cem-testimonials-counter * {
    font-family: Poppins !important;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 40px !important;
    letter-spacing: -0.64px !important;
    text-transform: uppercase !important;
}


/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .cem-testimonials {
        padding: 60px 40px;
    }

    .cem-testimonials-slide {
        gap: 40px;
    }

    .cem-testimonials-title {
        font-size: 24px;
    }

    .cem-testimonials-quote-mark {
        font-size: 90px;
    }

    .cem-testimonials-current {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .cem-testimonials {
        padding: 40px 24px;
    }

    .cem-testimonials-slide {
        flex-direction: column;
        gap: 30px;
    }

    .cem-testimonials-image-col {
        flex: none;
        max-width: 100%;
    }

    .cem-testimonials-img {
        min-height: 280px;
        max-height: 350px;
    }

    .cem-testimonials-content-col {
        padding: 0;
    }

    .cem-testimonials-title {
        font-size: 22px;
    }

    .cem-testimonials-desc {
        font-size: 15px;
    }

    .cem-testimonials-nav {
        margin-top: 30px;
    }

    .cem-testimonials-quote-mark {
        font-size: 72px;
    }

    .cem-testimonials-current {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .cem-testimonials {
        padding: 32px 16px;
    }

    .cem-testimonials-title {
        font-size: 18px;
    }

    .cem-testimonials-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cem-testimonials-quote-mark {
        font-size: 60px;
    }

    .cem-testimonials-img {
        min-height: 220px;
    }

    .cem-testimonials-prev,
    .cem-testimonials-next {
        width: 44px;
        height: 44px;
    }

    .cem-testimonials-prev svg,
    .cem-testimonials-next svg {
        width: 18px;
        height: 18px;
    }

    .cem-testimonials-current {
        font-size: 30px;
    }
}