.policy-page {
  box-sizing: content-box;
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  color: rgb(68, 65, 59);
  background: transparent;
}

/* Platform wraps each block in <div id="shopline-block-…">; that wrapper is the
   real child of __body, so the block spacing lives on it. `:last-child` can't be
   used on the inner block (each is the only child of its own wrapper). */
.policy-page__body > [id^="shopline-block-"] {
  margin-bottom: 52px;
}

.policy-page__body > [id^="shopline-block-"]:last-of-type {
  margin-bottom: 0;
}

.policy-page__head {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

.policy-page__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: #e2f9a1;
}

.policy-page__heading {
  margin: 0 0 16px;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  color: rgb(20, 20, 20);
}

.policy-page__intro {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgb(85, 82, 75);
}

.policy-page__block.is-boxed {
  padding: 32px;
  background: rgb(245, 243, 239);
}

.policy-page__block-heading {
  margin: 0 0 22px;
  font-family: var(--sort-title-font, "Archivo Black", sans-serif);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(20, 20, 20);
}

.policy-page__block-intro {
  margin: -8px 0 20px;
  font-size: 14.5px;
  color: rgb(85, 82, 75);
}

/* Checklist */
.policy-page__checklist-items ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-page__checklist-items li {
  position: relative;
  padding-left: 36px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgb(68, 65, 59);
}

.policy-page__checklist-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.policy-page__checklist--check .policy-page__checklist-items li::before {
  background-color: #e2f9a1;
  color: #000;
}

.policy-page__checklist--cross .policy-page__checklist-items li::before {
  content: "✕";
  background-color: #1f333a;
  color: #fff;
}

.policy-page__checklist-items li strong {
  color: rgb(20, 20, 20);
}

.policy-page__rate-note {
  margin: 20px 0 0;
}

/* Rate grid */
.policy-page__rate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.policy-page__rate {
  padding: 20px;
  border: 1px solid rgb(226, 222, 215);
}

.policy-page__rate-label {
  margin-bottom: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(138, 134, 125);
}

.policy-page__rate-value {
  font-family: var(--sort-title-font, "Archivo Black", sans-serif);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  color: rgb(20, 20, 20);
}

/* Rich text block */
.policy-page__rich-body,
.policy-page__rich-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgb(68, 65, 59);
}

.policy-page__rich-body p + p {
  margin-top: 14px;
}

/* CTA */
.policy-page__cta {
  text-align: center;
}

.policy-page__cta-text,
.policy-page__cta-text p {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgb(68, 65, 59);
}

/* a.class (0,1,1) to out-specify the base theme's a:not(.button) link colour. */
a.policy-page__cta-button {
  display: inline-block;
  padding: 17px 40px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: rgb(20, 20, 20);
  transition: background 0.2s ease, color 0.2s ease;
}

a.policy-page__cta-button:hover {
  background: #e2f9a1;
  color: #000;
}

/* Links inside body text keep the underline but the ink colour. */
a.policy-page__cta-text-link,
.policy-page__rich-body a,
.policy-page__cta-text a {
  color: rgb(20, 20, 20);
}

@media (max-width: 599px) {
  .policy-page__rate-grid {
    grid-template-columns: 1fr;
  }
}
