.contacts {
	margin-bottom: 180px !important;
}

.contacts-list {
	padding: 0;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.contact-item {
	background: #ffffff;
	border-top: 1px solid #00000026;
	border-left: 1px solid #00000026;
	border-right: 1px solid #00000026;
	padding: 30px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}

.contact-item:first-of-type {
	border-radius: 30px 30px 0 0;
}

.contact-item:last-of-type {
	border-bottom: 1px solid #00000026;
	border-radius: 0 0 30px 30px;
}

.contact-info {
	display: flex;
	justify-content: space-between;
	max-width: 605px;
	gap: 16px;
	width: 100%;
}

.contact-address {
	font-size: 18px;
	line-height: 23px;
	max-width: 350px;
}

.contact-schedule {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.schedule-item {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: #00000080;
}

.schedule-item span {
	color: var(--accent-primary);
}

.contact-phones {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 10px;
	max-width: 208px;
	width: 100%;
}

.phone-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.phone-link:hover {
	color: #0056b3;
}

.phone-link img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

/* Стили для карты */
/* .consultations-location-map {
	width: 100% !important;
	height: 500px;
	overflow: hidden;
}

.consultations-location-map > ymaps,
.consultations-location-map > ymaps > ymaps,
.consultations-location-map > ymaps > ymaps > ymaps {
	width: 100% !important;
} */

.consultations-location-map {
	max-width: none;
}

@media (max-width: 950px) {
	.contacts-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.contact-item {
		border: 1px solid #00000026;
		border-radius: 30px !important;
		flex-direction: column;
	}

	.contact-info {
		flex-direction: column;
	}

	.contact-phones {
		align-items: start;
	}
}

@media (max-width: 768px) {
	.contact-item {
		padding: 24px;
		gap: 20px;
		flex-direction: column;
	}

	.contact-info,
	.contact-phones {
		width: 100%;
	}

	.schedule-item,
	.phone-link {
		font-size: 14px;
		line-height: 18px;
	}

	.phone-link img {
		width: 20px;
		height: 20px;
	}

	.contact-address {
		font-size: 15px;
		line-height: 22px;
	}

	.contacts-list {
		margin-bottom: 40px;
	}

	.contact-phones {
		gap: 12px;
	}
}

@media (max-width: 576px) {
	.contacts-list {
		grid-template-columns: repeat(1, 1fr);
		gap: 5px;
	}

	.contact-item {
		padding: 20px;
		gap: 16px;
	}

	.contact-address {
		font-size: 18px;
		line-height: 23px;
	}

	.schedule-item {
		font-size: 16px;
		line-height: 20px;
	}

	.phone-link {
		font-size: 16px;
		line-height: 20px;
	}
}
