/* ✅ 기본 구조 */
.product-intro-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;  /* 전체 중앙 정렬 */
}

.product-intro-section h2 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  color: #222;
  margin-bottom: 60px;
  word-break: keep-all;
}

.product-intro-layout {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.intro-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
}

.intro-description p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  word-break: keep-all;
}


/* ✅ 반응형 대응 */
@media (max-width: 768px) {
  .product-intro-section {
    padding: 0 16px;
  }

  .product-intro-section h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .product-intro-layout {
    flex-direction: column;
    align-items: center;
  }

  .intro-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .product-intro-section h2 {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .intro-description p {
    font-size: 0.9rem;
  }
}
