.rc-reviews-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

.rc-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  min-height: 200px;
  max-height: 300px;
}

.rc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.rc-card.show {
  opacity: 1;
  transform: translateY(0);
}

.rc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.rc-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-social-icon.yelp {
  background: #d32323;
}

.rc-social-icon.google {
  background: #f8fae5;
}

.rc-social-icon.facebook {
  background: #b3dfef;
}

.rc-social-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.rc-meta {
  flex: 1;
}

.rc-meta strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.rc-meta small {
  color: #777;
  font-size: 0.85rem;
}

.rc-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.rc-stars {
  display: flex;
  gap: 0.125rem;
}

.rc-star {
  width: 16px;
  height: 16px;
  fill: #ffd700;
}

.rc-rating-text {
  font-weight: 600;
  color: #444;
  font-size: 0.9rem;
}

.rc-source {
  color: #777;
  font-size: 0.85rem;
}

.rc-card-body {
  font-size: 0.925rem;
  color: #444;
  flex: 1;
  margin-top: 0.25rem;
}

.rc-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.5;
}

.rc-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.rc-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 6px;
  background: #f5f5f5;
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.rc-page-link:hover {
  background: #e5e5e5;
  color: #000;
}

.rc-page-link.active {
  background: #0066cc;
  color: #fff;
}

/* Tablet and smaller */
@media (max-width: 1024px) {
  .rc-reviews {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .rc-reviews-container {
    padding: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .rc-reviews {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .rc-reviews-container {
    padding: 1rem;
  }

  .rc-card {
    min-height: unset;
    max-height: unset;
    padding: 1rem;
  }

  .rc-social-icon {
    width: 36px;
    height: 36px;
  }

  .rc-social-icon svg {
    width: 18px;
    height: 18px;
  }

  .mobile-hidden {
    display: none;
  }

  .rc-meta strong {
    font-size: 0.9rem;
  }

  .rc-rating {
    margin: 0.35rem 0;
  }

  .rc-star {
    width: 14px;
    height: 14px;
  }

  .rc-card-body {
    margin-top: 0.15rem;
  }
}
