/* Home(Index) 페이지 전용 스타일 */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--color-primary-100) 0%, rgba(238,240,253,0) 70%);
  z-index: -1;
}
