/* 
.desktop-only-link {
    pointer-events: none;
    cursor: default;
}


@media screen and (min-width: 768px) {
    .desktop-only-link {
        pointer-events: auto;
        cursor: pointer;
    }
}  */

.mobile-only {
    display: none !important;
  }
  
  /* Show on mobile devices */
  @media screen and (max-width: 768px) {
    .mobile-only {
      display: block !important; /* Or list-item, flex, etc. depending on your needs */
    }

  }