/**
 * Contacts block styles
 */

.ta-contacts-block__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ta-contacts-block__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ta-contacts-block__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	width: 32px;
	height: 32px;
	background-color: var(--color-coral);
	padding: 4px;
	border-radius: 6px;
}

.ta-contacts-block__icon i {
	font-size: 18px;
}

.ta-contacts-block__icon-max {
	display: block;
	width: 20px;
	height: 20px;
}

.ta-contacts-block__link {
	color: var(--color-text);
	text-decoration: none;
	transition: .3s ease;
}

.ta-contacts-block__link:hover,
.ta-contacts-block__link:focus-visible {
	color: var(--color-coral);
}
