﻿.maps-page-shell {
	padding: 0 0 90px;
	background:
		linear-gradient(180deg, rgba(248, 248, 249, 0.96) 0%, rgba(255, 255, 255, 1) 32%, rgba(248, 248, 249, 0.92) 100%);
}

.maps-hero-card,
.maps-location-grid,
.maps-arrival-grid,
.maps-card-grid {
	display: grid;
	gap: 24px;
}

.maps-hero-card {
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	align-items: stretch;
	margin: 72px 0 48px;
	padding: 28px;
	border: 1px solid rgba(148, 4, 7, 0.12);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 28px 80px rgba(23, 23, 23, 0.08);
}

.maps-hero-copy {
	padding: 18px 8px 18px 6px;
}

.maps-hero-copy h3,
.maps-section-head h3 {
	margin-bottom: 18px;
	font-size: 38px;
	line-height: 1.18;
	font-weight: 700;
	color: var(--color_tit, #111);
}

.maps-hero-copy p,
.maps-section-head p,
.maps-card p,
.maps-note,
.maps-address-block p,
.maps-mini-card p {
	font-size: 17px;
	line-height: 1.9;
	color: #4d4d4d;
}

.maps-hero-media,
.maps-location-media {
	position: relative;
	overflow: hidden;
}

.maps-hero-media img,
.maps-location-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.maps-section {
	margin-top: 58px;
}

.maps-section-head {
	max-width: 980px;
	margin-bottom: 28px;
}

.maps-location-grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	align-items: stretch;
}

.maps-card,
.maps-address-block,
.maps-mini-card {
	padding: 28px 26px;
	background: #fff;
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 44px rgba(18, 18, 18, 0.05);
}

.maps-address-block h4,
.maps-card h4,
.maps-mini-card h4 {
	margin-bottom: 14px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	color: #1c1c1c;
}

.maps-address-block p strong,
.maps-card p strong,
.maps-mini-card p strong {
	color: #1a1a1a;
}

.maps-note {
	margin-top: 16px;
	color: #666;
}

.maps-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.maps-arrival-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maps-bullet-list {
	padding: 0;
	margin: 18px 0 0;
	list-style: none;
}

.maps-bullet-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.8;
	color: #434343;
}

.maps-bullet-list li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--theme_red);
}

.maps-subhead {
	display: block;
	margin-top: 18px;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--theme_red);
}

@media (max-width: 1200px) {
	.maps-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.maps-hero-card,
	.maps-location-grid,
	.maps-arrival-grid,
	.maps-card-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.maps-page-shell {
		padding-bottom: 56px;
	}

	.maps-hero-card {
		margin: 40px 0 28px;
		padding: 16px;
		gap: 18px;
	}

	.maps-hero-copy {
		padding: 8px 4px 10px;
	}

	.maps-hero-copy h3,
	.maps-section-head h3 {
		font-size: 28px;
	}

	.maps-hero-copy p,
	.maps-section-head p,
	.maps-card p,
	.maps-note,
	.maps-address-block p,
	.maps-mini-card p {
		font-size: 15px;
		line-height: 1.8;
	}

	.maps-card,
	.maps-address-block,
	.maps-mini-card {
		padding: 22px 18px;
	}

	.maps-address-block h4,
	.maps-card h4,
	.maps-mini-card h4 {
		font-size: 22px;
	}
}