.executive-pipeline {
	background: var(--color-black);
	padding-block: var(--space-9);
}

.ep-layout {
	display: flex;
	gap: var(--space-5);
	align-items: stretch;
	margin-top: var(--space-6);
}

.ep-table {
	flex: 1;
	min-width: 0;
	background: var(--color-white);
}

.ep-row {
	display: flex;
	align-items: center;
	gap: var(--space-5);
	padding: var(--space-5);
	border-bottom: 1px solid var(--color-card-border);
	cursor: pointer;
}

.ep-row--header {
	cursor: default;
	padding-bottom: var(--space-4);
}

.ep-row.is-active {
	background: #2C567814;
}

.ep-row__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ep-row__icon img {
	max-width: 100%;
	max-height: 100%;
}

.ep-row__icon-placeholder {
	display: block;
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-card-border);
}

.ep-row__name {
	flex: 0 0 260px;
	min-width: 0;
}

.ep-row__name h3 {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text-dark);
	font-size: 20px;
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-row__name p {
	color: var(--color-black);
	margin-top: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 105%;
	letter-spacing: 0%;
	max-width: 200px;
}

.ep-row__dots,
.ep-row__dots--header {
	position: relative;
	flex: 1;
	min-width: 0;
	display: grid;

	grid-template-columns: repeat(5, 1fr) 20px;
	justify-items: start;
	align-items: center;
}

.ep-col-label {
	color: var(--color-text-dark);
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-col-label small {
	color: #919191;
	font-weight: 400;
	font-size: 10px;
	line-height: 105%;
	letter-spacing: 0%;

}

.ep-row__track {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 20px;
	transform: translateY(-50%);
	color: #C9C9C9;
	pointer-events: none;
}

.ep-dot {
	position: relative;
	z-index: 1;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #C9C9C9;
}

.ep-dot.is-filled.ep-dot--0 {
	background: #2451A6;
}

.ep-dot.is-filled.ep-dot--1 {
	background: #0AB9AC;
}

.ep-dot.is-filled.ep-dot--2 {
	background: #D4552F;
}

.ep-dot.is-filled.ep-dot--3 {
	background: #C79A2E;
}

.ep-dot.is-filled.ep-dot--4 {
	background: #2E9E4F;
}

.ep-panel {
	flex: 0 0 440px;
	background: var(--color-charcoal) center / cover no-repeat;
	color: var(--color-white);
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.ep-panel [data-pipeline-panel-title] {
	margin-bottom: var(--space-4);
	font-weight: 400;
	font-size: 36px;
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-panel [data-pipeline-panel-summary] {
	line-height: 1.6;
	color: var(--color-white);
	font-weight: 400;
	font-size: 14px;
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-detail-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s var(--ease-out, ease);
	margin-top: var(--space-5);
}

.ep-detail-wrap.is-open {
	grid-template-rows: 1fr;
}

.ep-detail-wrap__inner {
	min-height: 0;
	overflow: hidden;
}

.ep-detail {
	position: relative;
	min-height: 420px;
	padding: var(--space-7) var(--space-6);
	background: var(--color-black);
	overflow: hidden;
}

.ep-detail__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ep-detail__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
}

.ep-detail__sections {
	position: relative;
	z-index: 1;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

.ep-detail__section h4 {
	color: var(--color-white);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: var(--space-3);
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-detail__section p {
	color: var(--color-white);
	max-width: 567px;
	font-weight: 400;
	font-size: 17px;
	line-height: 105%;
	letter-spacing: 0%;
}

.ep-detail__heading {
	position: relative;
	z-index: 1;
	text-align: right;
	margin-top: var(--space-6);
}

.ep-detail__heading h3 {
	color: var(--color-white);
	font-weight: 400;
	font-size: 48px;
	line-height: 105%;
	letter-spacing: 0%;
	text-align: right;
}

.ep-detail__heading p {
	font-weight: 400;
	font-size: 20px;
	line-height: 125%;
	letter-spacing: 0%;
	text-align: right;
	text-transform: uppercase;
	color: var(--color-white);
	margin-top: var(--space-3);
}

@media (max-width: 768px) {
	.ep-row--header {
		padding: 40px 10px 20px;
	}

	.ep-detail {
		display: flex;
		flex-direction: column;
		padding: var(--space-6) var(--container-pad);
	}

	.ep-detail__heading {
		order: -1;
		margin-top: 0;
		margin-top: var(--space-10);
		margin-bottom: var(--space-10);
		text-align: left;
	}

	.ep-detail__heading h3,
	.ep-detail__heading p {
		text-align: left;
	}

	.ep-detail__heading h3 {
		font-size: 32px;
	}

	.ep-detail__heading p {
		font-size: 14px;
		margin-top: var(--space-3);
		line-height: 125%;
	}

	.ep-detail__sections {
		order: 1;
		max-width: none;
		gap: var(--space-7);
	}

	.ep-detail__section p {
		max-width: none;
		font-size: 14px;
	}
}

@media (max-width: 900px) {
	.ep-layout {
		flex-direction: column;
	}

	.ep-panel {
		flex: 1 1 auto;
	}

	.ep-table .ep-panel {
		margin-bottom: var(--space-5);
	}

	.ep-row--header .ep-row__icon,
	.ep-row--header .ep-row__name {
		display: none;
	}

	.ep-row__dots--header {
		gap: var(--space-2);
	}

	.ep-col-label {
		font-size: 11px;
		gap: 2px;
	}

	.ep-col-label small {
		font-size: 8px;
	}

	.ep-row {
		flex-wrap: wrap;
	}

	.ep-row__dots {
		flex: 1 1 100%;
	}
}