.lijsten-vakken {
	display: flex;
	flex-direction: column;
}

.lijsten-vak {
	padding: 48px 0;
	border-bottom: 1px solid rgba(0,0,0,.08);
}

.lijsten-vak:last-child {
	border-bottom: none;
}

.lijsten-vak-row {
	display: grid;
	grid-template-columns: 180px 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.lijsten-vak-titel {
	font-size: 22px;
	font-weight: 600;
	color: var(--themePrimary, #1a6aaa);
	line-height: 1.35;
}

.lijsten-vak-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background-color: #e8e8e8;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.lijsten-vak-tekst {
	font-size: 15px;
	line-height: 1.75;
	color: #444;
}

/* p + .lijsten-vak-toggle {
	margin-top: 16px;
} */

.lijsten-vak-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	background: var(--themePrimary, #1a6aaa);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .15s ease;
	width: 170px;
	max-width: 100%;
	justify-content: center;
}

.lijsten-vak-toggle:hover {
	opacity: .85;
}

/* Sub-items accordion */

.lijsten-vak-subitems-holder {
	display: none;
	grid-template-columns: 180px 2fr;
	gap: 48px;
	align-items: start;
}
.lijsten-vak-subitems-holder::before {
	content:'';
}

.lijsten-vak-subitems {
	margin-top: 24px;
	border-top: 1px solid rgba(0,0,0,.08);
}

.lijsten-vak.subitems-open .lijsten-vak-subitems-holder {
	display: grid;
}

.lijsten-vak-subitem {
	border-bottom: 1px solid rgba(0,0,0,.08);
}
.lijsten-vak-subitems .lijsten-vak-subitem:last-of-type{
	border-bottom:none;
}

.lijsten-vak-subitem-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 4px;
	font-size: 17px;
	font-weight: 600;
	color: var(--themePrimary, #1a6aaa);
}

.lijsten-vak-subitem-body {
	padding: 4px 4px 20px;
	font-size: 14px;
	line-height: 1.75;
	color: #555;
}

@media (max-width: 1024px) {
	.lijsten-vak-row {
		grid-template-columns: 1fr 240px 1fr;
		gap: 32px;
	}

	.lijsten-vak-subitems-holder {
		grid-template-columns: 0px 2fr;
		gap:0;
	}
}

@media (max-width: 768px) {
	.lijsten-vak-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lijsten-vak-image {
		max-width: 400px;
	}

	.lijsten-vak {
		padding: 32px 0;
	}
}
