.drb-aep,
.drb-aep * {
	box-sizing: border-box;
}

.drb-aep {
	width: 100%;
	max-width: 100%;
}

.drb-aep__scroll {
	width: 100%;
	max-width: 100%;
}

.drb-aep__table {
	width: 100%;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e0e3e6;
	border-radius: 14px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.drb-aep__header,
.drb-aep__body {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.drb-aep__row {
	display: grid;
	grid-template-columns: 13% minmax(0, 1fr);
	width: 100%;
	min-width: 0;
	align-items: stretch;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.drb-aep__row--header {
	min-height: 64px;
	background: #004b0b;
}

.drb-aep__header-cell,
.drb-aep__cell {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 12px 20px;
	text-align: left;
	overflow-wrap: anywhere;
	word-break: normal;
}

.drb-aep__header-cell {
	padding-top: 14px;
	padding-bottom: 14px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.drb-aep__body .drb-aep__row {
	min-height: 44px;
	background: #fff;
	border-bottom: 1px solid #e1e4e7;
}

.drb-aep__body .drb-aep__row:last-child {
	border-bottom: 0;
}

.drb-aep__cell--stage {
	color: #111;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.drb-aep__cell--pathway {
	color: #4a4a4a;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.drb-aep__cell--pathway > :first-child {
	margin-top: 0;
}

.drb-aep__cell--pathway > :last-child {
	margin-bottom: 0;
}

.drb-aep__cell--pathway a {
	color: #004b0b;
	text-decoration: underline;
}

.drb-aep__cell::before {
	display: none;
}

.drb-aep__empty {
	padding: 14px 16px;
	border: 1px dashed #c5cdd5;
	border-radius: 8px;
	background: #f7f9fb;
	color: #5f6b76;
	font-size: 13px;
}

@media (max-width: 767px) {
	.drb-aep--mobile-columns .drb-aep__scroll {
		overflow-x: visible;
	}

	.drb-aep--mobile-columns .drb-aep__table {
		min-width: 0;
	}

	.drb-aep--mobile-columns .drb-aep__row {
		display: grid !important;
		grid-template-columns: var(--drb-aep-mobile-first-column, 32%) minmax(0, 1fr) !important;
		column-gap: var(--drb-aep-mobile-column-spacing, 16px) !important;
	}

	.drb-aep--mobile-columns .drb-aep__header {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: visible !important;
		clip: auto !important;
		white-space: normal !important;
	}

	.drb-aep--mobile-columns .drb-aep__header-cell,
	.drb-aep--mobile-columns .drb-aep__cell {
		display: flex;
		width: auto;
		min-width: 0;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	/* The grid gap is the exact visual space between the column contents. */
	.drb-aep--mobile-columns .drb-aep__header-cell--stage,
	.drb-aep--mobile-columns .drb-aep__cell--stage {
		padding-right: 0 !important;
	}

	.drb-aep--mobile-columns .drb-aep__header-cell--pathway,
	.drb-aep--mobile-columns .drb-aep__cell--pathway {
		padding-left: 0 !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.drb-aep__row {
		transition: none !important;
	}
}
