﻿/*CMS*/
section.cmsPage {
	width: 100%;
}

	section.cmsPage .contentWrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 2rem;
		width: 100%;
	}

.contentPage .contentWrap h1 {
	font-size: var(--font-size-h1);
	line-height: 1.6;
	font-weight: bold;
	margin: 1rem 0 0;
}
.cmsPage .contentWrap div.faqWrap {
	flex: 1 1 65%;
	padding: var(--padding-default);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
}

	.cmsPage .contentWrap div.faqWrap div.faq{
		width: 100%;
		border-collapse: collapse;
		text-align: left;
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 2rem;
	}

	.cmsPage .contentWrap div.faqWrap table {
		width: 100%;
		border-collapse: collapse;
		text-align: left;
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 2rem;
	}

		.cmsPage .contentWrap div.faqWrap table th,
		.cmsPage .contentWrap div.faqWrap table td {
			padding: 0.75rem;
			border: 1px solid #ddd;
			vertical-align: top;
		}

		.cmsPage .contentWrap div.faqWrap table th {
			background-color: #f5f5f5;
			font-weight: 600;
			color: #333;
		}

		.cmsPage .contentWrap div.faqWrap table tbody tr:nth-child(even) {
			background-color: #fafafa;
		}

	.cmsPage .contentWrap article {
	flex: 1 1 65%;
	padding: var(--padding-default);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
}


	.cmsPage .contentWrap article table {
		width: 100%;
		border-collapse: collapse;
		text-align: left;
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 2rem;
	}

		.cmsPage .contentWrap article table th,
		.cmsPage .contentWrap article table td {
			padding: 0.75rem;
			border: 1px solid #ddd;
			vertical-align: top;
		}

		.cmsPage .contentWrap article table th {
			background-color: #f5f5f5;
			font-weight: 600;
			color: #333;
		}

		.cmsPage .contentWrap article table tbody tr:nth-child(even) {
			background-color: #fafafa;
		}

@media (max-width: 600px) {
	.cmsPage .contentWrap article table,
	.cmsPage .contentWrap article thead,
	.cmsPage .contentWrap article tbody,
	.cmsPage .contentWrap article th,
	.cmsPage .contentWrap article td,
	.cmsPage .contentWrap article tr {
		display: block;
		width: 100%;
	}

	.cmsPage .contentWrap article thead {
		display: none;
	}

	.cmsPage .contentWrap article td {
		position: relative;
		padding-left: 50%;
	}

		.cmsPage .contentWrap article td::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 45%;
			padding-left: 0.75rem;
			font-weight: bold;
			white-space: nowrap;
			content: attr(data-label);
			color: #555;
		}
}

article img {
	max-width: 100%;
	height: auto;
	display: block; /* voorkomt inline spacing issues */
}

.cmsPage .contentWrap article section {
	background: inherit;
	padding:0;
}

.cmsPage .contentWrap article h1 {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
}

.cmsPage .contentWrap article h2 {
	margin-top: 1rem;
	font-size: var(--font-size-h2);
	line-height: 1.6;
	font-weight: bold;
}

.cmsPage .contentWrap article h3 {
	font-size: var(--font-size-h3);
	line-height: 1.6;
	font-weight: bold;
	color: #000;
	margin-top: 10px;
}

.cmsPage .contentWrap article blockquote {
	margin: 1rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid #2b6cb0;
	background: var(--light-blue);
	color: #2d3748;
	font-style: italic;
}

	.cmsPage .contentWrap article blockquote a {
		color: var(--primary-blue);
	}

.cmsPage .contentWrap article blockquote footer {
	margin-top: .5rem;
	font-style: normal;
	color: #4a5568;
}

.cmsPage .contentWrap article p {
	font-size: var(--font-size-p);
	line-height: 1.65;
	font-weight: normal;
	color: #57524D;
}

.cmsPage .contentWrap article ul {
	font-size: var(--font-size-p);
	line-height: 1.65;
	font-weight: normal;
	color: #57524D;
}

.cmsPage .contentWrap article ol {
	font-size: var(--font-size-p);
	line-height: 1.65;
	font-weight: normal;
	color: #57524D;
}

