  
  ul.features {
    
    column-gap: 2rem;                                     /* nëse kemi më tepër se një kolonë */
    row-gap: 1rem;
  }
    
  ul.features > li {
    
    column-gap: 1rem;
    position: relative;                                   /* duhet për të bërë të klikueshme të gjithë zonën e <li> 🢃 */
  }
    
  ul.features > li::before,
  ul li.features::before {
    
    height: calc(var(--default-font-size) * 2.5);         /* aspect-ratio: 1 */
    
    border-radius: 0.5em;
    
    background-color: #fb6262;
  }
  
  
  ul.features > li::after,
  ul li.features::after {
    
    height: calc(var(--default-font-size) * 2.5);         /* aspect-ratio: 1 */
    
    mask-size: calc(var(--default-font-size) * 1.5)       /* madhësia e imazhit, width dhe height */
               calc(var(--default-font-size) * 1.5);      /* duhen caktuar të dyja, që të mos kemi ndonjë anë tepër të madhe */
    
    background-color: #ffffff;
  }
    
  ul.features > li > a {
    
    text-decoration: none;
  }
  
  ul.features > li > a:hover h3 {
    
    color: #fb6262;
  }
  
  ul.features > li > a:hover h3 ~ * {
    
    color: #333333;
  }
  