.sdc-locations {
	width: 100%;
	background: #ffffff;
	padding: 60px 0;
}

.sdc-locations-inner {
	max-width: 1280px;
}

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

.sdc-location-card {
	display: block;
	border: 1px solid #E2E8F0;
	border-radius: 16px;
	padding: 20px;
	text-decoration: none;
	transition: box-shadow .2s ease, transform .2s ease;
}

.sdc-location-card:hover {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-3px);
}

.sdc-location-pin {
	display: block;
	margin-bottom: 12px;
}

.sdc-location-title {
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 16px;
	color: #0F172A;
	margin: 0 0 6px;
}

.sdc-location-text {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #94A3B8;
	margin: 0;
}

@media (max-width: 1100px) {
	.sdc-locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
	.sdc-locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
	.sdc-locations-grid { grid-template-columns: 1fr; }
}