@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/pretendard@1.3.6/dist/web/static/pretendard.css");

.marking-page {
  background: #202025;
  overflow: hidden;
  font-feature-settings: 'case' on;
}

.marking-page p { margin: 0; }

/* 배너 */
.marking-page .banner-img {
  width: 100%;
}

/* 공지 영역 */
.marking-page .notice {
  background: #F7F7F7;
  padding: 40px 16px;
  text-align: center;
}
.marking-page .notice img {
  width: 32px;
}
.marking-page .notice .title {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  line-height: 150%;
  margin: 4px auto;
}
.marking-page .notice .title .highlight {
  color: #D0122B;
}
.marking-page .notice .detail {
  font-size: 16px;
  color: #65656C;
  margin-top: 4px;
  line-height: 150%;
}

/* 섹션 1 */
.marking-page .sec1 {
  background: #202025;
  text-align: left;
  padding: 40px 16px;
}
.marking-page .sec1 .inner-container {
  margin: 0 auto;
}
.marking-page .sec1 .inner-container .title {
  color: #F7F7F7;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 45px */
  letter-spacing: -0.6px;
  padding-bottom: 8px;
}
.marking-page .sec1 .inner-container .desc {
  color: #F7F7F7;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.84px;
  padding-bottom: 8px;
}
.marking-page .sec1 .inner-container .desc-a {
  color: #909097;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}

/* 섹션 2 (유니폼 종류) */
.marking-page .sec2 {
  padding-top: 60px;
  display: flex;
  justify-content: center;
}
.marking-page .sec2 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
.marking-page .sec2 ul li {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.marking-page .sec2 ul li img {
  width: 100%;
  border-radius: 8px;
}
.marking-page .sec2 ul li .title {
  font-size: 24px;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 4px;
}
.marking-page .sec2 ul li .desc {
  font-size: 16px;
  color: #B1B1B7;
  margin-bottom: 8px;
}

/* 섹션 3 (선수명단) */
.marking-page .sec3 {
  background: #202025;
  padding: 40px 16px;
}
.marking-page .sec3 .inner-container {
  margin: 0 auto;
}
.marking-page .sec3 .inner-container .title {
  color: #F7F7F7;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 45px */
  letter-spacing: -0.6px;
}
.marking-page .sec3 .inner-container .desc {
  color: #909097;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}

/* 선수 카드 그리드 */
.marking-page .sec4 {
  margin-top: 16px;
}
.player-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.player-card {
  border: 1px solid #ddd;
  text-align: center;
  background: #fff;
}
.player-card .kor {
  background: #202025;
  color: #fff;
  font-size: 13px;
  padding: 4px;
}
.player-card .eng,
.player-card .num {
  font-size: 13px;
  padding: 4px;
  color: #1E1E1E;
  border-top: 1px solid #ddd;
}

/* 사이즈 표 + 유의사항 */
.marking-page .caution {
  background: #F7F7F7;
  padding: 16px 16px;
}
.marking-page .caution .title {
  font-size: 24px;
  font-weight: 600;
  color: #1E1E1E;
  text-align: center;
}
.marking-page .caution .caption {
  font-size: 13px;
  color: #D0122B;
  text-align: center;
  margin-bottom: 12px;
}
.marking-page .caution .subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}
.marking-page .caution .detail {
  font-size: 14px;
  color: #1E1E1E;
  line-height: 150%;
  list-style: inside;
}
li::marker {
  font-size: 0.5em;  /* 마커(숫자/불릿) 크기 조정 */
}
.marking-page .caution .detail .highlight {
  color: #D0122B;
}

/* 테이블 (사이즈 정보) */
.marking {
  margin-top: 16px;
}
table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  font-size: 11px;
}
th, td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 6px;
}
th {
  background: #a3a3a3;
  color: #fff;
  font-weight: 400;
}
