.t_tizers_v1 {
  .header_info{
    .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_v1_item {

    .tizer_second {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
      margin-top: 24px;
      .tizer {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 6px;
        border-radius: var(--br24);
        background: var(--grey-FA);
        .t_title {
          margin-bottom: 20px;
          font-weight: 500;
          font-size: 20px;
          line-height: 100%;
          letter-spacing: -0.03rem;
        }

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

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

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