
/* C30 Image Link Grid */
.c30 .image-link-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0;
	gap: 7px;
}

.c30 .image-link {
	display: flex;
	cursor: pointer;
	width: 188px;
	height: 100px;
	border-radius: 5px;
	align-items: center;
	box-sizing: border-box;
	position: relative;
}

.c30 .image-link img {
	position: absolute;
	width: 200px;
	height: 100px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 5px;
}

.c30 .image-link a {
	z-index: 2;
	display: flex;
	width: 200px;
	height: 100px;
	justify-content: center;
	align-items: center;
	background-color: rgba(24, 79, 44, .8);
	border-radius: 5px;
	color: #fff;
	padding: 0 15px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: background-color 300ms;
}

.c30 .image-link a:hover {
	background-color: rgba(24, 79, 44, .1);
	transition: background-color 300ms;
}

/* End C30 Image Link Grid */
