.highlights-panel {
	position: relative;
	padding: 0;
	padding-top: 77px;
	margin-bottom: 60px;
	overflow: hidden;
}

.highlights-panel:before {
	content: '';
	position: absolute;
	left: -38px;
	top: 0;
	height: 564px;
	width: 360px;
	border-radius: 450px;
	border: 1px solid var(--gray);
	z-index: -1;
	pointer-events: none;
}

.highlights-panel .title-cont {
	padding: 0 20px;
	margin: 0 auto;
	margin-bottom: 8px;
	max-width: 1380px;
}

.highlights-panel .title-cont .title {
	text-transform: uppercase;
	font-weight: var(--font-weight-light);
	font-size: 40px;
	letter-spacing: calc(.8em/40);
	line-height: 1;
	color: var(--merlot-dark);
}

.highlights-panel .highlights-tab-outer {
	opacity: 1;
	transition: opacity 150ms ease;
}

.highlights-panel .highlights-tab-outer.animating {
	opacity: 0;
}

.highlights-panel .tabs {
	display: flex;
	gap: 8px;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	background-color: rgba(115, 108, 106, .1);
	padding: 10px 14px;
	max-width: 1380px;
	margin: 0 auto;
	margin-bottom: 17px;
	white-space: nowrap;
}

.highlights-panel .tabs::-webkit-scrollbar {
	display: none;
}

.highlights-panel .tabs button {
	color: var(--gray);
	font-family: var(--font-script);
	font-style: italic;
	font-weight: var(--font-weight-semibold);
	background-color: transparent;
	font-size: 18px;
	letter-spacing: calc(.36em/18);
}

.highlights-panel .tabs li.active button {
	color: var(--merlot-dark);
	text-decoration: underline;
}

@media (hover: hover) {
	.highlights-panel .tabs button:hover {
		color: var(--merlot-dark);
		text-decoration: underline;
	}
}

@media (min-width: 64em) {
	.highlights-panel {
		padding-top: 110px;
		padding-bottom: 40px;
		margin-bottom: 100px;
	}

	.highlights-panel:before {
		left: -64px;
		height: 100%;
		width: 639px;
	}
	
	.highlights-panel .title-cont {
		margin-bottom: 2px;
	}

	.highlights-panel .title-cont .title {
		font-size: 75px;
		line-height: 0.8;
	}

	.highlights-panel .tabs {
		background-color: transparent;
		margin-bottom: 11px;
	}

	.highlights-panel .tabs button {
		font-size: 28px;
	}
}

@media (min-width: 90em) {
	.highlights-panel {
		min-height: 1052px;
	}
}