/* ========================================
   기업가 정신 섹션
   ======================================== */

#business {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  position: relative;
}

#business::before {
  content: '';
  position: absolute;
  inset: 0;

  /* background: rgb(0 0 0 / 20%); */
  z-index: 0;
}

#business .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

#business .section-title {
  /* color: white; */
  margin-bottom: 48px;
}

.story-chapter {
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid rgb(255 255 255 / 30%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-chapter:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgb(0 0 0 / 25%);
}

.story-chapter:last-child {
  margin-bottom: 0;
}

.story-chapter h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-chapter p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--txt);
  margin: 0;
}

/* 각 챕터별 색상 강조 */

/* .story-chapter:nth-child(2) h3 {
  color: #34a853;
}

.story-chapter:nth-child(3) h3 {
  color: #ea4335;
}

.story-chapter:nth-child(4) h3 {
  color: #1a73e8;
} */

/* --------- 반응형 --------- */

/* 태블릿 */
@media (width <= 1024px) {
  .story-chapter {
    padding: 28px;
    margin-bottom: 20px;
  }

  .story-chapter h3 {
    font-size: clamp(20px, 3.5vw, 24px);
    margin-bottom: 14px;
  }

  .story-chapter p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* 모바일 */
@media (width <= 768px) {
  #business .section-title {
    margin-bottom: 32px;
  }

  .story-chapter {
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .story-chapter h3 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 12px;
    gap: 8px;
  }

  .story-chapter p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

/* 매우 작은 화면 */
@media (width <= 480px) {
  .story-chapter {
    padding: 20px;
    margin-bottom: 12px;
  }

  .story-chapter h3 {
    font-size: 1rem;
    gap: 6px;
  }

  .story-chapter p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
