/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */

.testimonials {
    padding: 80px 80px;
    text-align: center;
}

.testimonials__title {
    font-family: var(--font-mada);
    font-size: var(--text-heading-h2, 30px);
    font-weight: 700;
    color: #000;
    margin: 0 0 40px;
}

/* ── Slider wrapper with arrows ──────────────────── */
.testimonials__wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 727px;
    margin-inline: auto;
    .swiper-slide {
        margin-block: auto;
    }
}

.testimonials__swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ── Card ────────────────────────────────────────── */
.testimonials__card {
    position: relative;
    background: #FFF;
    padding: 51px 42px 40px 79px;
    text-align: left;
}

.testimonials__quote-mark {
    position: absolute;
    top: 20px;
    left: 24px;
    color: #BBCEB0;
    font-family: Mada;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.testimonials__quote {
    color: var(--LA-black, #000);
    font-family: Mada;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */

    p {
        margin: 0;
    }
}

.testimonials__author {
    color: var(--LA-black, #000);
    font-family: Mada;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 144.444% */
    margin: 16px 0 0;
}

/* ── Arrows ──────────────────────────────────────── */
.testimonials__prev,
.testimonials__next {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--LA-brown, #675A4C);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;

    &:hover {
        background: #000;
    }

    &.swiper-button-disabled {
        opacity: 0.3;
        pointer-events: none;
    }
}

/* ── Pagination dots ─────────────────────────────── */
.testimonials__pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
         background: #7E9A6F;
       
        opacity: 1;
        border-radius: 50%;
        transition: opacity 0.2s ease, background 0.2s ease;
    }

    .swiper-pagination-bullet-active {
         background: #fff;
        opacity: 1;
    }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 980px) {
    .testimonials {
        padding: var(--spacing-section-md, 80px) var(--spacing-gutter, 20px);
    }

    .testimonials__wrapper {
        gap: 16px;
    }

    .testimonials__card {
        padding: 40px 32px 32px 60px;
    }

    .testimonials__quote-mark {
        font-size: 56px;
        top: 16px;
        left: 18px;
    }

    .testimonials__prev,
    .testimonials__next {
        width: 40px;
        height: 40px;

        svg {
            width: 10px;
            height: 18px;
        }
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: var(--spacing-section-sm, 56px) var(--spacing-gutter, 16px);
    }

    .testimonials__title {
        margin-bottom: 24px;
    }

    .testimonials__wrapper {
        gap: 12px;
    }

    .testimonials__card {
        padding: 36px 20px 28px 48px;
    }

    .testimonials__quote-mark {
        font-size: 44px;
        top: 12px;
        left: 14px;
    }

    .testimonials__quote {
        font-size: var(--text-paragraph, 16px);
        line-height: 1.5;
    }

    .testimonials__author {
        font-size: var(--text-paragraph, 16px);
    }

    .testimonials__prev,
    .testimonials__next {
        width: 36px;
        height: 36px;

        svg {
            width: 8px;
            height: 16px;
        }
    }

    .testimonials__pagination {
        gap: 12px;
        margin-top: 12px;
    }
}
