body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
    margin: 0;
    background: #fff0f5;
    color: #333
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffe4ef;
    border-bottom: 1px solid #f6cadd
}

.reviews-header h1 {
    font-size: 20px;
    margin: 0
}

.reviews-header .tg-link {
    color: #b03a70;
    text-decoration: none;
    font-weight: 600
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
    padding: 16px
}

@media(min-width:640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(min-width:1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.review-card {
    background: #fff;
    border: 1px solid #f2bad2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgb(0 0 0 / 4%)
}

.review-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    display: block
}

.review-text {
    padding: 12px 14px;
    white-space: pre-wrap
}

.review-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-top: 1px solid #f6cadd;
    color: #7a5164;
    font-size: 13px
}

.review-meta .open-post {
    color: #b03a70;
    text-decoration: none
}

.empty {
    padding: 24px;
    color: #7a5164
}