.inline-cta-banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
  border-radius: 5px;

  & > div {
    width: 100%;
  }

  & > div:first-child h2 {
    margin: 35px 0 25px;
    font-size: 2rem;
  }

  .callouts {
    width: 100%;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px;

    & > div {
      width: calc(25% - 11.25px);

      & > div {
        margin: 0 auto 15px;
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
        border-radius: 50%;
        
        img {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 55%;
        }
      }

      span {
        display: inline-block;
        font-size: .75rem;
      }
    }
  }

  & > div:nth-child(2) h2 {
    font-size: 4rem;
  }

  a {
    margin: 25px 0 40px;
  }

  @media screen and (min-width: 460px) {
    .callouts > div span {
      font-size: .9rem;
    }
  }

  @media screen and (min-width: 460px) and (max-width: 767.9px) {
    & > div:first-child h2 {
      font-size: 2.5rem;
    }

    & > div:nth-child(2) h2 {
      font-size: 5rem;
    }
  }

  @media screen and (min-width: 768px) {
    & > div {
      width: initial;
      flex: 1;
      flex-direction: column;
      justify-content: center;
    }

    a {
      margin-bottom: 0;
    }
  }

  @media screen and (min-width: 1200px) {
    & > div:first-child h2 {
      font-size: 2.5rem;
    }

    & > div:nth-child(2) h2 {
      font-size: 5rem;
    }
  }

  @media screen and (min-width: 1600px) {
    .callouts > div span br {
      display: none;
    }
  }
}
