/* Список отзывов */
.feedbacks-list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.feedback-card {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75);
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Для Safari */
    border: 2px solid rgba(200, 200, 200, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    cursor: pointer; /* Курсор-показатель кликабельности */
    height: 220px;   /* Фиксированная высота */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* Обрезаем переполнение */
    position: relative;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feedback-name {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.feedback-date {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 0.85rem;
    opacity: 0.8;
}

.feedback-message {
    margin-bottom: -2px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;     /* Ограничиваем до 4 строк */
    -webkit-box-orient: vertical;
    flex: 1;
}

.no-feedbacks {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.more-indicator {
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: right;
    font-style: italic;
    color: #ff7f50; /* или любой другой акцентный цвет */
    cursor: pointer; /* если хотите сделать кликабельным для раскрытия */
}