
/* C14 Link List */
.component .c14 ul {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	list-style-type: none;
	text-align: center;
	font-family: gill sans;
	box-sizing: border-box;
	margin-bottom: 0px;
	padding: 0;
}

.component.across-4 .c14 ul {
	justify-content: center;
}

.component .c14 ul li {
	margin: 6px;
	padding: 12px;
	width: calc(33% - 10px);
	border-radius: 3px;
	background-color: #fff;
	color: var(--color-evergreen);
	transition: all 300ms;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border: solid 1px var(--color-evergreen);
}

.component.across-4 .c14 ul li {
	width: calc(25% - 15px);
}

.component.v2 .c14 ul li {
	background-color: var(--color-evergreen);
	color: #fff;
	border: none;
}

.component .c14 a {
	text-decoration: none;
	color: inherit;
	width: 100%;
	height: 100%;
	text-transform: uppercase;
	font-weight: 400;
	height: auto;
}

.component .c14 ul li:hover {
	background-color: var(--color-lime);
	color: var(--color-evergreen);
	transition: all 300ms;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.component .c14 ul li,
	.component.across-4 .c14 ul li {
		width: calc(50% - 12px);
	}
}

@media (max-width: 500px) {
	.component .c14 ul li,
	.component.across-4 .c14 ul li {
		padding: 5px;
		font-size: 0.8em;
		width: 100%;
	}
}

/* End C14 Link List */
