/* Inter webfont import for consistent typography across pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.bg-hero {
  background: linear-gradient(135deg, #5b21b6, #9333ea, #ec4899);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.bg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/diagonal-noise.png');
  opacity: 0.08;
  z-index: 1;
}

.bg-hero > * {
  position: relative;
  z-index: 2;
}

/* 리뷰 슬라이더 크기 조정 */
.reviewSwiper .swiper-slide {
  width: 320px !important;
  height: auto !important;
}

/* 리뷰 카드 스타일 */
.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  margin: 0.3rem 0;
}
