ul.link-list {
	padding-left: 1rem !important;
  margin-bottom: 0;
	
	li {
    padding: 0.5rem 0 0.5rem 0.5rem !important;
    transform: translateX(0);
    transition: all ease-in-out 0.3s;
    list-style-type: none;
    
    &::before {
		display: none;
	}
    
    &::marker {
	    content: "\203A ";
	    color: #8a704C;
	    font-weight: bold;
	    margin-right: 0.5rem;
		}
		
		&:hover {
		  transform: translateX(4px);
		  transition: all ease-in-out 0.3s;
		}
	}
	
}

.dark ul.link-list li::marker {
  color: #D0C6B7;
}

.card:has(.stretched-link) {
	transition: all ease-in-out 0.3s;
	
	h5 {
		color: #212529;
	}
	
	&:hover {
		h5 {
			color: #8a704c;
			transition: all ease-in-out 0.3s;
		}
	}
}

.custom-dbl-arrow.mb-0 ul {
	margin-bottom: 0;
}

.custom-dbl-arrow ul {
	padding-left: 1rem !important;
}

.custom-dbl-arrow li {
    padding: 0.25rem 0.5rem !important;
    transform: translateX(0);
    transition: transform ease-in-out 0.3s;
}

.custom-dbl-arrow li:hover {
    transform: translateX(4px);
    transition: transform ease-in-out 0.3s;
}

.custom-dbl-arrow li::marker {
    content: "\00BB";
}
