/**
 * REVIEWS — Sekcja "Opinie"
 */

.opinie__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ── Karta recenzji ── */
.review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(194, 164, 111, 0.22);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.review__stars {
  color: var(--color-accent);
  font-size: var(--text-base);
  letter-spacing: var(--space-1);
  margin-bottom: var(--space-4);
}

.review__text {
  font-size: var(--text-base);
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 241, 234, 0.88);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}

.review__name {
  font-family: var(--font-script);
  font-size: var(--text-xl);
  color: var(--color-accent);
  line-height: 1;
}

.review__session {
  font-size: var(--text-xs);
  color: rgba(244, 241, 234, 0.38);
  margin-top: var(--space-1);
}
