/* 전체 */
.info-section {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* 설명 */
.intro {
  margin-bottom: 20px;
}

/* 테이블 */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  background: #bfbfbf;
  color: #fff;
  padding: 12px;
}

.info-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

/* 줄 배경 */
.info-table tr:nth-child(even) {
  background: #fff7f7;
}

/* 그룹 */
.group {
  font-weight: bold;
  background: #fff;
}

/* 강조 */
.highlight {
  font-weight: bold;
  background: #eee;
}

/* ===== 모바일 (표 유지 방식) ===== */
@media (max-width: 768px) {

  /* 1. 테이블 감싸기 */
  .table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 2. 기존 block 강제 제거 (핵심) */
  .info-table {
    display: table !important;
    width: auto !important;
    min-width: 700px; /* 핵심 */
    border-collapse: collapse;
  }

  .info-table thead {
    display: table-header-group !important;
  }

  .info-table tbody {
    display: table-row-group !important;
  }

  .info-table tr {
    display: table-row !important;
  }

  .info-table th,
  .info-table td {
    display: table-cell !important;
  }

  /* 3. 가독성 */
  .info-table th,
  .info-table td {
    font-size: 13px;
    padding: 10px;
    white-space: nowrap; /* 줄깨짐 방지 */
  }

}