/* Reviews page and cafe review cards */
.reviews-page { max-width: 1180px; margin: 0 auto; padding: clamp(42px, 7vw, 86px) 20px; }
.reviews-page__hero { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 32px; }
.reviews-page__hero h1 { margin: 10px 0 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 5vw, 68px); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.reviews-page__hero > p { max-width: 390px; margin: 0; color: var(--muted); line-height: 1.55; }
.real-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.real-review-card { display: flex; min-width: 0; flex-direction: column; padding: 22px; border: 1px solid var(--border); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.real-review-card__header { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 12px; align-items: center; }
.real-review-card__avatar { display: grid; width: 48px; height: 48px; place-items: center; overflow: hidden; border-radius: 50%; background: #fff1c7; object-fit: cover; color: var(--accent); font-weight: 800; }
.real-review-card__header h3 { margin: 0; font-size: 17px; line-height: 1.2; }
.real-review-card__meta { display: flex; gap: 8px; align-items: center; margin-top: 3px; color: var(--muted); font-size: 13px; }
.real-review-card__stars { color: #e7aa00; letter-spacing: .06em; }
.real-review-card__cafe { grid-column: 1 / -1; color: var(--accent); font-size: 13px; font-weight: 800; }
.real-review-card__text { margin: 18px 0; color: var(--text); line-height: 1.58; }
.real-review-card__media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: auto; }
.real-review-card__photo { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 14px; aspect-ratio: 4 / 3; background: #f2eee4; }
.real-review-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.real-review-card__photo span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(42, 37, 31, .55); font-weight: 800; }
.real-review-card__photo:hover img { transform: scale(1.03); }
.real-review-card__photo img { transition: transform .25s ease; }
.real-review-card__reply { margin-top: auto; padding: 14px; border-radius: 16px; background: #fff6dc; font-size: 14px; line-height: 1.45; }
.real-review-card__reply p { margin: 5px 0 0; }
.real-review-card footer { margin-top: 16px; }
.real-review-card footer a { color: var(--accent); font-size: 14px; font-weight: 800; text-decoration: none; }
.cafe-reviews-more { margin: 28px 0 0; text-align: center; }
.reviews-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.reviews-filter__item { padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--text); font-size: 14px; font-weight: 800; text-decoration: none; }
.reviews-filter__item.is-active, .reviews-filter__item:hover { color: #fff; border-color: var(--accent); background: var(--accent); }
.cafe-reviews-page__hero { align-items: start; }
.cafe-reviews-page__summary { display: grid; gap: 10px; padding: 24px 26px; border: 1px solid var(--border); border-radius: 24px; background: #fffaf3; }
.cafe-reviews-page__rating { color: var(--text); font-size: 1.45rem; font-weight: 800; }
.cafe-reviews-page__rating span { color: #e7aa00; letter-spacing: .08em; }
.cafe-reviews-page__award { color: var(--muted); line-height: 1.5; }
.cafe-reviews-page__count { margin: 0; color: var(--muted); }
.cafe-reviews-page__map { align-self: start; }
.cafe-reviews-page__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; margin-top: 42px; padding: 30px; border-radius: 24px; background: #f2f7ed; }
.cafe-reviews-page__cta h2 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
@media (max-width: 820px) { .cafe-reviews-page__summary { margin-top: 24px; padding: 20px; } .cafe-reviews-page__cta { display: grid; margin-top: 30px; padding: 24px; } .cafe-reviews-page__cta .button { width: 100%; } }

@media (max-width: 820px) {
  .reviews-page { padding: 38px 16px 64px; }
  .reviews-page__hero { display: block; }
  .reviews-page__hero > p { margin-top: 16px; }
  .real-reviews-grid { grid-template-columns: 1fr; }
  .real-review-card { padding: 18px; border-radius: 22px; }
}
