/* Main Container */
.dr1016map {
	padding: 2.5rem 1rem;
	background: linear-gradient(145deg, #f1fefc, #e0f7fa);
	font-family: 'Poppins', sans-serif;
}

/* Section Wrapper */
.dr1016map .map-section {
	text-align: center;
	margin: 0 auto;
	max-width: 1000px;
}

/* Heading */
.dr1016map .map-label {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #00796b, #00acc1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
	letter-spacing: 1px;
	position: relative;
}

/* Decorative underline */
.dr1016map .map-label::after {
	content: "";
	display: block;
	margin: 10px auto 0;
	width: 60px;
	height: 4px;
	background: #00897b;
	border-radius: 2px;
}

/* Map Container with Medical Theme Accent */
.dr1016map .map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 150, 136, 0.2);
	border: 3px solid #4dd0e1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #ffffff;
}

.dr1016map .map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 18px 40px rgba(0, 150, 136, 0.3);
}

/* Embedded Map Frame */
.dr1016map .map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Tablet view */
@media ( max-width : 768px) {
	.dr1016map .map-frame {
		height: 350px;
	}
}

/* Mobile view */
@media ( max-width : 480px) {
	.dr1016map {
		padding: 2rem 1rem;
	}
	.dr1016map .map-frame {
		height: 250px;
	}
	.dr1016map .map-label {
		font-size: 1.7rem;
	}
}