.pointus-ref-carousel {
    position: relative;
    width: 100%;
}

.pointus-ref-carousel__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #FCFCFC;
    background: linear-gradient(0deg, rgba(252, 252, 252, 1) 0%, rgba(253, 250, 249, 1) 100%);
    border-radius: 20px;
    padding: 120px 80px;
}

.pointus-ref-carousel__content {
    min-width: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.pointus-ref-carousel__track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.35s ease;
}

.pointus-ref-carousel__track.is-dragging {
    transition: none;
}

.pointus-ref-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pointus-ref-slide.is-active {
    position: relative;
}

.pointus-ref-slide__title {
    font-size: 1.6rem;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    margin-bottom: 30px;
}

.pointus-ref-slide__text {
    max-width: 70%;
    margin-bottom: 30px;
}

.pointus-ref-slide__text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3em;
    color: var(--e-global-color-secondary);
}

.pointus-ref-slide__name {
    font-size: 1.1rem;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--e-global-color-primary);
    margin-bottom: 5px;
}

.pointus-ref-slide__role {
    font-size: 1.1rem;
    line-height: 1.3em;
    font-weight: 300;
    color: rgba(34,20,18,0.3);
}

.pointus-ref-carousel__footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.pointus-ref-carousel__arrows {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pointus-ref-arrow {
    width: 44px;
    height: 44px;
    border-radius: 100% !important;
    border: 1px solid #CFCFCF !important;
    background: #FDEDE9 !important;
    color: #E94E24 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    padding: 0 !important;
}

.pointus-ref-arrow.pointus-ref-arrow--prev {
    width: 32px;
    height: 32px;
}

.pointus-ref-arrow:hover {
    border-color: #E94E24 !important;
    background: #E94E24 !important;
}

.pointus-ref-arrow:hover svg path {
    fill: #fff;
}

.pointus-ref-carousel__counter {
    font-size: 1.1rem;
    line-height: 1.3em;
    color: var(--e-global-color-secondary);
    font-weight: 300;
}

.pointus-ref-carousel__current {
    color: #E94E24;
    font-weight: 700;
}

.pointus-ref-carousel__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.pointus-ref-nav-btn {
    width: 66px;
    height: 66px;
    border-radius: 100% !important;
    border: 1px solid rgba(207, 207, 207, 0.3) !important;
    background: transparent !important;
    color: rgba(34, 20, 18, 0.28);
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transform: scale(1);
    transform-origin: center;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.pointus-ref-nav-btn svg {
    width: 40px;
    height: 40px;
    transition: width 0.25s ease, height 0.25s ease;
}

.pointus-ref-nav-btn.is-active {
    width: 72px;
    height: 72px;
    border: 1px solid var(--e-global-color-primary) !important;
    opacity: 1;
}

.pointus-ref-nav-btn.is-active svg {
    width: 48px;
    height: 48px;
}

.pointus-ref-nav-btn:hover {
    opacity: 0.8;
    border: 1px solid var(--e-global-color-primary) !important;
    background: var(--e-global-color-primary) !important;
}

.pointus-ref-nav-btn:hover svg circle, .pointus-ref-nav-btn:hover svg path {
    stroke: #fff;
}

.pointus-ref-nav-btn.is-active:hover {
    opacity: 1;
    border: 1px solid var(--e-global-color-primary) !important;
}

@media (max-width: 1024px) {
    .pointus-ref-carousel__inner {
        padding: 60px 40px;
    }

    .pointus-ref-carousel__nav {
        display: none;
    }

    .pointus-ref-slide {
        min-height: auto;
    }

    .pointus-ref-slide__text {
        max-width: 100%;
    }

    .pointus-ref-slide__title, .pointus-ref-slide__text, .pointus-ref-slide__meta {
        text-align: center;
    }

    .pointus-ref-carousel__footer {
        margin: 0 auto;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .pointus-ref-carousel__inner {
        padding: 40px 20px;
    }

    .pointus-ref-carousel__footer {
        flex-wrap: wrap;
    }

    .pointus-ref-nav-btn {
        width: 58px;
        height: 58px;
    }

    .pointus-ref-nav-btn svg {
        width: 28px;
        height: 28px;
    }
}