.marquee-panel .panel-header {
	z-index: 0;
	padding: 0;
	max-width: var(--width-base);
	margin: 0 auto;
}

.marquee-panel .title-section h3 {
	font-family: var(--font-display-alt);
	font-size: 45px;
	color: var(--dark-purple);
	line-height: 35px;
	transform: translateY(5px);
}

.marquee-panel .title-section h2 {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 37px;
	line-height: 41px;
	letter-spacing: 0.025em;
	color: #007e8f;
}

.marquee-panel .title-section {
	margin-bottom: 5px;
	padding: 0 12px;
}

.marquee-panel .tabs {
	max-width: 375px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	padding: 17px 15px;
	background-color: var(--off-white);
}

.marquee-panel .tabs .tab {
	background: transparent;
	color: var(--dark-purple);
	text-transform: uppercase;
	font-size: 15px;
	font-family: var(--font-display);
	letter-spacing: 0.025em;
	padding: 0;
}

.marquee-panel .tabs .tab {
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 3px;
	text-decoration-color: var(--off-white);
	transition: text-decoration-color ease 400ms;
}

.marquee-panel .tabs .tab.active,
.marquee-panel .tabs .tab:hover {
	text-decoration-color: #00b3cb;
}

@media (min-width: 375px) {
	.marquee-panel .panel-header {
		padding-right: calc(0px + (15 - 0) * ((100vw - 375px) / (390 - 375)));
	}
}

@media (min-width: 390px) {
	.marquee-panel .panel-header {
		padding-right: 15px;
	}
}

@media (min-width: 40em) {
	.marquee-panel .panel-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		flex-wrap: wrap;
		padding: 0 17px;
		padding-right: 21px;
	}
}

@media (min-width: 64em) {
	.marquee-panel .tabs {
		max-width: 506px;
		padding: 22px 47px 22px 43px;
	}

	.marquee-panel .tabs .tab {
		font-size: 20px;
		text-underline-offset: 6px;
		text-decoration-thickness: 4px;
	}
	
	.marquee-panel .title-section h3 {
		font-size: 78px;
		line-height: 46px;
	}

	.marquee-panel .title-section h2 {
		font-size: 64px;
		line-height: 84px;
	}

	.marquee-panel .title-section {
		margin-bottom: 9px;
		padding: 0;
	}
}