

/* Start:/bitrix/templates/creativebz.carrent/components/bitrix/news.list/creativebz.carrent.reviews/style.css?17601288543943*/
/* Заголовок страницы */
.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.page-header__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Секция отзывов */
.reviews {
    padding: 60px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-card__author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__avatar--placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.review-card__author-info {
    flex: 1;
}

.review-card__author-name {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 4px 0;
}

.review-card__author-position {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.review-card__rating {
    display: flex;
    gap: 4px;
}

.review-card__star {
    font-size: 20px;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.review-card__star--active {
    color: #ffc107;
}

.review-card__body {
    flex: 1;
    margin-bottom: 20px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 16px;
}

.review-card__car {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
}

.review-card__car svg {
    color: #6c757d;
}

.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.review-card__date {
    font-size: 13px;
    color: #6c757d;
}

.review-card__verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews {
        padding: 40px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-card__header {
        flex-direction: column;
        gap: 12px;
    }
    
    .review-card__rating {
        align-self: flex-start;
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

/* End */
/* /bitrix/templates/creativebz.carrent/components/bitrix/news.list/creativebz.carrent.reviews/style.css?17601288543943 */
