/* ----------------------------------------
  리뷰 섹션 공통
---------------------------------------- */
.review-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 24px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #222;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d40000;
  text-decoration: none;
}

.logo span {
  color: #333;
  font-weight: 400;
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #d40000;
}

/* ----------------------------------------
  리뷰 상단 배너
---------------------------------------- */
.review-banner {
  background: linear-gradient(135deg, #e60023, #ff7e90);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 40px;
}

.review-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}

.review-banner .subtitle {
  font-size: 1.1rem;
  margin-top: 16px;
  opacity: 0.9;
}

/* 반응형 */
@media (max-width: 768px) {
  .review-banner h1 {
    font-size: 2rem;
  }

  .review-banner .subtitle {
    font-size: 1rem;
  }
}

/* 섹션 타이틀 */
.review-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: #d40000;
}

.review-section p.subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* 리뷰 카드 그리드 */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* 리뷰 카드 */
.review-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}

/* 별점 */
.review-card .stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 12px;
}

/* 리뷰 내용 */
.review-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* 작성자 */
.review-name {
  font-size: 0.85rem;
  color: #777;
}

/* 반응형 대응 */
@media (max-width: 768px) {
  .review-section {
    padding: 0 16px;
  }

  .review-section h2 {
    font-size: 1.5rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-name {
    font-size: 0.8rem;
  }
}
