/**
 * TripAdvisor Reviews Block CSS
 * Based on mensajes.html design
 */

.tar-block {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 0;
}

.tar-reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tar-review-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.tar-review-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tar-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tar-reviewer-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  color: #202C2E;
}

.tar-review-date {
  font-size: 14px;
  font-weight: 400;
  color: #202C2E;
  margin-top: 2px;
}

.tar-rating {
  display: flex;
  gap: 4px;
  margin: 15px 0;
}

.tar-rating span {
  width: 16px;
  height: 16px;
  background-color: #00AA6C;
  border-radius: 50%;
}

.tar-review-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #202C2E;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tar-review-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.tar-read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #202C2E;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.tar-read-more:hover {
  opacity: 0.8;
}

/* Loading spinner */
.tar-loading {
  text-align: center;
  padding: 40px 20px;
}

.tar-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #00AA6C;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: tar-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes tar-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error state */
.tar-error {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}
