.tbv-contacts {
	font-family: var(--tbv-font-body);
	color: #181e2c;
	padding: 48px var(--tbv-gutter-mobile) 64px;
}

.tbv-contacts__placeholder {
	text-align: center;
	color: var(--tbv-color-muted);
	padding: 32px 0;
}

.tbv-contacts__inner {
	max-width: var(--tbv-container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tbv-contacts__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.tbv-contacts__divider {
	display: none;
	width: 1px;
	height: 101px;
	background: rgba(24, 30, 44, 0.2);
	flex: 0 0 1px;
}

.tbv-contacts__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	width: 100%;
	max-width: 396px;
	min-width: 0;
}

.tbv-contacts__name {
	font-family: var(--tbv-font-display);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin: 0;
}

.tbv-contacts__role,
.tbv-contacts__email {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.tbv-contacts__email {
	color: inherit;
	text-decoration: underline;
	text-decoration-skip-ink: auto;
	word-break: break-word;
}

.tbv-contacts__email:hover,
.tbv-contacts__email:focus-visible {
	text-decoration: none;
	outline: none;
}

@media (min-width: 768px) {
	.tbv-contacts {
		padding: 72px 0 96px;
	}

	.tbv-contacts__inner {
		gap: 64px;
	}

	.tbv-contacts__row {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-start;
		gap: 24px;
	}

	.tbv-contacts__divider {
		display: block;
		align-self: center;
		flex: 0 0 1px;
	}

	.tbv-contacts__card {
		flex: 1 1 0;
	}

	.tbv-contacts__name {
		font-size: 28px;
		letter-spacing: 1.4px;
	}

	.tbv-contacts__role,
	.tbv-contacts__email {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {
	.tbv-contacts__inner {
		gap: 78px;
	}

	.tbv-contacts__row {
		gap: 40px;
	}

	.tbv-contacts__name {
		font-size: 32px;
		letter-spacing: 1.6px;
	}

	.tbv-contacts__role,
	.tbv-contacts__email {
		font-size: 20px;
	}
}
