.cta-section {
  /* padding-bottom: var(--block-space-lg); */
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;

  place-content: center;
  height: 420px;
  @media (min-width: 769px) {
    height: 730px;
  }

  &.cta-page {
    @media (min-width: 1025px) {
      height: 460px;
    }
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
}

.cta {
  position: relative;
  z-index: 1;
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; */
  /* padding-block: 4rem; */

  /* border-radius: var(--border-radius-lg); */
  /* position: relative;
  overflow: hidden; */
  /* animation: slide-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
  margin-top: -50px; */
  /* place-content: center;
  height: 420px;
  @media (min-width: 769px) {
    height: 730px;
  } */

  /* &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  } */

  /* &.cta-page {
    @media (min-width: 1025px) {
      height: 460px;
    }
  } */

  .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
    gap: var(--block-space-sm);
    max-width: 700px;

    > * {
      color: white;
    }

    a:hover {
      background-color: var(--background-color);
      color: var(--brand-primary);
    }
  }
}
