.testimonials {
    background: #0E1530;
    padding: 60px 0;
}
.testimonials__inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
}
.testimonials__title {
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 14px;
}
.testimonials__desc {
    color: #B5BED8;
    margin: 0;
    max-width: 420px;
}
.testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.testimonials__item {
    background: #131B38;
    border: 1px solid rgba(139,233,253,.08);
    border-radius: 10px;
    padding: 16px 18px;
}
.testimonials__text {
    margin: 0 0 8px;
    color: #D7DCEC;
    font-size: 14px;
    line-height: 1.5;
}
.testimonials__author {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 900px) {
    .testimonials__inner { grid-template-columns: 1fr; gap: 24px; }
    .testimonials__title { font-size: 26px; }
}
