.sdc-location { width: 100%; background: #F9FAFC; padding: 70px 0; }
.sdc-location-inner { max-width: 1280px; }

.sdc-location-card {
	position: relative;
	background: #FFFFFF;
	border-radius: 48px;
	min-height: 604px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 36px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(54, 54, 54, 0.08);
	padding-left: 50px;
	box-sizing: border-box;
}

.sdc-location-content { position: relative; z-index: 1; max-width: 520px; }

.sdc-location-badge {
	display: inline-block;
	color: #64748B;
	font-family: 'Nunito', sans-serif;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.sdc-location-heading {
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 48px;
	line-height: 48px;
	color: #0075FB;
	margin: 0 0 16px;
}

.sdc-location-subtitle {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #64748B;
	margin: 0 0 28px;
}

.sdc-location-pills {
	display: grid;
	grid-template-columns: repeat(3, 168px);
	gap: 12px;
	margin-bottom: 28px;
}

.sdc-location-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 36px;
	padding: 8px 12px;
	background: #F9FAFC;
	border-radius: 9999px;
	font-family: 'Nunito', sans-serif;
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	color: #0075FB;
	text-decoration: none;
	transition: background .15s ease;
}
.sdc-location-pill:hover { background: #E6F1FF; }

.sdc-location-pill-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: #E20613; }

.sdc-location-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 28px;
	background: #E20613;
	border-radius: 9999px;
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity .15s ease;
}
.sdc-location-btn:hover { opacity: .9; color: #FFFFFF; }

.sdc-location-map {
		position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-image: url(../Vector.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: contain;

}

@media (max-width: 1024px) {
	.sdc-location-card { grid-template-columns: 1fr; padding: 40px; min-height: 0; }
	.sdc-location-map { height: 280px; order: -1; }
	.sdc-location-pills { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.sdc-location-card { padding: 28px; border-radius: 32px; }
	.sdc-location-heading { font-size: 32px; line-height: 38px; }
	.sdc-location-pills { grid-template-columns: 1fr 1fr; }
}