.hex-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.hex-card {
	width: 200px;
	aspect-ratio: 1;
	clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
	background: #bdcaf6;
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	transition: transform 0.2s, background 0.3s;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hex-card:hover {
	background: #005bbb;
	transform: scale(1.05);
}

.hex-card a {
	color: white;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 130px;
}