.instructions-page__items-list {
   display: flex;             /* Используем Flexbox */
   align-items: center;
   justify-content: flex-start;
   flex-wrap: wrap; 
   width: 100%;
   box-sizing: border-box;
   flex-shrink: 1; 
   gap: 30px;
   padding: 0;
}



.instructions-post-page__name {
   width: 100%;
   max-width: 369px;
   font-size: 18px;
   font-weight: 600;
   line-height: 20px;
   letter-spacing: 0;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   max-height: 3em;
   margin-bottom: 5px;
   color: #131313;
   flex-shrink: 0;
}

.instructions-post-page__text {
   width: 100%;
   font-size: 14px;
   font-weight: 400;
   letter-spacing: 0;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   line-height: 1.5;
   margin-bottom: 12px;
   color: #454F5B;
   flex-grow: 1;
}

