/* ============================================
   POLICIES & PROCEDURES PAGE
   ============================================ */

/* ── Hero ── */
.policies-hero {
  background: var(--navy);
  color: var(--white);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 260px 120px;
  box-sizing: border-box;
}

.policies-hero-inner {
  max-width: 914px;
  margin: 0 auto;
}

.policies-hero h1 {
  margin: 0 0 24px;
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 52px;
  line-height: 72px;
  font-weight: 600;
  color: #ffffff;
}

.policies-hero p {
  margin: 0;
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.025em;
  color: #ffffff;
}

/* ── Content Wrapper ── */
.policies-body {
  background: #ffffff;
  padding: 100px clamp(24px, 6vw, 260px) 140px;
}

.policies-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Category Block (Parents / Players / Club Policies) ── */
.policies-category {
  margin-bottom: 80px;
}

.policies-category:last-child {
  margin-bottom: 0;
}

.policies-category-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 18px;
}

.policies-category-title {
  font-family: "Pretendard", "Inter", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 32px;
}

/* ── Intro paragraph (appears right below category title) ── */
.policies-intro {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* ── Policy Item (subsection) ── */
.policy-item {
  border-top: 1px solid var(--gray-lt);
  padding: 36px 0 0;
  margin-top: 36px;
}

.policy-item:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-item-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.policy-item-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.policy-item-body + .policy-item-body {
  margin-top: 14px;
}

/* ── Bullet list inside policy items ── */
.policy-list {
  margin: 14px 0 0 0;
  padding-left: 20px;
  list-style: disc;
}

.policy-list li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 8px;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

/* sub-list (indented second level) */
.policy-sublist {
  margin: 8px 0 0 0;
  padding-left: 20px;
  list-style: circle;
}

.policy-sublist li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 6px;
}

/* ── Arrival time table ── */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.policy-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.policy-table td {
  padding: 12px 16px;
  color: #444;
  border-bottom: 1px solid var(--gray-lt);
  line-height: 1.6;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:nth-child(even) td {
  background: #f9fafb;
}

/* ── Divider between categories ── */
.policies-divider {
  border: none;
  border-top: 2px solid var(--gray-lt);
  margin: 80px 0;
}

/* ── Responsive ── */
@media (max-width: 1500px) {
  .policies-hero {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 1200px) {
  .policies-hero {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 768px) {
  .policies-hero {
    min-height: 420px;
    padding: 80px 24px;
  }

  .policies-hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .policies-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .policies-body {
    padding: 70px 24px 100px;
  }

  .policies-category-title {
    font-size: 28px;
  }

  .policy-item-title {
    font-size: 18px;
  }

  .policy-table th,
  .policy-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}
