.eq-video-section {
	display: flex;
	max-width: 1224px;
	width: 100%;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 40px;
	margin: 0 auto;
	box-sizing: border-box;
	margin: 40px auto 0;
}

.eq-landing-video-section {
	width: 100%;
	margin-top: 24px;
}

	.eq-landing-video-section .eq-video-grid {
		display: flex;
		align-items: center;
		gap: var(--gap-hz-section, 32px);
		width: 100%;
		padding: 24px;
		border-radius: var(--radius-formContent, 16px);
		background: #F2EBE7;
		box-sizing: border-box;
		overflow: hidden;
	}

	.eq-landing-video-section .eq-video-grid--reverse {
		flex-direction: row-reverse;
	}

	.eq-landing-video-section .eq-video-grid > div {
		min-width: 0;
		box-sizing: border-box;
	}

	.eq-landing-video-section .eq-video-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		align-self: stretch;
		flex: 0 0 calc(40% - 16px);
		max-width: calc(40% - 16px);
		width: calc(40% - 16px);
		min-width: 0;
		box-sizing: border-box;
	}

		.eq-landing-video-section .eq-video-content > *:first-child {
			margin-top: 0;
		}

		.eq-landing-video-section .eq-video-content > *:last-child {
			margin-bottom: 0;
		}

	.eq-landing-video-section .eq-video-grid .eq-video-content:only-child,
	.eq-landing-video-section .eq-video-grid .eq-video-media:only-child {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}

	.eq-landing-video-section .eq-video-content h1,
	.eq-landing-video-section .eq-video-content h2,
	.eq-landing-video-section .eq-video-content h3,
	.eq-landing-video-section .eq-video-content h4,
	.eq-landing-video-section .eq-video-content h5,
	.eq-landing-video-section .eq-video-content h6 {
		margin: 0 0 14px;
	}

	.eq-landing-video-section .eq-video-content p {
		margin: 0 0 14px;
		line-height: 1.65;
	}

	.eq-landing-video-section .eq-video-content--text-only .eq-video-text {
		column-count: 2;
		column-gap: 48px;
	}

		.eq-landing-video-section .eq-video-content--text-only .eq-video-text > *:first-child {
			column-span: all;
			display: block;
			width: 100%;
			margin-bottom: 16px;
		}

		.eq-landing-video-section .eq-video-content--text-only .eq-video-text p {
			margin: 0 0 20px;
			break-inside: avoid;
			page-break-inside: avoid;
			line-height: 1.65;
		}

	.eq-landing-video-section .eq-video-media {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 calc(60% - 16px);
		max-width: calc(60% - 16px);
		width: calc(60% - 16px);
		min-width: 0;
		box-sizing: border-box;
		cursor: pointer;
	}

	.eq-landing-video-section .eq-video-grid--image-only {
		max-width: 520px;
		margin: 0 auto;
	}

		.eq-landing-video-section .eq-video-grid--image-only .eq-video-media {
			flex: 0 0 100%;
			max-width: 100%;
			width: 100%;
		}

		.eq-landing-video-section .eq-video-grid--image-only .eq-video-thumb {
			width: 100%;
			max-width: 100%;
		}

	.eq-landing-video-section .eq-video-thumb {
		position: relative;
		width: 100%;
		max-width: 680px;
		aspect-ratio: 757 / 454;
		border-radius: 16px;
		overflow: hidden;
		background: #F2EBE7;
		border: 1px solid rgba(38, 38, 38, 0.08);
		display: flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
	}

		.eq-landing-video-section .eq-video-thumb img {
			display: block;
			width: 100%;
			height: 100%;
			border: 0;
			border-radius: inherit;
			object-fit: cover;
			object-position: center center;
			background: #F2EBE7;
		}

	.eq-landing-video-section .eq-video-thumb--image {
		width: 100%;
	}

		.eq-landing-video-section .eq-video-thumb--image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.eq-landing-video-section .eq-video-thumb iframe,
	.eq-landing-video-section .eq-video-thumb .eq-video-iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
		display: block;
		border-radius: inherit;
		background: #F2EBE7;
	}

	.eq-landing-video-section .eq-video-overlay {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
		pointer-events: none;
		max-width: calc(100% - 32px);
	}

	.eq-landing-video-section .eq-video-overlay__pill {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 36px;
		padding: 10px 40px;
		border-radius: 24px;
		background: rgba(74, 69, 74, 0.42);
		color: #FFFFFF;
		line-height: 1.2;
		text-align: center;
		white-space: nowrap;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.eq-landing-video-section .eq-video-overlay__icon {
		width: 20px;
		height: 20px;
		flex: 0 0 20px;
		background: url('/Content/images/PlayCircle-small.png') center center no-repeat;
		background-size: contain;
	}

	.eq-landing-video-section .eq-video-overlay__text {
		display: inline-block;
	}

/* Release Section */
.eq-releases-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	width: 100%;
	max-width: 1224px;
	margin: 40px auto 0;
	box-sizing: border-box;
	color: #262626;
}

