/* ✅ 기본 설정 */
body {
  font-family: 'Pretendard', sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* ✅ 소모품 관리 섹션 */
.intro-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
.intro-section .description {
  font-size: 1.05rem;
  margin-bottom: 32px;
  color: #444;
  line-height: 1.8;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.intro-section h3 {
  font-size: 1.2rem;
  margin: 32px 0 16px;
  color: #111;
  text-align: center;
}
/* ✅ 이미지 크기 개별 설정 */
/* 소모품 */
.intro-section img {
  width: 100%;
  max-width: 680px;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}
.intro-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.intro-section th {
  background: #f0f4f8;
  padding: 14px;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  text-align: center;
}
.intro-section td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
  background: #fff;
  color: #222;
}
.intro-section tr:last-child td {
  border-bottom: none;
}

/* ✅ 장비 구성 섹션 (소모품 관리 섹션처럼 구성) */
.product-content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
.description-wrap {
  display: block;
}
.description {
  font-size: 1.05rem;
  margin-bottom: 32px;
  color: #444;
  line-height: 1.8;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.product-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 16px;
  color: #111;
  text-align: center;
}
.image-box {
  text-align: center;
}
/*장비 이미지*/
.image-box img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
/*장비 이미지 여백*/
.table-box {
  margin-top: 30px;
}
.table-box h3 {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.table-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.table-box th {
  padding: 14px 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
  background: #f0f4f8;
  border-bottom: 1px solid #ccc;
}
.table-box td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
  color: #222;
  line-height: 1.6;
  background: #fff;
}
.table-box tr:last-child td {
  border-bottom: none;
}

/* ✅ 공통 노트 박스 */
.note {
  background: #f9f9f9;
  border-left: 6px solid #7da3c3;
  padding: 20px;
  margin: 40px auto;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  max-width: 1000px;
}
.note strong {
  color: #2c5e91;
  margin-right: 10px;
}
.divider-line {
  display: none;
}

/* ✅ 섹션 구분선 */
.section-divider {
  border-top: 3px dashed #859FB1;
  margin: 60px auto;
  max-width: 1000px;
  width: 100%;
}


/* ✅ 반응형 */
@media (max-width: 768px) {
  .equipment-wrap {
    flex-direction: column;
    gap: 32px;
  }
  .description-wrap {
    justify-content: center;
  }
  .table-box h3 {
    text-align: center;
  }
  .intro-section table,
  .table-box table {
    font-size: 0.9rem;
  }
  /* ✅ 표 글자 깨짐 방지 */
  .table-box table,
  .intro-section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-collapse: collapse;
  }

  .table-box table th,
  .table-box table td,
  .intro-section table th,
  .intro-section table td {
    white-space: nowrap;       /* ✅ 줄바꿈 방지 */
    word-break: keep-all;      /* ✅ 단어 깨짐 방지 */
    text-align: left;
    padding: 12px 16px;
  }
}
