/* === Guidelines Page === */
.page-guidelines {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

.page-guidelines h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

/* 공통 League Block */
.league-block {
  margin-bottom: 3rem;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.league-header {
  padding: 1.5rem;
  text-align: center;
}
.league-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.league-header .period {
  font-size: .95rem;
  margin-top: .3rem;
  color: var(--muted);
}

/* Junior League 헤더 (밝은 톤) */
.bg-light {
  background: #f9fafb;
  border-bottom: 2px solid var(--burgundy);
}
.bg-light h2 {
  color: var(--burgundy);
}

/* Senior League 헤더 (밝은 화이트톤, 텍스트 강조) */
.bg-burgundy {
  background: #fff !important;
  color: var(--burgundy) !important;
  border-bottom: 2px solid var(--burgundy);
}
.bg-burgundy h2 {
  color: var(--burgundy);
}
.bg-burgundy .period {
  color: var(--muted) !important;
}

/* League Body (카드들) */
.league-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 1.5rem;
}

/* 개별 카드 */
.guideline-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
}
.guideline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}
.guideline-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: .5rem;
}
.guideline-card ul {
  padding-left: 1.2rem;
  margin: 0;
  font-size: .95rem;
}
.guideline-card ul li {
  margin-bottom: .3rem;
}
