/**
 * LNK LIST
 * 
 * Contains styling for link list.
 */

.jor-link-list {
   list-style: none;
   padding: 0;
}

.jor-link-list li {
   margin: 0.75rem 0;
}

.jor-link-list a {
	transition: all .2s ease;
   text-decoration: underline !important;
   text-decoration-thickness: 2px !important;
   text-underline-offset: 2px !important;
}

.jor-link-list a:hover {
	text-decoration-thickness: 4px !important;
   text-underline-offset: 4px !important;
}