/* ── Shared Policy Page Styles ── */
body { background: #f5f7fa; }

/* Layout */
.policy-layout {
  max-width: 1380px; margin: 0 auto; padding: 64px 28px 96px;
  display: grid; grid-template-columns: 220px 1fr; gap: 52px;
  align-items: start;
}

/* TOC sidebar */
.policy-toc { position: sticky; top: 130px; }
.policy-toc-title {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #1976d2;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.policy-toc-title::before { content: ''; display: block; width: 16px; height: 2px; background: #1976d2; }
.policy-toc-list { list-style: none; padding: 0; margin: 0 0 24px; }
.policy-toc-list li { border-bottom: 1px solid #f0f0f0; }
.policy-toc-list li a {
  display: block; padding: 9px 0;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: #6b7280; text-decoration: none; transition: color 0.18s;
}
.policy-toc-list li a:hover { color: #1976d2; }

/* Meta box */
.policy-meta { background: #1a2332; padding: 18px; border-radius: 8px; }
.policy-meta-item { margin-bottom: 12px; }
.policy-meta-item:last-child { margin-bottom: 0; }
.policy-meta-label {
  font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35);
  display: block; margin-bottom: 3px;
}
.policy-meta-value { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.65); }
.policy-meta-value a { color: #42a5f5; text-decoration: none; }
.policy-meta-value a:hover { text-decoration: underline; }

/* Content */
.policy-intro {
  font-family: 'Inter', sans-serif; font-size: 15px; color: #4b5563;
  line-height: 1.85; margin-bottom: 48px; padding-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
}
.policy-section { margin-bottom: 52px; scroll-margin-top: 140px; }
.policy-section:last-child { margin-bottom: 0; }
.policy-section-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.policy-section-num {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: #1976d2; flex-shrink: 0;
}
.policy-section-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900;
  letter-spacing: -0.02em; color: #1a1a2e; line-height: 1;
}
.policy-subhead {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  color: #1a1a2e; margin: 24px 0 10px;
}
.policy-text {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #4b5563;
  line-height: 1.8; margin-bottom: 14px;
}
.policy-text:last-child { margin-bottom: 0; }
.policy-list { list-style: none; padding: 0; margin: 0 0 16px; }
.policy-list li {
  font-family: 'Inter', sans-serif; font-size: 14px; color: #4b5563;
  line-height: 1.7; padding: 7px 0 7px 22px; position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before { content: '→'; position: absolute; left: 0; color: #1976d2; font-size: 11px; top: 10px; }
.policy-highlight {
  background: #e3f2fd; border-left: 3px solid #1976d2;
  padding: 14px 18px; margin: 20px 0; border-radius: 0 8px 8px 0;
  font-family: 'Inter', sans-serif; font-size: 14px; color: #374151; line-height: 1.75;
}
.policy-highlight strong { color: #1a1a2e; }

/* Table */
.policy-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-table th {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  background: #1a2332; padding: 12px 16px; text-align: left;
}
.policy-table td {
  font-family: 'Inter', sans-serif; font-size: 13px; color: #4b5563;
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
}
.policy-table tr:nth-child(even) td { background: #f8fafc; }
.policy-table tr:last-child td { border-bottom: none; }
.policy-table td strong { color: #1a1a2e; font-weight: 600; }

/* Divider */
.policy-divider { height: 1px; background: #e5e7eb; margin: 40px 0; }

/* Responsive */
@media (max-width: 960px) {
  .policy-layout { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px 72px; }
  .policy-toc { position: static; }
}
@media (max-width: 480px) {
  .policy-layout { padding: 32px 14px 60px; }
  .policy-section-title { font-size: 24px; }
}
