.mainContainer h3{
}
.mainContainer h3 small{
	color: var(--themeGreen);
	font-size: 0.7em;
	transform: translateY(-10px);
	display: inline-block;
}


/* -- bijlage list -- */
.bijlage-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.bijlage-item a {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1.1rem;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid var(--themeBorderColor);
	color: var(--themeText);
	text-decoration: none;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, color .15s ease-in-out;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.bijlage-item a:hover {
	background-color: var(--themeGreen);
	border-color: var(--themeGreen);
	color: #fff;
}

.bijlage-type-icon {
	width: 28px;
	height: 28px;
	flex: none;
	object-fit: contain;
}

.bijlage-name {
	flex: 1;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3em;
}

.bijlage-download-icon {
	width: 20px;
	height: 20px;
	flex: none;
	opacity: 0.4;
	object-fit: contain;
	transition: opacity .15s ease-in-out;
}

.bijlage-item a:hover .bijlage-download-icon {
	opacity: 0.85;
}
