/* Контейнер карток */
.reviews-grid {
    /*display: grid;*/
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Картка відгуку */
.review-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Аватар */
.review-card .avatar {
    flex: 0 0 100px;
    text-align: center;
}

.review-card .avatar img {
    width: 100%;
    height: 100px;
    max-width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* Плейсхолдер аватара */
.review-card .avatar-placeholder {
    width: 100px;
    height: 100px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

/* Контент відгуку */
.review-card .review-content {
    flex: 1;
    /*white-space: pre-wrap;*/
    min-width: 180px;
}

/* Дата відгуку */
.review-card .review-content small {
    color: #666;
}

/* Пагінація */
.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 50px 4px;
    border-radius: 6px;
    background: #007bff;
    color: white;
    text-decoration: none;
}

.pagination a.active {
    background: #333;
}
