.vg-127-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	width: 100%;
}

.vg-127-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.vg-127-link-wrapper {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
}

.vg-127-image-wrap {
	width: 100%;
	height: 0;
	padding-bottom: 75%; /* Forces strict 4:3 aspect ratio */
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	border: 2px solid #23cf18a; /* global color */
	margin-bottom: 10px;
	/* Prevent flexbox from squishing/expanding this element */
	flex-shrink: 0;
}

.vg-127-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vg-127-title {
	margin: 0;
	font-size: 16px;
	color: #4F7234; /* primary dark green */
}

@media (max-width: 1024px) {
	.vg-127-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.vg-127-container {
		grid-template-columns: repeat(2, 1fr);
	}
}