/* Testimonials section */
.testimonials {}

.testimonials__title {}

.testimonials__desc {}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.testimonials__item {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--Grey-200, #EAECF0);
    background: var(--Base-White, #FFF);
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.testimonials__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonials__text {
    color: var(--Grey-600, #475467);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 24px;
}

.testimonials__text ol,
.testimonials__text ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonials__author img {
    flex: none;
    max-width: 56px;
    border-radius: 50%;
}

.testimonials__author-name {
    color: var(--Gray-900, #101828);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 4px;
}

.testimonials__author-link {
    color: var(--Primary-600, #1570EF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.testimonials__author-link::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transform: translateY(4px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M5.83325 14.1667L14.1666 5.83333M14.1666 5.83333H5.83325M14.1666 5.83333V14.1667" stroke="%231570EF" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

@media (max-width: 989px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 599px) {
    .testimonials__grid {
        display: flex;
        gap: 16px;
        margin: 0 -16px;
        padding: 0 16px;
        margin-top: 24px;
        overflow: auto;
    }

    .testimonials__item {
        flex: 0 0 300px;
        width: 300px;
    }
}