.introduction-block {
  position: relative;
  margin-block: 2rem;
  overflow: hidden;
  background-color: #002970;

  @media screen and (min-width: 47.5em) {
    margin-block: 4rem;
  }

  .introduction-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .svg-wrapper {
    width: 120%;
    height: 120%;
    position: relative;
    transform: translateX(-160px) translateY(-320px);

    @media screen and (min-width: 26.5625em) {
      transform: translateX(-660px) translateY(-320px);
    }

    @media screen and (min-width: 47.5em) {
      width: 120%;
      height: 120%;
      transform: translateX(-250px);
    }

    @media screen and (min-width: 87.5em) {
      transform: translateX(-440px);
    }

    svg {
      position: absolute;
      width: 200%;
      height: 200%;
      object-fit: contain;
      opacity: 0.2;

      @media screen and (min-width: 47.5em) {
        width: 100%;
        height: 100%;
      }
    }
  }

  .content-wrapper {
    position: relative;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    justify-content: center;

    @media screen and (min-width: 47.5em) {
      justify-content: flex-end;
    }
  }

  .card {
    position: relative;
    background-color: #fff;
    padding: 1.5em;
    width: 100%;
    margin-block: 2.5em;
    margin-inline: 1em;

    @media screen and (min-width: 26.5625em) {
      padding: 2em;
      margin-block: 4.5em;
      margin-inline: 2.5em;
    }

    @media screen and (min-width: 47.5em) {
      width: 50%;
      margin-block: 6em;
      margin-inline: 4em;

      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #ffbec4;
        z-index: -1;
        transform: translate(1.5em, 1.5em);
      }
    }

    @media (min-width: 1200px) {
      padding: 2.5em;
    }

    h2 {
      color: #002970;
      margin-bottom: 0.75em;
      line-height: 1.2;
    }

    p {
      color: #002970;
      margin-bottom: 1.5em;
    }
  }

  .cta-button {
    display: block;
    text-align: center;
    padding: 0.75em;
    margin-top: 20px;
    background-color: #ffbec4;
    color: #002970;
    text-decoration: none;
    border-radius: 4px;
    font-family: "Circular-Pro-Bold", sans-serif;

    @media screen and (min-width: 47.5em) {
      display: inline-block;
      text-align: left;
      padding: 0;
      margin-top: 0;
      background-color: transparent;
      color: #002970;
      border-radius: 0;
      border-bottom: 2px solid #002970;
    }

    &:hover {
      background-color: #002970;
      color: #ffbec4;

      @media screen and (min-width: 47.5em) {
        border-bottom: 2px solid transparent;
        background-color: transparent;
        color: #002970;
      }
    }
  }
}
