@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/pretendard@1.3.6/dist/web/static/pretendard.css");

/* ===========================
   폰트 통일 (Pretendard)
=========================== */
.marking-page,
.marking-page * {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
}

/* ===========================
   기본 설정
=========================== */
.marking-page {
  overflow: hidden;
  background: #17192D;
  text-align: left;
  font-feature-settings: 'case' on;
  font-weight: 400;
}

.marking-page .banner-img {
  width: 100%;
}

p {
  margin: 0;
}
/* ===========================
   공지 영역
=========================== */
.marking-page .notice {
  display: flex;
  width: 100%;
  padding: 32px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #F7F7F7;
}

.marking-page .notice .title {
  color: #1E1E1E;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.44px;
}

.marking-page .notice .title .highlight {
  color: #D0122B;
}

.marking-page .notice .detail {
  color: #65656C;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.32px;
}

/* ===========================
   섹션 1
=========================== */
.marking-page .sec1 {
  background: #17192D;
}

.marking-page .sec1 .inner-container {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  padding: 0 320px;
}

.marking-page .sec1 .inner-container .title {
  color: #F7F7F7;
  font-size: 42px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.48px;
  padding-top: 32px;
  padding-bottom: 16px;
}

.marking-page .sec1 .inner-container .desc {
  color: #F7F7F7;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.14px;
  padding-bottom: 16px;
}

.marking-page .sec1 .inner-container .desc-a {
  color: #909097;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.14px;
}

/* ===========================
   섹션 2
=========================== */
.marking-page .sec2 {
  display: flex;
  width: 100%;
  gap: 48px;
  justify-content: center;
  padding-top: 100px;
}

.marking-page .sec2 ul {
  display: flex;
  flex-direction: row;
  gap: 24px; /* 세트 간격 */
  justify-content: center;
  align-items: flex-start;
  padding-left:0;
}

.marking-page .sec2 ul li {
  display: flex;
  flex-direction: column; /* 세로 방향 정렬 */
  text-align: left;
}

.marking-page .sec2 ul li .title {
  color: #F7F7F7;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.56px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.marking-page .sec2 ul li .desc {
  color: #B1B1B7;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.36px;
  padding-bottom: 16px;
}

/* ===========================
   섹션 3
=========================== */
.marking-page .sec3 {
  background: #17192D;
  padding-top: 160px;
}

.marking-page .sec3 .inner-container {
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  padding: 0 320px;
}

.marking-page .sec3 .inner-container .title {
  color: #F7F7F7;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.64px;
  padding-bottom: 8px;
}

.marking-page .sec3 .inner-container .desc {
  color: #B1B1B7;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.36px;
}

/* ===========================
   마킹 테이블 (Grid)
=========================== */
.sec4 {
  max-width: calc(100% - 640px);
  margin: 24px auto 0;
}

/* ✅ Grid Layout */
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
  padding-bottom: 80px;
}

/* ✅ 카드 하나 */
.player-card {
  width: 160px;
  border: 1px solid #ddd;
  overflow: hidden;
  text-align: center;
}

.player-card .kor {
  background-color: var(--bg-dark);
  color: white;
  font-size: 20px;
  font-weight: 400;
  padding: 5px;
}

.player-card .eng {
  background-color: #fff;
  color: var(--text-dark);
  font-size: 20px;
  padding: 4px;
  border-top: 1px solid #ddd;
}

.player-card .num {
  background-color: #fff;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding: 4px;
}

/* hover 효과 */
.player-card:hover {
  transform: translateY(-3px);
  transition: 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ===========================
   유의사항
=========================== */
.marking-page .caution {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: #F7F7F7;
  padding: 0 320px 80px;
}

.marking-page .caution .title {
  color: #1E1E1E;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.28px;
  padding-bottom: 8px;
}

.marking-page .caution .caption {
  color: #D0122B;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
}

.marking-page .caution .subtitle {
  color: #1E1E1E;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.22px;
  padding-top: 20px;
  padding-bottom:8px;
}

.marking-page .caution .detail {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.18px;
  list-style: inside;
}

.marking-page .caution .detail .highlight {
  color: #D0122B;
}

.marking-page .caution .detail .li {
  padding-left: 0;
}

.marking-page .detail li::marker {
  font-size: 0.5em;
}

/* ===========================
   기본 테이블 스타일
=========================== */
.marking {
  width: 100%;
  margin: 24px auto 0;
}

table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  height: 60px;
  font-family: 'Pretendard', sans-serif;
}

