/**
 * Premium Testimonials Page — scoped under .testimonials-page only
 * Primary: #5786C7
 */

/* ── Design tokens ── */
.testimonials-page {
    --tp-primary: #5786C7;
    --tp-primary-dark: #4569a8;
    --tp-primary-light: #DCE9FA;
    --tp-primary-soft: #EEF4FC;
    --tp-bg: #F8FAFD;
    --tp-white: #FFFFFF;
    --tp-text: #1F2937;
    --tp-muted: #64748B;
    --tp-radius: 24px;
    --tp-radius-sm: 18px;
    --tp-shadow: 0 12px 40px rgba(87, 134, 199, 0.12);
    --tp-shadow-hover: 0 18px 48px rgba(87, 134, 199, 0.18);
    --tp-container: min(1200px, calc(100% - 2rem));
    position: relative;
    overflow-x: clip;
    background: var(--tp-bg);
    color: var(--tp-text);
}

body.testimonials-page .premium-pupil-bg,
body.testimonials-page .premium-home-bg-accent,
body.testimonials-page .bubbles-container {
    opacity: 0.35;
}

body.testimonials-page .premium-montessori-float-layer {
    opacity: 0.2;
}

/* ── Shared container ── */
.testimonials-page .testimonials-hero__container,
.testimonials-page .testimonials-trust__container,
.testimonials-page .testimonials-featured__container,
.testimonials-page .testimonials-filters__container,
.testimonials-page .testimonials-grid-section__container,
.testimonials-page .testimonials-cta__container {
    width: var(--tp-container);
    max-width: 100%;
    margin-inline: auto;
}

/* ── Scroll reveal ── */
.testimonials-page .testimonials-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-page .testimonials-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-page .testimonials-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.testimonials-page .testimonials-hero {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(180deg, var(--tp-white) 0%, var(--tp-bg) 100%);
}

.testimonials-page .testimonials-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.testimonials-page .testimonials-hero__content {
    text-align: right;
}

.testimonials-page .testimonials-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--tp-primary);
    margin: 0 0 1rem;
}

.testimonials-page .testimonials-hero__lead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.85;
    color: var(--tp-muted);
    margin: 0 0 1.75rem;
    max-width: 36em;
    margin-inline-start: auto;
}

.testimonials-page .testimonials-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 0;
    padding-top: 0.5rem;
}

.testimonials-page .testimonials-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(87, 134, 199, 0.25);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.testimonials-page .testimonials-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.testimonials-page .testimonials-hero__stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.testimonials-page .testimonials-hero__stat-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testimonials-page .testimonials-hero__stat-number {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--tp-text);
    line-height: 1.2;
}

.testimonials-page .testimonials-hero__stat-label {
    font-size: 0.8rem;
    color: var(--tp-muted);
}

/* Hero visual / blob */
.testimonials-page .testimonials-hero__visual {
    position: relative;
    min-height: clamp(320px, 42vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-page .testimonials-hero__blob-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 0.95;
    margin-inline: auto;
}

.testimonials-page .testimonials-hero__blob {
    position: absolute;
    inset: 5% 0 8% 5%;
    background:
        radial-gradient(ellipse 80% 70% at 30% 35%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
        linear-gradient(145deg, #6a96d4 0%, var(--tp-primary) 42%, #3d6aab 100%);
    border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%;
    box-shadow:
        0 24px 60px rgba(87, 134, 199, 0.35),
        inset 0 -20px 40px rgba(0, 0, 0, 0.06);
    animation: tpBlobDrift 9s ease-in-out infinite alternate;
}

@keyframes tpBlobDrift {
    0%   { border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%; transform: translate3d(0, 0, 0) scale(1); }
    100% { border-radius: 48% 52% 55% 45% / 45% 55% 42% 58%; transform: translate3d(-6px, 8px, 0) scale(1.02); }
}

.testimonials-page .testimonials-hero__deco {
    position: absolute;
    pointer-events: none;
}

.testimonials-page .testimonials-hero__deco--dots {
    width: 80px;
    height: 80px;
    top: 4%;
    left: 8%;
    background-image: radial-gradient(circle, var(--tp-primary) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.35;
}

.testimonials-page .testimonials-hero__deco--ring {
    width: 48px;
    height: 48px;
    top: 12%;
    right: 6%;
    border: 2px solid rgba(87, 134, 199, 0.35);
    border-radius: 50%;
}

.testimonials-page .testimonials-hero__deco--triangle {
    width: 0;
    height: 0;
    bottom: 18%;
    left: 4%;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid rgba(87, 134, 199, 0.2);
}

/* Floating mini cards */
.testimonials-page .testimonials-hero__float-card {
    position: absolute;
    z-index: 3;
    background: var(--tp-white);
    border-radius: var(--tp-radius-sm);
    padding: 0.85rem 1rem;
    box-shadow: var(--tp-shadow);
    border: 1px solid rgba(87, 134, 199, 0.08);
    max-width: 220px;
    animation: tpFloatCard 6s ease-in-out infinite;
}

.testimonials-page .testimonials-hero__float-card--1 {
    top: 8%;
    right: 2%;
    animation-delay: 0s;
}

.testimonials-page .testimonials-hero__float-card--2 {
    top: 38%;
    left: -4%;
    animation-delay: -2s;
}

.testimonials-page .testimonials-hero__float-card--3 {
    bottom: 14%;
    right: 8%;
    animation-delay: -4s;
}

@keyframes tpFloatCard {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(0, -10px, 0); }
}

.testimonials-page .testimonials-hero__float-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.testimonials-page .testimonials-hero__float-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--tp-primary-soft);
}

.testimonials-page .testimonials-hero__float-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonials-page .testimonials-hero__float-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--tp-text);
    line-height: 1.3;
}

