.home-testimonials__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 12rem;
    align-items: center;
}

.home-testimonials__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 29.23611rem;
}

.home-testimonials__label {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 400;
    color: #0840d6;
    margin-bottom: 0.5rem;
}

.home-testimonials__title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--home-blue);
    margin-bottom: 1.25rem;
}

.home-testimonials__desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--home-text);
    margin-bottom: 2rem;
}

.home-testimonials__nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    width: max-content;
    margin: 0 auto;
}

.home-testimonials__prev,
.home-testimonials__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid var(--home-blue);
    color: var(--home-blue);
    background: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-testimonials__next {
    background: var(--home-blue);
    color: #fff;
}

.home-testimonials__prev:hover,
.home-testimonials__next:hover {
    background: var(--home-orange);
    border-color: var(--home-orange);
    color: #fff;
}

.home-testimonials__prev svg,
.home-testimonials__next svg {
    width: 1.125rem;
    height: 1.125rem;
}

.home-testimonials__slider {
    overflow: hidden;
    width: 100%;
    max-width: 30.76389rem;
    min-width: 0;
}

.home-testimonials__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.home-testimonials__quote-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    transform: translateY(-3rem);
}

.home-testimonials__quote {
    font-size: 1rem;
    line-height: 1.65;
    color: #524c4c;
    margin-bottom: 1.75rem;
}

.home-testimonials__person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-testimonials__person img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.home-testimonials__person div {
    display: flex;
    flex-direction: column;
}

.home-testimonials__person strong {
    font-size: 1.375rem;
    font-weight: 500;
    color: #000;
}

.home-testimonials__person span {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.64);
}
.home-testimonials__slider-wapper {
    display: flex;
    gap: 1rem;
    min-width: 0;
    max-width: 100%;
}
@media (max-width: 1024px) {
    .home-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .home-testimonials__title {
        font-size: 1.75rem;
    }

    .home-testimonials__quote-icon {
        width: 2.5rem;
    }

    .home-testimonials__person img {
        width: 3rem;
        height: 3rem;
    }
}
