.block_list_sections {
  margin-top: 32px !important;

  .sections {
    .section_items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 17.8vw, 300px), 1fr));
      gap: clamp(6px, 2.2vw, 20px);

      .section_link {
        padding: clamp(18px, 3vw, 24px);
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        height: clamp(100px, 8.1vw, 160px);
        justify-content: space-between;
        background: var(--white-F5);

        .rs_item__header {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          width: 100%;

          .rs_item_header__icon_left {
            &:after {
              content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7.00009L6 18.0001' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M11 5.99997H17C17.4714 5.99997 17.7071 5.99997 17.8536 6.14642C18 6.29286 18 6.52856 18 6.99997V13' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
              width: 24px;
              height: 24px;
            }
          }
        }

        .rs_item__title {
          font-size: var(--font-size24);
          font-weight: 400;
          line-height: var(--ln24);
          letter-spacing: var(--lp03);
          color: var(--black);
          text-underline-position: from-font;
          text-decoration-skip-ink: none;
        }
      }

    }
  }
}