.section-benefits .table-header {
	background-color: var(--color-material-dark-standard);
	display: none;
}

.section-benefits .table-row {
	margin-bottom: 1.5rem;
}

.section-benefits .table-row > div {
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	position: relative;
	width: 100%;
}

.section-benefits .table-row > div:first-of-type {
	border-bottom-width: 0;
	padding: 2rem 1.5rem;
}

.section-benefits .table-row > div:last-of-type {
	background-blend-mode: multiply;
	background-color: rgba(162,214,113,0.15);
}

.section-benefits .table-row h3 {
	font-size: var(--font-size-heading-3);
	font-weight: var(--font-weight-medium);
	text-align: left;
}

.section-benefits .table-row h3 p {
	text-align: left;
}

.section-benefits .table-row p:last-of-type {
	margin-bottom: 0;
}

.section-benefits .table-row .arrow {
	background-color: var(--color-accent);
	border: 2px solid var(--color-background-standard);
	border-radius: 100vw;
	bottom: -1.125rem;
	display: flex;
	flex-wrap: wrap;
	height: 2.25rem;
	left: calc(50% - 1.15rem);
	place-content: center;
	position: absolute;
	transform: rotate(90deg);
	transform-origin: center;
	width: 2.25rem;
	z-index: var(--z-low);
}

.section-benefits .table-row .arrow svg {
	display: block;
	fill: var(--color-background-standard);
	height: 0.875rem;
	width: 1rem;
}

.section-benefits .notes ol {
	border-top: 1px solid var(--color-border);
	margin: 1rem 0 0 0;
	padding-top: 1.5rem;
}

.section-benefits .notes ol li {
	margin: 0 0 0.25rem 1.25rem;
}

.section-benefits .notes ol li p:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 48rem) { /* 768 px */
	.section-benefits .table-header {
		align-items: center;
		display: flex;
	}

	.section-standard .benefits-table .table-header {
		background-color: var(--color-material-dark-alternate);
	}

	.section-alternate .benefits-table .table-header {
		background-color: var(--color-material-dark-standard);
	}

	.section-benefits .table-header > div {
		box-sizing: border-box;
		flex: 1;
		font-weight: var(--font-weight-bold);
		letter-spacing: calc(2 * var(--tracking-basis));
		padding:  0.5rem 2rem;
		text-transform: uppercase;
	}

	.section-benefits .table-header > div:first-of-type {
		border: 1px solid var(--color-border);
		border-bottom-width: 0;
		color: var(--color-foreground);
		font-weight: var(--font-weight-medium);
	}

	.section-benefits .table-header > div:last-of-type {
		border: 1px solid var(--color-border);
		border-bottom-width: 0;
		color: var(--color-accent);
	}

	.section-benefits .table-row {
		align-items: stretch;
		margin-bottom: 0;
	}

	.section-standard .benefits-table .table-row:nth-child(even) {
		background-color: var(--color-background-alternate);
	}

	.section-alternate .benefits-table .table-row:nth-child(odd) {
		background-color: var(--color-background-standard);
	}

	.section-benefits .table-row:last-of-type {
		border-bottom: 1px solid var(--color-border);
	}

	.section-benefits .table-row > div {
		flex: 1;
	}

	.section-benefits .table-row > div:first-of-type {
		padding: 1.5rem 2rem 1.5rem 1.5rem;
	}

	.section-benefits .table-row > div:last-of-type {
		border-bottom-width: 0;
		border-left-width: 0;
		background-blend-mode: multiply;
		background-color: rgba(162,214,113,0.15);
		padding-left: 2rem;
	}

	.section-benefits .table-row .arrow {
		bottom: unset;
		left: unset;
		right: -1.15rem;
		top: calc(50% - 1.15rem);
		transform: rotate(0);
	}

	.section-benefits .notes ol {
		border-top-width: 0;
		margin-top: 0;
	}
}