/* ===========================
   REVIEWS — AvalonLinks Old Money
   Light, minimal, fairway palette
=========================== */

#reviews {
  --rv-green-main: #264c34;
  --rv-green-soft: #5b7f65;
  --rv-cream-bg: #f5f1e7;
  --rv-card-bg: #ffffff;
  --rv-card-border: rgba(38, 76, 52, 0.16);
  --rv-text-main: #18251c;
  --rv-text-muted: #7b8574;
  --rv-accent-orange: #ea7a3c;
}

/* контейнер секции */
#reviews .swiper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}



/* шапка секции */
.rv-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  gap: 14px;
}

.rv-kicker {
  grid-column: 1 / -1;
  color: var(--rv-green-soft);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rv-green-soft);
}

.rv-title {
  margin: 0;
  color: var(--rv-green-main);
  font-family: "DM Serif Display", "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* контролы */
.rv-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* кнопки навигации */
.rev-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(38, 76, 52, 0.28);
  background: #f5f1e7;
  color: var(--rv-green-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.16s ease,
    box-shadow 0.18s ease;
}

.rev-btn:hover {
  background: #e3efe6;
  border-color: var(--rv-green-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(10, 48, 28, 0.12);
}

/* карточки */
.rv-card {
  background: var(--rv-card-bg);
  border: 1px solid var(--rv-card-border);
  border-radius: 22px;
  padding: 18px 20px;
  color: var(--rv-text-main);
  display: flex;
  flex-direction: column;
  height: 270px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.rv-card:hover {
  border-color: rgba(38, 76, 52, 0.35);
}

/* верх карточки */
.rv-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f1e7;
  border: 1px solid rgba(38, 76, 52, 0.22);
  overflow: hidden;
}

.rv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.rv-meta strong {
  color: var(--rv-text-main);
  font-weight: 700;
  font-size: 15px;
}

.rv-meta span {
  font-size: 12px;
  color: var(--rv-text-muted);
}

.rv-rate {
  margin-left: auto;
  color: var(--rv-accent-orange);
  font-weight: 700;
  font-size: 14px;
}

/* текст отзыва */
.rv-quote {
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 12px;
  color: var(--rv-text-muted);
  flex-grow: 1;
}

/* теги */
.rv-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rv-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f0f6f1;
  border: 1px solid rgba(38, 76, 52, 0.22);
  color: var(--rv-green-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* мини-лейблы (например BEST ROUND) */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fbe1c7;
  color: #3b1b07;
  border: 1px solid rgba(218, 129, 69, 0.85);
}

/* адаптив */
@media (max-width: 980px) {
  .rv-card {
    height: auto;
    width: 90%;
    margin-inline: auto;
    padding: 16px;
  }

  .rv-title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {


  .rv-card {
    width: 90%;
    height: auto;
    margin-inline: auto;
    padding: 16px;
  }

  .rv-quote {
    font-size: 13.5px;
  }

  .rv-controls {
    justify-content: flex-start;
  }
}
