.city-grid-header-wrap {
	text-align: center;
	margin-bottom: 40px;
}

.city-grid-heading {
	margin: 0 0 10px 0;
	font-weight: 700;
	color: #333; /* Fallback, overridden by widget settings / global styles */
}

.city-grid-subheading {
	margin: 0;
	color: #666; /* Fallback */
}

.city-grid-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.city-grid-card {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	overflow: hidden;
	height: 200px;
	transition: transform 0.3s ease;
}

.city-grid-card:hover {
	transform: translateY(-5px);
}

.city-grid-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
	pointer-events: none;
}

.city-grid-card-link {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 20px;
	text-decoration: none !important;
	position: relative;
	z-index: 2;
}

.city-grid-name {
	margin: 0;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

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