.eq-releases-header {
	width: 100%;
}

	.eq-releases-header h2 {
		margin: 0;
	}

.eq-releases-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.eq-release-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
	color: #262626;
}

.eq-release-item--extra {
	display: none;
}

.eq-releases-section.is-expanded .eq-release-item--extra {
	display: flex;
}

.eq-release-date {
	margin: 0;
	color: #262626;
}

.eq-release-title-row {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.eq-release-title-icon {
	display: block;
	width: 24px;
	height: 20px;
	flex: 0 0 24px;
	background: url('/Content/images/VectorStroke.png') center center no-repeat;
	background-size: contain;
}

.eq-release-title-row h3,
.eq-release-title-row h4 {
	margin: 0;
	min-width: 0;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
}

.eq-release-body {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.eq-release-body--with-media {
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.eq-release-body--no-media {
	display: block;
}

.eq-release-media {
	position: relative;
	flex: 0 0 441px;
	width: 441px;
	max-width: 441px;
	aspect-ratio: 441 / 264;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(38, 38, 38, 0.08);
	box-sizing: border-box;
}

	.eq-release-media img {
		display: block;
		width: 100%;
		height: 100%;
		border: 0;
		border-radius: inherit;
		object-fit: cover;
		object-position: center center;
	}

.eq-release-media--video {
	cursor: pointer;
}

	.eq-release-media--video:focus-visible {
		outline: 2px solid #007B81;
		outline-offset: 4px;
	}

.eq-release-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	transform: translate(-50%, -50%);
	background: url('/Content/images/PlayCircle.png') center center no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

.eq-release-content {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	color: #262626;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-break: normal;
}

.eq-release-content--primary {
	min-width: 0;
}

.eq-release-content--secondary {
	width: 100%;
}

.eq-release-body--no-media .eq-release-content {
	width: 100%;
}

.eq-release-content > *:first-child {
	margin-top: 0;
}

.eq-release-content > *:last-child {
	margin-bottom: 0;
}

.eq-release-content p {
	margin: 0 0 16px;
	color: #262626;
}

.eq-release-content ul,
.eq-release-content ol {
	margin: 0 0 16px 20px;
	padding: 0;
}

.eq-release-content li {
	margin-bottom: 8px;
}

.eq-release-divider {
	width: 100%;
	height: 1px;
	background: #DADADA;
}

.eq-release-divider--extra {
	display: none;
}

.eq-releases-section.is-expanded .eq-release-divider--extra {
	display: block;
}

/* Scoped override because global.css styles all button elements */
.eq-releases-toggle {
	align-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 192px;
	padding: 12px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #007B81;
	cursor: pointer;
	box-sizing: border-box;
	text-shadow: none;
	letter-spacing: normal;
}

	.eq-releases-toggle:hover,
	.eq-releases-toggle:focus {
		background: #EDFDFB;
		color: #005C61;
		text-decoration: none;
		text-shadow: none;
		letter-spacing: normal;
	}

	.eq-releases-toggle:focus-visible {
		outline: 2px solid #007B81;
		outline-offset: 3px;
	}

.eq-releases-toggle__chevron {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
}

	.eq-releases-toggle__chevron:before {
		content: "";
		position: absolute;
		top: 4px;
		left: 5px;
		width: 6px;
		height: 6px;
		border-right: 2px solid #007B81;
		border-bottom: 2px solid #007B81;
		transform: rotate(45deg);
	}

.eq-releases-section.is-expanded .eq-releases-toggle__chevron:before {
	top: 7px;
	transform: rotate(225deg);
}

.eq-release-media iframe,
.eq-release-media .eq-release-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	border-radius: inherit;
}

/* Spacing alignment with existing activate/login area */
section #activate {
	margin-top: 20px;
}

.eq-landing-video-section + .eq-releases-section {
	margin-top: 40px;
}

@media screen and (max-width: 991px) {
	.eq-video-section {
		gap: 32px;
	}

	.eq-landing-video-section {
		margin-top: 24px;
	}

		.eq-landing-video-section .eq-video-grid {
			gap: 24px;
			padding: 20px;
		}

		.eq-landing-video-section .eq-video-content {
			flex: 0 0 calc(40% - 12px);
			max-width: calc(40% - 12px);
			width: calc(40% - 12px);
		}

		.eq-landing-video-section .eq-video-media {
			flex: 0 0 calc(60% - 12px);
			max-width: calc(60% - 12px);
			width: calc(60% - 12px);
		}

		.eq-landing-video-section .eq-video-thumb {
			max-width: 100%;
		}

		.eq-landing-video-section .eq-video-content--text-only .eq-video-text {
			column-gap: 32px;
		}

		.eq-landing-video-section .eq-video-grid--image-only {
			max-width: 520px;
		}

		.eq-landing-video-section .eq-video-overlay__pill {
			min-height: 32px;
			padding: 7px 16px;
		}

		.eq-landing-video-section .eq-video-overlay__icon {
			width: 14px;
			height: 14px;
			flex: 0 0 14px;
		}

	.eq-releases-section {
		gap: 32px;
		margin-top: 40px;
	}

	.eq-release-body--with-media {
		flex-direction: column;
		gap: 24px;
	}

	.eq-release-media {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		aspect-ratio: 441 / 264;
	}

	.eq-release-content {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.eq-video-section {
		gap: 28px;
	}

	.eq-landing-video-section {
		margin-top: 24px;
	}

		.eq-landing-video-section .eq-video-grid,
		.eq-landing-video-section .eq-video-grid--reverse {
			flex-direction: column;
			align-items: stretch;
			gap: 20px;
			padding: 20px;
		}

		.eq-landing-video-section .eq-video-content,
		.eq-landing-video-section .eq-video-media {
			flex: 0 0 100%;
			max-width: 100%;
			width: 100%;
		}

		.eq-landing-video-section .eq-video-thumb {
			max-width: 100%;
			aspect-ratio: 757 / 454;
		}

		.eq-landing-video-section .eq-video-content--text-only .eq-video-text {
			column-count: 1;
			column-gap: 0;
		}

			.eq-landing-video-section .eq-video-content--text-only .eq-video-text > *:first-child {
				column-span: none;
				margin-bottom: 14px;
			}

		.eq-landing-video-section .eq-video-grid--image-only {
			max-width: 100%;
		}

		.eq-landing-video-section .eq-video-overlay__pill {
			min-height: 30px;
			padding: 6px 12px;
		}

		.eq-landing-video-section .eq-video-overlay__icon {
			width: 13px;
			height: 13px;
			flex: 0 0 13px;
		}

	.eq-releases-section {
		gap: 28px;
		margin-top: 36px;
	}

	.eq-release-title-row {
		align-items: flex-start;
		gap: 12px;
	}

	.eq-releases-toggle {
		min-width: 100%;
	}
}

@media screen and (max-width: 479px) {
	.eq-landing-video-section {
		margin-top: 20px;
	}

		.eq-landing-video-section .eq-video-grid {
			padding: 18px;
			gap: 18px;
			border-radius: 14px;
		}

		.eq-landing-video-section .eq-video-thumb {
			border-radius: 14px;
		}

		.eq-landing-video-section .eq-video-overlay__pill {
			min-height: 28px;
			padding: 5px 10px;
		}

		.eq-landing-video-section .eq-video-overlay__icon {
			width: 12px;
			height: 12px;
			flex: 0 0 12px;
		}

	.eq-releases-section {
		gap: 24px;
		margin-top: 32px;
	}

	.eq-release-media {
		border-radius: 12px;
	}
}


/* ==========================================
   FAQ SECTION
========================================== */

.eq-faq-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
	max-width: 1224px;
	margin: 40px auto 0;
	box-sizing: border-box;
	color: #262626;
}

.eq-faq-header {
	width: 100%;
}

	.eq-faq-header h2 {
		margin: 0;
	}

.eq-faq-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 4px 0;
	box-sizing: border-box;
}