.contentWrap .contentSidebar {
	flex: 1 1 30%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contentSidebar .contentSidebarTool,
.contentSidebar .contentPageIndex {
	padding: var(--padding-default);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	width: 100%;
}

.contentSidebar .contentSidebarTool {
	background: #d5f4ff;
}

	.contentSidebar .contentSidebarTool h2 {
		font-weight: bold;
	}

	.contentSidebar .contentSidebarTool p {
		font-size: var(--font-size-p);
		line-height: 1.65;
		font-weight: normal;
		margin-bottom: 10px;
	}

	.contentSidebar .contentSidebarTool a {
		display: flex;
		background: #1B75BA;
		height: 50px;
		border-radius: 5px;
		font-size: 15pt !important;
		font-weight: bold;
		cursor: pointer;
		color: #FFF;
		padding: 12px 25px;
		text-decoration: none;
		align-items: baseline;
		justify-content: center;
	}

.contentPageIndex {
	display: grid;
}

	.contentPageIndex h2 {
		font-weight: bold;
		width: 100%;
	}

	.contentPageIndex a {
		display: block;
		width: 100%;
		padding-left: 25px;
		line-height: 2.5rem;
		font-size: var(--font-size-link);
		font-weight: normal;
		color: var(--color-link);
		text-decoration: none;
		background: transparent url(/images/linkArrow-blue-thin.png) no-repeat left center;
	}

/*Artikelen onder aan de pagina*/
section.artikelen {
	background: #d5f4ff;
}

	section.artikelen h2 {
		font-size: 1.9em;
		font-weight: bold;
		width: 100%;
		text-align: center;
		margin: 15px 0;
	}

	section.artikelen p.subline {
		font-size: 1.2em;
		font-weight: bold;
		width: 100%;
		text-align: center;
	}

	section.artikelen ul.artikel-grid {
		margin-top: 20px;
		list-style: none;
		padding: 0;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
	}

		section.artikelen ul.artikel-grid li.ebooks {
			background: #F0F3F5;
		}

		section.artikelen ul.artikel-grid a {
			text-decoration: none;
		}

		section.artikelen ul.artikel-grid h3 {
			font-weight: bold;
			color: #1B75BA;
			height: 95px;
		}

		section.artikelen ul.artikel-grid img {
			width: 100%;
			height: 200px;
			object-fit: cover;
		}

		section.artikelen ul.artikel-grid span.bttn {
			margin: 10px 20%;
			background: #00ACED;
			width: 60%;
			height: 40px;
			border-radius: 5px;
			font-weight: bold;
			cursor: pointer;
			color: #FFF;
			padding-top: 6px;
			align-items: baseline;
			text-align: center;
		}

div[itemprop="author"] {
	float: left;
	width: 100%;
	padding: 10px;
	border-top: 1px solid #CCC;
	margin-top: 15px;
}

	div[itemprop="author"] img {
		float: left;
		border: 2px solid #CCC;
		background: #FFF;
		border-radius: 75px;
		width: 125px;
		height: 125px;
		margin: 5px;
	}

	div[itemprop="author"] span[itemprop="name"] {
		float: left;
		width: calc(100% - 140px);
		font-weight: 600;
		font-size: 20px;
	}

	div[itemprop="author"] span[itemprop="description"] {
		float: left;
		width: calc(100% - 140px);
		font-weight: normal;
		font-size: 17px;
	}

/* Artikelstijl binnen grid */
section.artikelen .artikel {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

	section.artikelen .artikel:hover {
		transform: translateY(-4px);
	}

/* Metadata */
section.artikelen .artikel-meta {
	font-size: 0.9em;
	color: #666;
	margin: 0.5rem 1rem 0 1rem;
	line-height: 1.4;
}

section.artikelen time.time {
	display: block;
	font-weight: 500;
}

section.artikelen .update {
	display: block;
	font-style: italic;
	color: #999;
}

/* Titel */
section.artikelen ul.artikel-grid h3 {
	font-weight: bold;
	color: #1B75BA;
	min-height: 70px;
	margin: 1rem;
}

/* E-book blok */
section.artikelen .artikel.tool {
	background: #1B75BA;
	color: white;
	text-align: center;
	padding: 1rem;
}

	section.artikelen .artikel.tool h3 {
		color: white;
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	section.artikelen .artikel.tool img {
		height: 140px;
		object-fit: contain;
		margin-bottom: 1rem;
	}

	section.artikelen .artikel.tool .bttn {
		display: inline-block;
		background: white;
		color: #1B75BA;
		padding: 0.5rem 1rem;
		border-radius: 4px;
		font-weight: bold;
	}

/*urendement*/
section.contentPage {
	padding: 0;
}

	section.contentPage div.container {
		background: #FFF;
		padding: 1rem;
		border-left: 1px solid #CCC;
		border-right: 1px solid #CCC;
	}



	section.contentPage h2 {
		font-size: 1.3rem;
		line-height: 1.6;
		font-weight: bold;
		margin: 1rem 0 0 0;
	}

	section.contentPage p {
		font-size: 1.2rem;
		line-height: 1.6;
	}

	section.contentPage div.container section {
		background: #FFF;
	}

section.dataPage {
}

	section.dataPage div.container {
		background: #FFF;
		padding: 1rem;
		border-left: 1px solid #CCC;
		border-right: 1px solid #CCC;
		border-bottom: 1px solid #CCC;
	}