.contact-block {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.phone {
	font-weight: bold;
	color: #EEE4BA;
	text-decoration: none;
}

.phone:hover { text-decoration: underline; }

.ci {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: #2a2a2a;
	color: #EEE4BA;
	text-decoration: none;
	transition: transform .15s ease, opacity .15s ease;
}

.ci:hover { transform: translateY(-1px); opacity: .9; }

.contact-email {
	margin-top: 6px;
}

.contact-email a {
	font-size: 14px;
	color: #EEE4BA;
	text-decoration: none;
	font-weight: bold;
}

.contact-email a:hover { text-decoration: underline; }


