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

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

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

/* Names list */
.tbv-winemakers__names {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.tbv-winemakers__name {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	color: rgba(24, 30, 44, 0.4);
	transition: color 0.25s ease, opacity 0.25s ease;
	text-align: left;
}

.tbv-winemakers__name:hover,
.tbv-winemakers__name:focus-visible {
	color: rgba(24, 30, 44, 0.7);
	outline: none;
}

.tbv-winemakers__name.is-active {
	color: #181e2c;
	cursor: default;
}

.tbv-winemakers__name-text {
	font-family: var(--tbv-font-display);
	font-weight: 400;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 0;
	white-space: nowrap;
}

.tbv-winemakers__name.is-active .tbv-winemakers__name-text {
	font-size: 36px;
}

.tbv-winemakers__role {
	font-family: var(--tbv-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	white-space: nowrap;
}

.tbv-winemakers__name.is-active .tbv-winemakers__role {
	font-size: 18px;
}

.tbv-winemakers__dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	flex: 0 0 6px;
}

.tbv-winemakers__divider {
	display: block;
	width: 1px;
	height: 56px;
	background: rgba(24, 30, 44, 0.4);
	margin: 8px 0 8px 24px;
}

/* Image stack */
.tbv-winemakers__images {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	height: 420px;
	overflow: hidden;
	background: #e0e0e0;
}

.tbv-winemakers__image {
	position: relative;
	margin: 0;
	border: 8px solid #e0e0e0;
	overflow: hidden;
	flex: 1 1 0;
	min-width: 0;
	background: #e0e0e0;
	cursor: pointer;
	transition: flex-grow 0.45s ease;
}

.tbv-winemakers__image.is-active {
	flex-grow: 3;
	cursor: default;
	order: -1;
}

.tbv-winemakers__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 768px) {
	.tbv-winemakers {
		padding: 48px var(--tbv-gutter-desktop) 96px;
	}

	.tbv-winemakers__inner {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}

	.tbv-winemakers__names {
		flex: 0 0 38%;
		max-width: 519px;
		gap: 20px;
	}

	.tbv-winemakers__images {
		flex: 1 1 auto;
		height: 600px;
		border: 13px solid #e0e0e0;
	}

	.tbv-winemakers__image {
		border: 0;
		border-right: 13px solid #e0e0e0;
	}

	.tbv-winemakers__image:last-child {
		border-right: 0;
	}

	.tbv-winemakers__name-text {
		font-size: 32px;
	}

	.tbv-winemakers__name.is-active .tbv-winemakers__name-text {
		font-size: 42px;
	}

	.tbv-winemakers__role {
		font-size: 18px;
	}

	.tbv-winemakers__name.is-active .tbv-winemakers__role {
		font-size: 22px;
	}

	.tbv-winemakers__divider {
		height: 88px;
	}
}

@media (min-width: 1024px) {
	.tbv-winemakers__images {
		height: 772px;
	}

	.tbv-winemakers__name-text {
		font-size: 36px;
	}

	.tbv-winemakers__name.is-active .tbv-winemakers__name-text {
		font-size: 48px;
	}

	.tbv-winemakers__role {
		font-size: 20px;
	}

	.tbv-winemakers__name.is-active .tbv-winemakers__role {
		font-size: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tbv-winemakers__image,
	.tbv-winemakers__name {
		transition: none;
	}
}
