/* policy-detail.css - 政策详情页 */
.page-hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.back-link {
  display: inline-block;
  font-size: var(--font-base);
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 500;
}
.back-link:hover { color: var(--primary-dark); }
.policy-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.policy-lead {
  background: var(--light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--font-base);
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 36px;
}
.policy-requirement {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: 0.25s;
}
.policy-requirement:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-soft);
}
.req-num {
  grid-row: 1 / 3;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}
.req-text {
  font-size: var(--font-base);
  color: var(--gray-900);
  line-height: 1.8;
}
.req-module {
  font-size: var(--font-tiny);
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 6px;
  line-height: 1.6;
}
.req-module strong { font-weight: 700; }
