/* Map */
.ct-map-box {
	width: 100%;
	border-radius: 18px;
	border: 1px solid #e6e6e6;
	overflow: hidden;
	background: var(--color-white);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ct-map-box iframe {
	width: 100%;
	height: 350px;
	border: 0;
	display: block;
}

/* Responsive mobile */
@media (max-width: 768px) {
	.ct-map-box iframe {
		height: 200px;
	}
}