.review-card {
  border: 2px solid var(--reviews-accent);
  /* use accent color */
  /* border-radius: 8px; */
  padding: 2rem;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* title / nickname / comment */
.review-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--reviews-accent);
}

.review-nick {
  color: rgba(5, 34, 34, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-stars {
  color: var(--reviews-accent);
  margin-bottom: 0.5rem;
}

.review-comment {
  color: #334155;
  flex-grow: 1;
  margin-bottom: 0.75rem;
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
  .review-card {
    padding: 1.75rem;
    margin-bottom: 1rem;
  }

  .review-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .review-nick {
    font-size: 0.85rem;
  }

  .review-comment {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .review-stars svg {
    width: 12px;
    height: 12px;
  }

  .review-read {
    font-size: 0.9rem;
  }

  .review-read svg {
    width: 14px;
    height: 14px;
  }
}