.gel-list .gel-list-item {
	font-weight: 500;

	a {
		@include transition(all 0.3s);
		border-bottom: 1px solid transparent;

		&:hover {
			color: var(--g5-color-heading);
			border-color: currentColor;
		}
	}
}

.gel-list-not-border-hover .gel-list-item {
	a {
		&:hover {
			border: 0;
		}
	}
}

.gel-list-style-01, .gel-list-style-02 {
	.item-list:not(:last-child) {
		padding-bottom: 11px;
	}
}


.gel-list-style-03 {
	ul {
		li:not(:last-child) {
			padding-right: 15px;
		}

		li:not(:first-child) {
			padding-left: 15px;
		}
	}
}