.eq-faq-item {
	width: 100%;
	border-bottom: 1px solid #CCCCCC;
	box-sizing: border-box;
}

	.eq-faq-item:last-child {
		border-bottom: 0;
	}

.eq-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #262626;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
	text-shadow: none;
	letter-spacing: normal;
}

	.eq-faq-question:hover,
	.eq-faq-question:focus {
		background: transparent;
		color: #262626;
		text-decoration: none;
		text-shadow: none;
	}

	.eq-faq-question,
	.eq-faq-question:hover,
	.eq-faq-question:focus,
	.eq-faq-question:active {
		font-weight: inherit;
		letter-spacing: normal;
		text-shadow: none;
		padding: 24px 0;
		background: transparent;
		color: inherit;
	}

		.eq-faq-question:focus-visible {
			outline: 2px solid #007B81;
			outline-offset: 3px;
		}

.eq-faq-question__text {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: break-word;
}

.eq-faq-question__icon {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	background: url('/Content/images/ChevronDown.png') center center no-repeat;
	background-size: 24px 24px;
}

.eq-faq-question.is-open .eq-faq-question__icon {
	transform: rotate(180deg);
}

.eq-faq-panel {
	width: 100%;
	box-sizing: border-box;
}

.eq-faq-content {
	width: 100%;
	max-height: 360px;
	overflow-y: auto;
	padding: 0 48px 24px 0;
	box-sizing: border-box;
	color: #262626;
	overflow-wrap: break-word;
}

	.eq-faq-content > *:first-child {
		margin-top: 0;
	}

	.eq-faq-content > *:last-child {
		margin-bottom: 0;
	}

	.eq-faq-content p {
		margin: 0 0 16px;
	}

	.eq-faq-content ul,
	.eq-faq-content ol {
		margin: 0 0 16px 20px;
		padding: 0;
	}

	.eq-faq-content li {
		margin-bottom: 8px;
	}

	.eq-faq-content a {
		color: #007B81;
		text-decoration: underline;
	}

		.eq-faq-content a:hover,
		.eq-faq-content a:focus {
			color: #005C61;
		}


/* ==========================================
   FAQ RESPONSIVE
========================================== */

@media screen and (max-width: 991px) {
	.eq-faq-section {
		margin-top: 40px;
	}

	.eq-faq-question {
		gap: 20px;
	}

	.eq-faq-content {
		padding-right: 32px;
	}
}

@media screen and (max-width: 767px) {
	.eq-faq-section {
		margin-top: 36px;
	}

	.eq-faq-question {
		gap: 16px;
		padding: 20px 0;
	}

	.eq-faq-question__icon {
		width: 24px;
		height: 24px;
		flex: 0 0 24px;
	}

	.eq-faq-content {
		max-height: 300px;
		padding: 0 0 20px 0;
	}
}

@media screen and (max-width: 479px) {
	.eq-faq-section {
		margin-top: 32px;
	}

	.eq-faq-question {
		padding: 18px 0;
	}
}
