/* Main Container */
.dr1015map {
	padding: 2.5rem 1rem;
	background: linear-gradient(145deg, #fff6f6, #ffeaea);
	font-family: 'Poppins', sans-serif;
}

/* Section Wrapper */
.dr1015map .map-section {
	text-align: center;
	margin: 0 auto;
	max-width: 1000px;
}

/* Heading */
.dr1015map .map-label {
	font-size: 2.3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #a60000, #ff5252);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	letter-spacing: 1.2px;
	position: relative;
}

/* Decorative underline */
.dr1015map .map-label::after {
	content: "";
	display: block;
	margin: 10px auto 0;
	width: 60px;
	height: 3px;
	background: #c21807;
	border-radius: 2px;
}

/* Map Container with Gold Accents */
.dr1015map .map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(198, 40, 40, 0.25);
	border: 3px solid #d4af37;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: #fff;
}

.dr1015map .map-container:hover {
	transform: scale(1.01);
	box-shadow: 0 18px 40px rgba(198, 40, 40, 0.35);
}

/* Embedded Map Frame */
.dr1015map .map-frame {
	width: 100%;
	height: 450px;
	border: none;
	display: block;
}

/* Tablet view */
@media ( max-width : 768px) {
	.dr1015map .map-frame {
		height: 350px;
	}
}

/* Mobile view */
@media ( max-width : 480px) {
	.dr1015map {
		padding: 2rem 1rem;
	}
	.dr1015map .map-frame {
		height: 250px;
	}
	.dr1015map .map-label {
		font-size: 1.6rem;
	}
}