.dr1057locations {
	padding: 80px 20px;
	background: radial-gradient(circle at top, #0f172a, #020617);
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
}

.dr1057locations-container {
	max-width: 1200px;
	margin: auto;
}

/* TITLE */
.dr1057locations-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
	background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* GRID */
.dr1057locations-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

/* CARD */
.dr1057locations-card {
	position: relative;
	padding: 25px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

/* ANIMATION ACTIVE STATE */
.dr1057locations-card.show {
	opacity: 1;
	transform: translateY(0);
}

/* HOVER EFFECT */
.dr1057locations-card:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

/* GOLD GLOW EFFECT */
.dr1057locations-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.2),
		transparent 60%);
	pointer-events: none;
}

/* TEXT */
.dr1057locations-card h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.dr1057locations-address {
	font-size: 0.95rem;
	opacity: 0.85;
	margin-bottom: 10px;
}

.dr1057locations-time {
	font-weight: bold;
	color: #ffd700;
	margin-bottom: 15px;
}

/* MAP */
.dr1057locations-card iframe {
	width: 100%;
	height: 250px;
	border-radius: 12px;
	border: none;
	display: block;
}

/* MOBILE */
@media ( max-width : 768px) {
	.dr1057locations-grid {
		grid-template-columns: 1fr;
	}
	.dr1057locations-title {
		font-size: 2rem;
	}
	.dr1057locations-card {
		padding: 20px;
	}
}