* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", sans-serif;
  background-color: #f5f5f5;
  color: #333333;
}

.review-section {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  padding: 40px 16px 50px;
  min-height: 100vh;
}

.review-container {
  max-width: 600px;
  margin: 0 auto;
}

.review-header {
  text-align: center;
  margin-bottom: 24px;
}

.title-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* 4번째 이후 후기 기본 숨김 */
.review-list .review-card:nth-child(n+4) {
  display: none !important;
}

/* 펼침 상태 */
.review-list.is-expanded .review-card:nth-child(n+4) {
  display: block !important;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.user-icon {
  width: 44px !important;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  line-height: 1;
}

.meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #777777;
}

.badge {
  background-color: #f1f3f5;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 500;
}

.card-content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444444;
  word-break: keep-all;
}

.card-content strong {
  font-weight: 700;
  color: #111111;
}

.more-btn-wrap {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 20px;
}

.toggle-btn {
  background-color: #ffffff;
  color: #16a34a;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.1s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.toggle-btn:hover {
  background-color: #f8fafc;
}

.toggle-btn:active {
  transform: scale(0.98);
}