.title-text-benefit-cards {
  .text-title-wrapper {
    display: flex;
    gap: 16px;

    @media screen and (max-width: 740px) {
      flex-direction: column;
    }
    @media screen and (min-width: 740px) {
      .label-title_left,
      .text_right {
        width: 50%;
      }
    }

    .label-title_left {
      .label {
        width: fit-content;
        color: #000;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 450;
        line-height: 24px;
        display: flex;
        padding: 3px 16px 4px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 88px;
      }

      .title {
        color: #606165;
        font-family: Aeonik;
        font-size: 52px;
        font-weight: 250;
        line-height: 100%;
        letter-spacing: -0.78px;
        margin: 0;
        margin-top: 34px;
        max-width: 506px;

        @media screen and (max-width: 740px) {
          font-size: 32px;
          font-weight: 250;
          line-height: 1;
          letter-spacing: -0.48px;
        }

        strong {
          color: #000000;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: -0.78px;
        }
      }
    }

    .label-title_left:not(:has(.label)) {
      .title {
        margin-top: 0;
      }
    }

    .text_right {
      .rte {
        font-size: 18px;
        line-height: 23px;
        color: rgba(0, 0, 0, 0.6);
        margin: 0 auto;

        @media screen and (max-width: 740px) {
          line-height: 1.2;
          color: #3d3f4a;
          font-weight: 300;
        }

        strong {
          color: #000;
          font-weight: 500;
        }
      }
    }
  }

  .benefits-wrapper {
    --gap: 32px;
    display: grid;
    gap: var(--gap);
    margin-top: 80px;
    align-items: start;
    grid-template-columns: 1fr;

    @media screen and (min-width: 600px) {
      --gap: 16px;
      grid-template-columns: repeat(2, 1fr);

      .benefit-card:nth-child(1) {
        margin-top: 0;
      }
      .benefit-card:nth-child(2) {
        margin-top: var(--card-offset, 80px);
      }
      .benefit-card:nth-child(3),
      .benefit-card:nth-child(5) {
        margin-top: calc(-1 * var(--card-offset, 80px));
      }
    }

    @media screen and (min-width: 1024px) {
      grid-template-columns: repeat(3, 1fr);

      .benefit-card:nth-child(6n - 5) {
        margin-top: 0;
      }
      .benefit-card:nth-child(6n - 4) {
        margin-top: var(--card-offset, 80px);
      }
      .benefit-card:nth-child(6n - 3) {
        margin-top: calc(2 * var(--card-offset, 80px));
      }
      .benefit-card:nth-child(6n - 2) {
        margin-top: calc(-2 * var(--card-offset, 80px));
      }
      .benefit-card:nth-child(6n - 1) {
        margin-top: calc(-1 * var(--card-offset, 80px));
      }
      .benefit-card:nth-child(6n) {
        margin-top: 0;
      }
    }

    .benefit-card {
      display: flex;
      flex-direction: column;

      img {
        border-radius: 16px;
        max-height: 443px;
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block;
      }

      .benefit_title {
        font-family: "Aeonik";
        color: #000;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: -0.48px;
        margin: 0;
        margin-top: 32px;
      }

      .benefit_description {
        color: rgba(0, 0, 0, 0.6);
        font-family: "PP Neue Montreal";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: 0.16px;
        margin-top: 24px;
      }
    }
  }

  .rte strong {
    color: #000;
  }
}


@media screen and (max-width: 749px) {
  .title-text-benefit-cards .text-title-wrapper {
    max-width: 100%;
  }
}
