/* ── POLICY PAGES ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--black);
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.policy-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin: 2rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-content p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.policy-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.policy-content ul li {
  position: relative;
  padding-left: 1.25rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.policy-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--grey-100);
  border-radius: 8px;
}

.policy-meta span {
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.04em;
}

.policy-meta strong {
  color: var(--black);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-highlight {
  background: #fff8e1;
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .policy-content {
    max-width: 100%;
  }
}
