.t_tizers_v2 {
  padding: 32px!important;
  background: var(--grey-FA);
  border-radius: var(--br24);
  .header_info{
    max-width: 670px;
    margin-bottom: 24px;
    .header_info__title{
      font-weight: 500;
      font-size: clamp(24px,3vw,42px);
      line-height: 100%;
      letter-spacing: -3%;
      color: var(--black-21);
      margin-bottom:12px;
    }
    .header_info__desc{
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      letter-spacing: 0;
    }
  }

  .t_tizers_v2_item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    .tizer_second {
      max-width: 670px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      @media screen and (width <= 780px) {
        gap:30px;
        margin-bottom:30px;
      }
      .tizer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        .t_title {
          font-weight: 500;
          font-size: 16px;
          line-height: 100%;
          letter-spacing: -0.03rem;
        }

        .t_item {
          display: flex;
          gap: 10px;
          align-items: center;

          > img {
            width: 24px;
            height: 24px;
            display: block;
            object-fit: cover;
          }

          .tizer_title {
            font-weight: 400;
            color: var(--black-21);
            font-size: 15px;
            line-height: 100%;
            letter-spacing: -0.02rem;
          }
        }
      }
    }
  }
}