.paragraph--type--alternating-image-text {
  max-width: 1526px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  padding-left: 43px;
  padding-right: 43px;
  position: relative;
  align-items: center;
  justify-content: center;

  @media (max-width: 767px) {
    flex-direction: column !important;
    gap: 40px;

    .text-content {
      text-align: center;
      margin: auto;

      .field--name-field-content {
        width: 75%;
        margin: 0 auto;
      }

      .field--name-field-pre-heading {
        font-size: 23px !important;
      }

      .field--name-field-heading {
        font-size: 33px;
      }

    }
  }

  @media (max-width: 1440px) {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .img-content {
    flex: 0 1 65%;
    position: relative;
    z-index: 2;

    img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    img {
      border-radius: 12px;
      /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70.6%, rgba(0, 0, 0, 0.20) 100%), url(<path-to-image>) lightgray 0px -107.037px / 100% 122.015% no-repeat; */
      box-shadow: 0 4px 64px 0 rgba(0, 0, 0, 0.25) inset;
    }
  }

  .text-content {
    flex: 0 1 35%;
    min-width: 0;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */

    .field--name-field-pre-heading {
      color: var(--Brand-Secondary, #DD3A31);
      font-family: var(--font-serif);
      font-size: 28px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%; /* 28px */
      text-transform: uppercase;
      text-align: left;
      margin-bottom: 10px;
    }

    .field--name-field-heading {
      color: var(--Brand-Primary, #25408E);
      font-family: var(--font-serif);
      font-size: 36px;
      font-style: normal;
      font-weight: 700;
      line-height: 110%; /* 39.6px */
      margin-bottom: 25px;
    }

    .field--name-field-cta-button {
      a {
        margin-top: 30px;
        display: inline-block;
        border: 1px solid transparent;
        padding: 12px 20px;
        border-radius: 6px;
        background: var(--Tertiary, #4AA8DE);
        color: var(--Pure-White, #FFF);
        /* text-align: center; */
        font-family: var(--font-sans);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 1; /* 77.778% */
        letter-spacing: 1.08px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all ease 0.3s;
        &:hover {
          border-radius: 6px;
          border: 1px solid var(--Brand-Secondary, #DD3A31);
          background: var(--Pure-White, #FFF);
          color: var(--Dark-Base, #282846);
        }
        @media (max-width: 550px) {
          font-size: 13px;
        }
      }
    }
  }
}
