.reviews {
    width: 100%;
    padding: 0 120px;
}

.reviews-inner {
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.reviews-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.reviews-header h2 {
    font-size: 56px;
    font-weight: 600;
}

.reviews-header p {
    font-size: 20px;
    font-weight: 500;
    color: #cbcbcb;
}

.reviews-grid {
    display: flex;
    gap: 16px;
    width: 100%;
}

.review-card {
    flex: 1;
    background: rgba(5, 11, 15, 0.2);
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.review-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #cbcbcb;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0558ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1024px) {
    .reviews {
        padding: 0 40px;
    }

    .reviews-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 0 20px;
    }

    .reviews-inner {
        gap: 32px;
    }

    .reviews-header h2 {
        font-size: 26px;
    }

    .reviews-header p {
        font-size: 16px;
    }

    .reviews-grid {
        flex-direction: column;
    }

}
