/**
 * Cross Farm Digital — Privacy Policy Styles
 *
 * @package CrossFarm
 */

.policy-page {
  min-height: 100vh;
  background: #F5F3EE;
  color: #1a1a2e;
  font-family: 'Libre Baskerville', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.policy-header {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(26,26,46,0.08);
  background: #fff;
}

.policy-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.policy-brand-1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #1a1a2e;
}

.policy-brand-2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #c0401a;
}

/* ── Content ── */
.policy-content {
  flex: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.policy-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.policy-updated {
  font-size: 0.85rem;
  color: #5c5a54;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Block content */
.policy-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a3a48;
}

.policy-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1a1a2e;
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.policy-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1a1a2e;
  margin: 2rem 0 0.75rem;
}

.policy-body p {
  margin-bottom: 1.25rem;
  color: #3a3a48;
}

.policy-body a {
  color: #c0401a;
  text-decoration: none;
  border-bottom: 1px solid rgba(192,64,26,0.3);
  transition: border-color 0.3s;
}

.policy-body a:hover {
  border-color: #c0401a;
}

.policy-body ul,
.policy-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #3a3a48;
}

.policy-body li {
  margin-bottom: 0.5rem;
}

.policy-body strong {
  color: #1a1a2e;
  font-weight: 700;
}

.policy-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.policy-body th {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid rgba(26,26,46,0.12);
  color: #5c5a54;
  background: rgba(26,26,46,0.03);
}

.policy-body td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(26,26,46,0.06);
}

/* ── Footer ── */
.policy-footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(26,26,46,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy-back {
  font-size: 0.85rem;
  color: #c0401a;
  text-decoration: none;
  transition: opacity 0.3s;
}

.policy-back:hover {
  opacity: 0.7;
}

.policy-footer p {
  font-size: 0.78rem;
  color: #8a8680;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .policy-header { padding: 1rem 1.5rem; }
  .policy-content { padding: 2.5rem 1.5rem; }
  .policy-footer { padding: 1.5rem; }
}
