/* =========================================================
   1. 기본 레이아웃 & 공통 텍스트
========================================================= */

/* 전체 박스 */
.wf-box {
  background: #fff;
}

/* 상단 설명 문장 */
.wf-lead {
  margin: 0 0 12px;
  line-height: 1.7;
  color: #222;
}

/* 블록 간 간격 */
.wf-block {
  margin-top: 12px;
}

/* 일반 본문 텍스트 */
.wf-text {
  margin: 0;
  line-height: 1.75;
}

/* 주석/보조 문장 */
.wf-note {
  color: #666;
  font-size: 0.92em;
  margin-left: 4px;
}

/* : 뒤 본문 텍스트 */
.wf-inline {
  color: #222;
  font-weight: 400;
}

/* =========================================================
   2. 제목 (○ 파란 동그라미 스타일)
========================================================= */

.wf-head {
  position: relative;
  margin: 0 0 6px;
  padding-left: 18px;
  font-weight: 800;
  color: #0b4da2;
}

/* 앞에 ○ 아이콘 */
.wf-head::before {
  content: '○';
  position: absolute;
  left: 0;
  top: 0;
  color: #0b4da2;
  font-weight: 800;
}

/* 동그라미 제거용 (특정 문장만 적용) */
.no-bullet {
  padding-left: 0;
}

.no-bullet::before {
  content: none !important;
}

/* =========================================================
   3. 리스트 스타일 (▷)
========================================================= */

.wf-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.wf-list li {
  position: relative;
  padding-left: 18px;
  margin: 4px 0;
  line-height: 1.75;
}

.wf-list li::before {
  content: '▷';
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 700;
}

/* =========================================================
   4. 강조 색상
========================================================= */

.highlight-red {
  color: #d32f2f;
  font-weight: 800;
}

.highlight-blue {
  color: #0076c8;
  font-weight: 800;
}

.highlight-sky {
  color: #00bfff;
  font-weight: 800;
}

.highlight-pink {
  color: #ff2a8a;
  font-weight: 800;
}

/* =========================================================
   5. 안내 박스 (파란 배경)
========================================================= */

.blue-box {
  margin: 14px 0;
  padding: 12px 14px;
  background: #d8edf7;
  border-radius: 8px;
  line-height: 1.7;

  color: #222; /* 🔥 검정색 */
  font-weight: 400; /* 🔥 기본 굵기 */
}

/* =========================================================
   6. 신고 안내 영역 (특수 박스)
========================================================= */

.wf-callout {
  margin-top: 14px;
  border-top: none;
}

.wf-callout-title {
  margin-bottom: 6px;
  font-weight: 800;
  color: #0b4da2;
}

.wf-callout-body {
  line-height: 1.7;
  color: #222;
}

/* =========================================================
   7. 표 스타일 (기존 공통 테이블)
========================================================= */

.table-container table {
  border-top: 1px solid #e3e3e3;
}

.table-container table td,
.table-container table th {
  text-align: center;
  vertical-align: middle;
}

/* =========================================================
   8. 출연진 / 이미지 리스트 (4월호에만 필요함/나중에 지우기)
========================================================= */

.artist-row {
  display: flex;
  justify-content: flex-start; /* 가운데 정렬 말고 왼쪽부터 */
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
  padding: 0 4px 8px; /* 좌우/아래 여유 */
}

.artist-item {
  flex: 0 0 110px; /* 고정폭 */
  width: 110px;
  text-align: center;
}

.artist-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 6px;
}

.artist-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

/* 모바일 대응 */
@media (max-width: 640px) {
  .artist-item {
    width: calc(50% - 6px);
  }
}

/* =========================================================
   9. gf-* 구조 (별도 스타일 - 필요할 때만 사용)
========================================================= */

/* 제목 (○ 스타일, wf보다 강조 강함) */
.gf-head {
  position: relative;
  padding-left: 18px;
  font-weight: 900;
  color: #0b4da2;
  margin-bottom: 6px;
}

.gf-head::before {
  content: '○';
  position: absolute;
  left: 0;
  top: 0;
  color: #0b4da2;
  font-weight: 900;
}

/* ▷ 리스트 */
.gf-tri-list {
  list-style: none;
  margin: 4px 0 12px;
  padding: 0;
}

.gf-tri-list li {
  position: relative;
  padding-left: 18px;
  margin: 4px 0;
  line-height: 1.7;
  font-weight: 600;
}

.gf-tri-list li::before {
  content: '▷';
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 800;
}

/* 기타 텍스트 */
.gf-event-title {
  font-weight: 800;
}

.gf-colon {
  margin-right: 4px;
}

.gf-sports {
  font-weight: 400;
}

.flex-line {
  display: flex;
}

.label {
  min-width: 70px; /* 🔥 줄임 (기존 90px → 70px) */
}

.value {
  flex: 1;
  color: #222; /* 🔥 검정색 */
  font-weight: 400; /* 🔥 기본 굵기 */
}
