.two_columns_compact {
  margin-bottom: 24px;

  .h_title {
    .alert-heading {
      font-size: 2.25rem;
      font-weight: 300;
      letter-spacing: 0;
    }
  }

  .description {
    text-align: center;

    p {
      font-weight: 300;
      letter-spacing: 0;
      margin: 0;
      font-size: 1.25rem;
      margin-top: 40px;
      margin-bottom: 40px;
    }
  }

  .two-columns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 2040px;
    min-height: 657px;
    position: relative;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;

    .left {
      aspect-ratio: 1 / 1;
      bottom: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 33%;

      .image__container {
        height: 100%;
        width: 100%;

        img {
          aspect-ratio: 1 / 1;
          height: 100%;
          object-fit: cover;
          width: 100%;
        }
      }
    }

    .right {
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      display: -ms-flexbox;
      display: flex;
      justify-content: flex-end;
      margin: 0 auto;
      max-width: 73.125rem;
      width: 100%;
      padding: 24px;
      flex-direction: column;

      .text__container {
        margin-left: auto;
        width: calc(66% - 40px);
        z-index: 1;

        .c_text {
          padding: 0;

          .h_title {
            margin-top: 0;
            margin-bottom: 1rem;

            .alert-heading {
              font-size: 1.75rem;
              text-align: left;
              line-height: 1.4;
              max-width: none;
              font-weight: 300;
              letter-spacing: 0;
              margin: 0;
            }
          }

          .subtext {
            margin: 0;
            padding: 0;
            text-align: left;

            ul {
              li {
                font-weight: 300;
                letter-spacing: 0.25px;
                margin-bottom: 1rem;
                position: relative;
                text-align: start;

                margin-top: 0;

                &::before {
                  margin-left: 0;
                  margin-right: 0.625rem;
                }
              }
            }
          }
        }
      }

      .cta__container {
        margin-left: auto;
        width: 100%;
        z-index: 1;
        display: flex;
        padding-top: 48px;

        .cta_button {
          justify-content: start;

          .btn-transparent-link {
            padding: 0;
            color: var(--color-red);

            a {
              padding: 0;
            }
          }
        }
      }
    }
  }
}

@media (min-width: 1024px) {
  .two_columns_compact {
    .two-columns {
      .text__container {
        .h_title {
          .alert-heading {
            font-size: 1rem;
          }

          h1 {
            font-size: 1rem;
          }
        }

        .subtext {
          p {
            font-size: 1rem;
          }

          ul {
            li {
              font-size: 1rem;
            }
          }
        }
      }

      .cta__container {
        .cta_button {
          .btn-transparent-link {
            font-size: 1rem;
          }
        }
      }
    }
  }
}

@media (max-width: 1024px) {
  .two_columns_compact {
    .two-columns {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-box-shadow: none;
      box-shadow: none;
      -ms-flex-direction: column;
      flex-direction: column;
      margin: 0;
      padding: 0;
      width: auto;

      .left {
        position: relative;
        width: 100%;
        height: auto;
      }

      .right {
        box-sizing: border-box;
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        margin-top: -90px;
        padding: 20px;

        .text__container {
          background: var(--color-white);
          border-radius: 4px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
          margin-left: 0 !important;
          padding: 24px 16px;
          margin: 0;
          box-sizing: border-box;
          width: 100% !important;
  
          .c_text {
            .h_title  {
              .alert-heading {
                font-size: 1.125rem;
                line-height: 26px;
              }
            }
          }
  
          .subtext {
            p {
              font-size: 1rem;
            }
  
            ul {
              li {
                font-size: 1rem;
              }
            }
          }
  
          .cta__container {
            width: 100% !important;
          }
        }
      }


      .description {
        p {
          font-size: 1rem;
          line-height: 1.375rem;
        }
      }
    }

    .h_title {
      margin: 35px 0;

      .alert-heading {
        font-size: 1rem;
        line-height: 1.375rem;
      }
    }
  }
}