@layer blocks {
  .statement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 5rem;
    background: var(--theme-surface-primary);
  }
  .statement__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 100vh;
  }
  @media (min-width: 1024px) {
    .statement__inner {
      min-height: max(100vh, 900px);
    }
  }
  .statement.half-width .statement__inner {
    min-height: 0;
  }
  @media (min-width: 768px) {
    .statement.half-width .statement__content {
      grid-column: 1/7;
    }
  }
  .statement__text {
    text-align: center;
    color: var(--theme-text-primary);
  }
  .statement.half-width .statement__text {
    text-align: left;
  }
  @media (min-width: 768px) {
    .statement.half-width .statement__text {
      max-width: 46.4375rem;
    }
  }
  .statement.half-width {
    background: transparent;
    padding-block: 4rem;
  }
  @media (min-width: 1024px) {
    .statement.half-width {
      padding-block: 6.5rem;
    }
  }
}