.testimonials-page .testimonials-hero__float-role {
    display: block;
    font-size: 0.7rem;
    color: var(--tp-muted);
}

.testimonials-page .testimonials-hero__float-quote {
    margin-inline-start: auto;
    color: var(--tp-primary-light);
    font-size: 1rem;
}

.testimonials-page .testimonials-hero__float-stars {
    color: #f5b942;
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
}

.testimonials-page .testimonials-hero__float-text {
    font-size: 0.72rem;
    line-height: 1.55;
    color: var(--tp-muted);
    margin: 0;
}

@media (max-width: 991.98px) {
    .testimonials-page .testimonials-hero__grid {
        grid-template-columns: 1fr;
    }

    .testimonials-page .testimonials-hero__visual {
        order: -1;
        min-height: 280px;
    }

    .testimonials-page .testimonials-hero__float-card {
        max-width: 180px;
        padding: 0.65rem 0.75rem;
    }

    .testimonials-page .testimonials-hero__float-card--2 {
        left: 0;
    }
}

@media (max-width: 575.98px) {
    .testimonials-page .testimonials-hero__stat-divider {
        display: none;
    }

    .testimonials-page .testimonials-hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-page .testimonials-hero__float-card--3 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-page .testimonials-hero__blob,
    .testimonials-page .testimonials-hero__float-card {
        animation: none !important;
    }
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.testimonials-page .testimonials-trust {
    padding: clamp(1.25rem, 3vw, 2rem) 0;
    background: var(--tp-white);
    border-block: 1px solid rgba(87, 134, 199, 0.08);
}

.testimonials-page .testimonials-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.testimonials-page .testimonials-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-align: right;
}

.testimonials-page .testimonials-trust__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.testimonials-page .testimonials-trust__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tp-text);
    margin: 0 0 0.35rem;
}

.testimonials-page .testimonials-trust__hint {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--tp-muted);
    margin: 0;
}

@media (max-width: 991.98px) {
    .testimonials-page .testimonials-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .testimonials-page .testimonials-trust__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   FEATURED CAROUSEL
══════════════════════════════════════ */
.testimonials-page .testimonials-featured {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    background: var(--tp-bg);
}

.testimonials-page .testimonials-featured__header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.testimonials-page .testimonials-featured__title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--tp-text);
    margin: 0;
}

.testimonials-page .testimonials-featured__slider-wrap {
    position: relative;
    padding-inline: clamp(0px, 2vw, 48px);
}

.testimonials-page .testimonials-featured-swiper {
    overflow: hidden;
    padding-bottom: 2.5rem;
}

.testimonials-page .testimonials-featured-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-page .testimonials-featured__nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--tp-primary);
    color: var(--tp-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(87, 134, 199, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonials-page .testimonials-featured__nav:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: var(--tp-shadow-hover);
}

.testimonials-page .testimonials-featured__nav--prev {
    right: 0;
}

.testimonials-page .testimonials-featured__nav--next {
    left: 0;
}

.testimonials-page .testimonials-featured-pagination {
    bottom: 0 !important;
}

.testimonials-page .testimonials-featured-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(87, 134, 199, 0.3);
    opacity: 1;
}

.testimonials-page .testimonials-featured-pagination .swiper-pagination-bullet-active {
    background: var(--tp-primary);
    width: 24px;
    border-radius: 999px;
}

@media (max-width: 767.98px) {
    .testimonials-page .testimonials-featured__nav {
        display: none;
    }
}

/* ══════════════════════════════════════
   FILTER CHIPS
══════════════════════════════════════ */
.testimonials-page .testimonials-filters {
    padding: 0 0 clamp(1.25rem, 3vw, 2rem);
    background: var(--tp-bg);
}

.testimonials-page .testimonials-filters__scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    padding-bottom: 0.25rem;
}

@media (max-width: 767.98px) {
    .testimonials-page .testimonials-filters__scroll {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-inline: 0.25rem;
        margin-inline: -0.25rem;
    }

    .testimonials-page .testimonials-filters__scroll::-webkit-scrollbar {
        display: none;
    }
}

