.s-guide-tools-list {
  padding-top: 34px; 
  .s-guide-tools-list__l-grid {
    .s-guide-tools-list__col_table {
      flex-basis: 60%;
      max-width: 60%;
      .table__row {
        gap: 1rem;
        
        .table__column {
          min-width: 0;
          width: 27%;
        }
  
        .table__column_head {
          width: 40%;
        }
      }
    }
    
    @media(max-width: 767px) {
      flex-direction: column;

      .s-guide-tools-list__col_table {
        flex-basis: auto;
        max-width: none;
        
        .table__row {      
          
          .table__column {
            min-width: 0;
            width: 100%;
          }
    
          .table__column_head {
            width: 100%;
          }
        }
      }
    }
  }
  
  .s-guide-tools-list__col_info {
    @media(max-width: 767px) {
      max-width: none;
    }
    max-width: 40%;
  }
}
.s-guide-steps-list {
  .s-guide-steps-list__img {
    object-fit: contain;
  } 

  .s-guide-steps-list__graphic {
    max-height: 300px;
    max-width: 90vw;
  }
}

.s-guide-video__section {
  --gap-amount: 16px;
  &:has(.split .s-guide-video) {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: var(--gap-amount);

    @media(max-width: 767px) {
      flex-direction: column;
      justify-content: start;
      align-items: center;
    }
  }

  .split {
    width: calc(50% - var(--gap-amount));

    @media(max-width: 767px) {
      width: 100%;
    }

    .s-guide-video {
      @media(max-width: 767px) {
        /* --video-ratio: calc(16 / 9); */
        --video-column-count: 1;
      }
      --video-column-count: 2;
    }
  }

  .s-guide-video__container {
    h4 {
      margin-block: 1rem;
    }
  }

  .s-guide-video {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    height: var(--video-height);

    --video-column-count: 1;
    --video-ratio: calc(16 / 9);
    --video-height: calc(100vw / calc(var(--video-ratio) * var(--video-column-count)));

    img {
      width: 100%;
      object-fit: cover;
      height: var(--video-height);
    }
    iframe {
      height: var(--video-height);
    }
  }
}