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

.testimonial {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 28px 20px;
  border: 1px solid #ded4c9;
  border-radius: 12px;
  background: #fff;
}

.testimonial__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.testimonial__top h3 {
  color: #2e2b28;
  font-size: 19px;
  font-weight: 700;
}

.testimonial__identity { display: grid; gap: 4px; }

.testimonial__date {
  color: #77706a;
  font-size: 13px;
  line-height: 1.4;
}

.testimonial__stars {
  flex: 0 0 auto;
  color: #d6933b;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.completion-shell .testimonial__quote {
  margin: 20px 0 24px;
  color: #39332e;
  font-size: 18px;
  line-height: 1.55;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #77706a;
  font-size: 13px;
}

.testimonial__footer button {
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: #705339;
  font: inherit;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.testimonial__footer button:hover { text-decoration: underline; }
.testimonial__footer button:focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 4px; }
.testimonial__footer button span { margin-left: 4px; }

@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .testimonial { padding: 22px 20px 16px; }
  .testimonial__top { flex-wrap: wrap; gap: 8px 16px; }
  .completion-shell .testimonial__quote { margin: 18px 0 22px; font-size: 16px; }
  .testimonial__footer { flex-wrap: wrap; gap: 4px 16px; }
}
