/* ///////////////////// */
/* Contacts (start)      */
/* ///////////////////// */
.contacts__grid {
	display: grid;
	grid-template-columns: 360px minmax(0, 1fr);
	gap: 20px;
}

.contacts__card {
	border-radius: var(--radius-lg);
	background: var(--white-a15);
	overflow: hidden;
}

.contacts__card--info {
	padding: 24px;
}

.contacts__title {
	margin-bottom: 18px;
	font-weight: 500;
	font-size: 50px;
	line-height: 1.08;
	color: var(--white);
}

.contacts__list {
	list-style: none;
	display: grid;
	gap: 30px;		
}

.contacts__list-item {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__list-title {
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	opacity: 0.8;
	color: var(--white);
}

.contacts__list-link,
.contacts__list-value {
	font-weight: 500;
	font-size: 20px;
	line-height: 1;
	color: var(--white);
}

.contacts__list-socails {
	display: flex; gap: 10px;
}

.contacts__map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.contacts__card--map {
	min-height: 320px;
}
/* ///////////////////// */
/* Contacts (end)        */
/* ///////////////////// */