th {
  background-color: #a3a3a3;
  color: white;
  font-size: 20px;
  font-weight: 400;
  padding: 5px;
}

td {
  background-color: #fff;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 400;
}

/* ===========================
   PC 페이지 커스텀 스타일 (기존 인라인 스타일 이관)
=========================== */
.sec4 .player-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 20px;
  justify-items: stretch;
  padding-bottom: 80px;
}
.sec4 .player-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: none;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sec4 .player-card:hover {
  transform: translateY(-3px);
  transition: 0.2s;
  box-shadow: none;
}
.sec4 .player-card .kor {
  background-color: #17192D;
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 10px 6px 8px;
}
.sec4 .player-card .kor .order-num {
  font-size: 13px;
  font-weight: 400;
  color: #9CA0B5;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.sec4 .player-card .kor .player-name {
  font-size: 20px;
  font-weight: 400;
}
.sec4 .player-card .card-body {
  flex: 1;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sec4 .player-card .eng {
  background-color: transparent;
  border-top: none;
  color: var(--text-dark, #333);
  font-size: 18px;
  font-weight: 400;
  padding: 10px 4px 2px;
}
.sec4 .player-card .num {
  background-color: transparent;
  border-top: none;
  color: var(--text-dark, #17192D);
  font-size: 60px;
  font-weight: 700;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.sec4 .list-subtitle {
  color: #1E1E1E;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.24px;
  padding-bottom: 20px;
}
.sec4 + .sec4 {
  margin-top: 40px;
}
.sec4--embroidery .player-card .kor {
  background-color: #17192D;
}
.marking-page .caution .detail {
  margin: 0;
  padding-left: 0;
}
.marking-page .sec1 .inner-container .desc-a {
  padding-bottom: 108px;
}

.marking-page .sec2 {
  background-color: #F7F7F7;
}
.marking-page .sec2 ul li .title {
  color: #1E1E1E;
}
.marking-page .sec2 ul li .desc {
  color: #65656C;
}
.marking-page .sec3 {
  background-color: #F7F7F7;
}
.marking-page .sec3 .inner-container .title {
  color: #1E1E1E;
}
.marking-page .sec3 .inner-container .desc {
  color: #65656C;
}
/* 홈/원정 유니폼 그룹 타이틀 + 2x2 구성, 그룹 사이 구분선 */
.marking-page .sec2 {
  display: block;
  width: 100%;
}
.sec2-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.sec2-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sec2-group ul {
  width: 100%;
}
.sec2-group ul li {
  flex: 1 1 0;
  min-width: 0;
}
.sec2-group ul li img {
  width: 100%;
  height: auto;
  display: block;
}
.sec2-group .group-title {
  color: #1E1E1E;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.02em;
  padding-bottom: 24px;
}
.sec2-group .group-title span {
  font-weight: 700;
  font-size: 1em;
  margin-right: 12px;
}
.marking-page .sec2-group ul li .title {
  font-size: 20px;
  font-weight: 700;
  padding-top: 12px;
  padding-bottom: 6px;
}
/* 그룹은 세로로 쌓이므로 구분선은 가로선으로 표시 (2x2 레이아웃) */
.sec2-divider {
  display: none;
}
.sec2-group + .sec2-divider + .sec2-group {
  padding-top: 48px;
}
.sec4 {
  max-width: 1280px;
}
.marking-page .sec1 .inner-container {
  max-width: 1280px;
  padding: 0;
  margin: 0 auto;
}
.marking-page .sec3 .inner-container {
  max-width: 1280px;
  padding: 0;
  margin: 0 auto;
}

.ps-detail-content img {
    margin: 0;
}

/* ===========================
   제작 및 마킹 유의사항 - 항목별 이미지 토글
=========================== */
.marking-page .mk-notice-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 4px;
}

.marking-page .mk-notice-item {
  padding-top: 24px;
  border-top: 1px solid #DEDCD5;
}

.marking-page .mk-notice-item:first-child {
  padding-top: 0;
  border-top: none;
}

.marking-page .mk-notice-title {
  color: #1E1E1E;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.2px;
  padding-bottom: 6px;
}

.marking-page .mk-notice-desc {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.18px;
}

.marking-page .mk-notice-footnote {
  color: #65656C;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.15px;
  padding-top: 24px;
  margin-top: 4px;
}

.marking-page .marking-example-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: auto;
  margin-top: 12px;
  padding: 2px 0;
  background: none;
  border: none;
  color: #1E1E1E;
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.marking-page .marking-example-panel {
  margin-top: 16px;
  text-align: left;
}

.marking-page .marking-example-panel img {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
}