.testimonials-page .testimonials-filter-chip {
    min-height: 44px;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1.5px solid var(--tp-primary);
    background: var(--tp-white);
    color: var(--tp-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.testimonials-page .testimonials-filter-chip:hover {
    box-shadow: 0 6px 20px rgba(87, 134, 199, 0.15);
}

.testimonials-page .testimonials-filter-chip.is-active {
    background: var(--tp-primary);
    color: var(--tp-white);
    border-color: var(--tp-primary);
    box-shadow: 0 8px 24px rgba(87, 134, 199, 0.28);
}

/* ══════════════════════════════════════
   TESTIMONIAL CARDS (shared)
══════════════════════════════════════ */
.testimonials-page .testimonials-card {
    position: relative;
    background: var(--tp-white);
    border-radius: var(--tp-radius);
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    box-shadow: var(--tp-shadow);
    border: 1px solid rgba(87, 134, 199, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-page .testimonials-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: var(--tp-shadow-hover);
}

.testimonials-page .testimonials-card.is-hidden {
    display: none !important;
}

.testimonials-page .testimonials-card__quote {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.85;
}

.testimonials-page .testimonials-card__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    padding-top: 0.25rem;
}

.testimonials-page .testimonials-card__avatar-wrap {
    flex-shrink: 0;
}

.testimonials-page .testimonials-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tp-primary-soft);
}

.testimonials-page .testimonials-card__initials {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    font-size: 1.35rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials-page .testimonials-card__meta {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.testimonials-page .testimonials-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--tp-text);
    margin: 0 0 0.2rem;
    line-height: 1.35;
}

.testimonials-page .testimonials-card__role,
.testimonials-page .testimonials-card__country {
    font-size: 0.82rem;
    color: var(--tp-muted);
    margin: 0;
    line-height: 1.4;
}

.testimonials-page .testimonials-card__stars {
    display: flex;
    gap: 0.15rem;
    color: #f5b942;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.testimonials-page .testimonials-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-page .testimonials-card__preview,
.testimonials-page .testimonials-card__text,
.testimonials-page .testimonials-card__full {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--tp-muted);
    margin: 0;
}

.testimonials-page .testimonials-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border: none;
    background: none;
    color: var(--tp-primary);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.testimonials-page .testimonials-card__read-more:hover {
    color: var(--tp-primary-dark);
    transform: translateX(-3px);
}

.testimonials-page .testimonials-card--featured {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.testimonials-page .testimonials-card--featured .testimonials-card__header {
    flex-direction: column;
    text-align: center;
}

.testimonials-page .testimonials-card--featured .testimonials-card__meta {
    text-align: center;
}

.testimonials-page .testimonials-card--featured .testimonials-card__stars {
    justify-content: center;
}

.testimonials-page .testimonials-card--featured .testimonials-card__quote {
    top: 1.25rem;
    left: 1.25rem;
}

/* ══════════════════════════════════════
   GRID
══════════════════════════════════════ */
.testimonials-page .testimonials-grid-section {
    padding: 0 0 clamp(2.5rem, 5vw, 4rem);
    background: var(--tp-bg);
}

.testimonials-page .testimonials-grid-section__header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.testimonials-page .testimonials-grid-section__title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--tp-text);
    margin: 0 0 0.5rem;
}

.testimonials-page .testimonials-grid-section__hint {
    font-size: 0.95rem;
    color: var(--tp-muted);
    margin: 0;
}

.testimonials-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.testimonials-page .testimonials-grid-section__empty {
    text-align: center;
    color: var(--tp-muted);
    padding: 2rem 0;
}

@media (max-width: 1199.98px) {
    .testimonials-page .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .testimonials-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .testimonials-page .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.testimonials-page .testimonials-cta {
    padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
    background: var(--tp-bg);
}

.testimonials-page .testimonials-cta__panel {
    display: block;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: clamp(22px, 3vw, 28px);
    background: linear-gradient(135deg, #6a96d4 0%, var(--tp-primary) 45%, #3d6aab 100%);
    box-shadow: 0 24px 60px rgba(87, 134, 199, 0.35);
    overflow: hidden;
    position: relative;
}

.testimonials-page .testimonials-cta__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-page .testimonials-cta__copy {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.testimonials-page .testimonials-cta__title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--tp-white);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.testimonials-page .testimonials-cta__hint {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 1.5rem;
    max-width: 36em;
}

.testimonials-page .testimonials-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.testimonials-page .testimonials-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.testimonials-page .testimonials-cta__btn--primary {
    background: var(--tp-white);
    color: var(--tp-primary);
    border: 2px solid var(--tp-white);
}

.testimonials-page .testimonials-cta__btn--primary:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    color: var(--tp-primary-dark);
    text-decoration: none;
}

.testimonials-page .testimonials-cta__btn--secondary {
    background: transparent;
    color: var(--tp-white);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.testimonials-page .testimonials-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translate3d(0, -3px, 0);
    color: var(--tp-white);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .testimonials-page .testimonials-cta__btn {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-page .testimonials-card:hover,
    .testimonials-page .testimonials-cta__btn:hover,
    .testimonials-page .testimonials-featured__nav:hover,
    .testimonials-page .testimonials-card__read-more:hover {
        transform: none;
    }
}
