/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

  
  ul.tec{
    display:block;
    padding-left:0;
  }
  
  ul.tec li{
    list-style-type:none;
    margin-bottom:4px;
    padding:4px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    border-bottom:1px solid #ccc;
    background:#fff;
    border-radius: 5px;
    align-items: start;
  }

@media (min-width:700px){
  ul.tec{
    margin-top;1rem;
  }
  
  ul.tec li{
    flex-direction:row;
    align-items: center;
  }
}
  
  ul.tec li > div.tit {
    font-weight:600;
    font-size:14px;
    margin-right:10px;
    flex-shrink: 0;      /* non si restringe */
    white-space: nowrap; /* testo su una sola riga */
  }
  
  ul.tec li > div.desc {
    font-size:12px;
  }
  
  ul.tec li > div.desc > span{
    display:block;
  }