/* Основные стили блока */
.lr-reviews-block {
    max-width: 1520px;
    margin: 10px auto 0;
    position: relative;
    z-index: 2;
    padding: 20px 85px 0px 85px;
}

.lr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    padding: 0 20px;
}

.lr-title {
    margin: 0;
    font-size: 32px;
    color: #fff;
}

/* Кнопка "Все отзывы" */
.lr-see-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 227px;
    height: 44px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.3s ease;
}

.lr-see-all-btn:hover {
    background-color: #fff;
    color: #0c0c0c;
}

/* Сетка отзывов */
.lr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Карточка отзыва */
.lr-review-card {
    background: #fff;
    border-radius: 32px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 414px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Шапка карточки */
.lr-review-header {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Логотип компании */
.lr-company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.lr-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Рейтинг */
.lr-rating-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lr-rating-stars {
    font-size: 24px;
    line-height: 1;
    display: flex;
    gap: 14px;
}

.lr-rating-value {
    margin-left: 5px;
    margin-top: 5px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #0c0c0c;
}

/* Стили для звезд */
.lr-star-full {
    color: #FFD700 !important;
}

.lr-star-empty {
    color: #e0e0e0 !important;
}

.lr-star-partial {
    position: relative;
    display: inline-block;
}

.lr-star-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

/* Заголовок отзыва */
.lr-review-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 15px;
    color: #0c0c0c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 56px; /* Фиксированная высота для 2 строк */
}

/* Содержимое отзыва */
.lr-review-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0c0c0c;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Изменено с 6 на 5 строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 120px; /* Добавлено для точного ограничения */
}

/* Футер карточки */
.lr-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* Кнопка "Подробнее" */
.lr-read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 44px;
    background-color: #0c0c0c;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 32px;
    transition: all 0.3s ease;
}

.lr-read-more-btn:hover {
    background-color: #333;
}

/* Дата отзыва */
.lr-review-date {
    font-size: 12px;
    font-weight: 400;
    color: rgba(12, 12, 12, 0.6);
}

/* Адаптация для разных разрешений */
@media (max-width: 1520px) {
    .lr-reviews-block {
        max-width: 1280px;
        padding: 0 30px;
    }
}

@media (max-width: 1280px) {
    .lr-reviews-block {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .lr-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lr-review-content {
        -webkit-line-clamp: 4;
        max-height: 96px;
    }
}

@media (max-width: 1024px) {
    .lr-reviews-block {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .lr-reviews-block {
        margin-top: 50px;
        padding: 0 20px;
        text-align: center;
    }
    
    .lr-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .lr-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .lr-title {
        font-size: 28px;
    }
    
    .lr-see-all-btn {
        width: 227px;
        height: 44px;
        font-size: 18px;
    }
    
    .lr-review-title {
        font-size: 18px;
        min-height: 50px;
    }
    
    .lr-review-content {
        font-size: 15px;
        -webkit-line-clamp: 3;
        max-height: 72px;
    }
    
    .lr-read-more-btn {
        width: 200px;
        height: 40px;
        font-size: 15px;
    }
    
    .lr-rating-stars,
    .lr-rating-value {
        font-size: 20px;
    }
    
    .lr-rating-stars {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .lr-reviews-block {
        padding: 0 15px;
    }
    
    .lr-review-card {
        padding: 20px;
        height: 310px;
    }
    
    .lr-review-title {
        font-size: 16px;
        min-height: 44px;
    }
    
    .lr-review-content {
        font-size: 14px;
        -webkit-line-clamp: 3;
        max-height: 66px;
    }
    
    .lr-read-more-btn {
        width: 160px;
        height: 36px;
        font-size: 14px;
    }
    
    .lr-review-date {
        font-size: 14px;
    }
}