/* Стили для отзывов Lion Reviews */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.review-item {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.review-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

.review-date {
    font-size: 14px;
    color: #999999;
}

.review-rating {
    margin-bottom: 12px;
}

.review-rating .star {
    font-size: 18px;
    margin-right: 2px;
}

.review-rating .star.filled {
    color: #ffcc00;
}

.review-rating .star.empty {
    color: #e6e6e6;
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
}

.review-text p {
    margin: 0 0 12px 0;
}

.review-text p:last-child {
    margin-bottom: 0;
}

.more-reviews-button {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    clear: both;
}

.more-reviews-button .button {
    display: inline-block;
    background: #ffcc00;
    color: #333333;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.more-reviews-button .button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Убедимся, что div.reviews-first__wrapper имеет высоту по контенту */
.reviews-first__wrapper {
    height: auto !important;
    min-height: auto !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-author {
        font-size: 15px;
    }
    
    .review-date {
        font-size: 13px;
    }
}