  .stack-promo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;

  }

  .stack-promo-bg {
    position: absolute;
    background-image: url(https://www-static.spulsecdn.net/images/events_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    inset: 62px 0 0 0;
  }

  .stack-promo-content {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-areas: 
      "image"
      "text";
    padding: 10px 20px;
    /* text-align: center; */
  }

  .stack-promo-text {
    grid-area: text;
    max-width: 80vw;
    justify-self: center;
    margin-block: 10px 20px;
  }

  .stack-promo-text h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #0D1330; 
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
  }

  .stack-promo-text h1.stack-promo-huge {
    font-size: 30px;
  }

  .stack-promo-text p {
    margin: 10px 0;
    line-height: 1.3;
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 500;
  }

  .stack-promo-code {
    font-weight: 700;
    color: #3FC0C3;
  }

  .stack-promo-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }

  .stack-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3FC0C3;
    height: 36px;
    color: #FFFFFF;
    line-height: 1;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }

  .stack-promo-img {
    margin: 20px 0 0px 0;
    grid-area: image;
    max-height: 340px;
    max-width: 100%;
  }

  @media screen and (min-width: 640px) {
    .stack-promo {
      margin-top: 60px;
      overflow: hidden;
    }

    .stack-promo-bg {
      inset: 20px 0 0 0;
    }

    .stack-promo-content {
      display: grid;
      grid-template-columns: minmax(240px, 340px) 1fr;
      grid-template-rows: none;
      grid-template-areas: "text image";
      align-items: end;
      gap: 20px;
      padding: 20px;
    }

    .stack-promo-text {
      text-align: left;
      align-self: self-end;
      margin-bottom: 0px;
    }

    .stack-promo-text h1 {
      font-size: 26px;
    }

    .stack-promo-buttons {
      flex-direction: column;
      justify-content: flex-start;
      gap: 15px;
      align-items: flex-start;
      z-index: 10;
      position: relative;
    }

    .stack-promo-img {
      max-height: none;
    }
  }

  @media screen and (min-width: 740px) {
    .stack-promo-text {
      align-self: center;
    }
    .stack-promo-text p {
      font-size: 17px;
    }
  }

  @media screen and (min-width: 1000px) {
    .stack-promo-content {
      max-width: 1000px;
      margin: 0 auto;
    }
    .stack-promo-text h1 {
      font-size: 38px;
    }
    .stack-promo-text p {
      margin: 20px 0;
    }
    .stack-promo-bg {
      inset: 40px 0 0 0; 
    }
  }
