/* ==========================================================================
   Map Section Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SECTION CONTAINER
   -------------------------------------------------------------------------- */
.ust-map-section {
	position: relative;
	width: 100%;
	padding: 28px 0;
	background-color: #ffffff;
}

@media (max-width: 991px) {
	.ust-map-section {
		padding: 21px 0;
	}
}

.ust-map-section-container {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* --------------------------------------------------------------------------
   2. GRID LAYOUT
   -------------------------------------------------------------------------- */
.ust-map-grid {
	display: flex;
	align-items: center;
	gap: 48px;
	width: 100%;
}

.ust-map-content-col {
	flex: 0 0 calc(40% - 24px);
	max-width: calc(40% - 24px);
}

.ust-map-embed-col {
	flex: 0 0 calc(60% - 24px);
	max-width: calc(60% - 24px);
	width: 100%;
}

.ust-map-no-map .ust-map-content-col {
	flex: 0 0 100%;
	max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADER
   -------------------------------------------------------------------------- */
.ust-map-header {
	margin-bottom: 24px;
}

.ust-map-eyebrow {
	display: inline-block;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--ust-section-text-color, #E06D2C);
	margin-bottom: 8px;
}

.ust-map-title {
	font-family: var(--astro-font-serif, 'Cinzel', serif);
	font-size: 36px;
	font-weight: 700;
	color: var(--ust-section-text-color, #0f172a);
	line-height: 1.2;
	margin: 0 0 12px 0;
}

@media (min-width: 992px) {
	.ust-map-title {
		font-size: 40px;
	}
}

.ust-map-subheading {
	font-family: 'Questrial', 'Roboto', sans-serif;
	font-size: 18px;
	color: var(--ust-section-text-color, #475569);
	font-style: italic;
	line-height: 1.5;
	margin: 0 0 16px 0;
}

.ust-map-description {
	font-size: 16px;
	color: var(--ust-section-text-color, #334155);
	line-height: 1.6;
	margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   4. ADDRESS CARD
   -------------------------------------------------------------------------- */
.ust-map-address-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 32px;
	padding: 24px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.ust-map-address-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(224, 109, 44, 0.1);
	color: #E06D2C;
	border-radius: 50%;
}

.ust-map-address-text {
	flex-grow: 1;
	font-size: 16px;
	line-height: 1.6;
	color: #334155;
	font-weight: 500;
}

.ust-map-address-text p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.ust-map-btn-wrapper {
	margin-top: 12px;
}

.ust-map-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.25s ease;
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1.4;
}

.ust-btn-primary {
	background-color: #3B4DA0;
	color: #ffffff;
	border-color: #3B4DA0;
}

.ust-btn-primary:hover {
	background-color: #2b3a80;
	border-color: #2b3a80;
	color: #ffffff;
	transform: translateY(-2px);
}

.ust-btn-outline {
	background-color: transparent;
	color: #E06D2C;
	border-color: #E06D2C;
}

.ust-btn-outline:hover {
	background-color: #E06D2C;
	color: #ffffff;
	transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. MAP EMBED
   -------------------------------------------------------------------------- */
.ust-map-embed-wrapper {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	line-height: 0;
	height: 100%;
	min-height: 450px;
}

.ust-map-embed-wrapper iframe {
	width: 100%;
	height: 100%;
	min-height: 450px;
	border: none;
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
	.ust-map-grid {
		flex-direction: column;
		gap: 40px;
	}

	.ust-map-content-col,
	.ust-map-embed-col {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.ust-map-embed-wrapper,
	.ust-map-embed-wrapper iframe {
		min-height: 350px;
	}
}
