[data-component-id="avchildcare:cta"] {

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
  background: var(--background-tertiary);
  height: 1127px;
  padding: 0 20px;

  margin-bottom: -18%;

  & .cta__image {
    padding: 64px 0;

    & img {
      -webkit-mask-image: url('../../images/assets/cta-stone-mask.svg');
      mask-image: url('../../images/assets/cta-stone-mask.svg');
      max-width: 514px;
      width: 100%;
      aspect-ratio: 514/552;
      object-fit: cover;
    }
  }

  & .cta__image,
  & .cta__content {
    position: relative;
  }
  & .cta__content { z-index: 2; }
  & .cta__image { z-index: 0; }

  & .cta__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;

    & img {
      object-fit: cover;
    }
    & .pc {
      display: none;
    }
    & .mb {
      display: block;
    }
  }

}

@media (min-width: 1200px) {
  [data-component-id="avchildcare:cta"] {
    padding: 0 64px;
    & .cta__image  {
      padding: 48px 64px;
    }    
  }  
}
@media (min-width: 900px) {
  [data-component-id="avchildcare:cta"] {
    flex-direction: row;
    gap: 20px;
    height: 954px;
    padding: 0 48px;

    & .cta__image  {
      padding: 48px 32px;
    }

    & .cta__bg {
      & .pc {
        display: block;
      }

      & .mb {
        display: none;
      }
    }
  }
}