/* Protection page */

.page-protection {
  background: var(--cream-page, #ebe8e0);
}

.page-protection .page-banner {
  display: block;
}

.protection-intro {
  max-width: 58ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-muted, #5a5752);
}

.protection-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
}

.protection-pillar {
  background: var(--white, #fff);
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 28px rgba(46, 44, 40, 0.08);
}

.protection-pillar h2 {
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--ink, #2e2c28);
}

.protection-pillar p {
  margin: 0;
  line-height: 1.65;
  color: var(--ink-muted, #5a5752);
}

.protection-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.protection-cta p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--ink-muted, #5a5752);
}

.protection-cta .btn + .btn {
  margin-left: 0.75rem;
}

@media (max-width: 540px) {
  .protection-cta .btn {
    display: block;
    width: 100%;
    margin: 0 0 0.75rem;
  }

  .protection-cta .btn + .btn {
    margin-left: 0;
  }
}
