/* Logo kleiner op blogpagina's */
.blog-page .site-logo img {
	max-height: 90px;
	width: auto;
}

/* Blog layout */
.blogHero {
	background: linear-gradient(135deg, #15442c 0%, #1a5c3a 100%);
	padding: 3rem 1.5rem 2.5rem;
	color: #fff;
}

.blogHero .wrap {
	max-width: 800px;
	margin: 0 auto;
}

.blogHero h1 {
	font-size: 2rem;
	line-height: 1.25;
	margin: 1rem 0 1.25rem;
	color: #fff;
}

.blog-intro {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.88);
	margin-bottom: 1rem;
}

.blog-meta {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
}

/* Article body */
.blogContent {
	padding: 3rem 1.5rem 4rem;
}

.blogContent .wrap {
	max-width: 800px;
	margin: 0 auto;
}

.blogContent article h2 {
	font-size: 1.45rem;
	color: #15442c;
	margin: 2.5rem 0 0.75rem;
	line-height: 1.3;
}

.blogContent article h3 {
	font-size: 1.15rem;
	color: #15442c;
	margin: 1.75rem 0 0.5rem;
}

.blogContent article p {
	font-size: 1rem;
	line-height: 1.75;
	color: #333;
	margin-bottom: 1.1rem;
}

.blogContent article ul {
	margin: 0.5rem 0 1.25rem 1.25rem;
}

.blogContent article ul li {
	font-size: 1rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 0.35rem;
}

.blogContent article a {
	color: #15442c;
	text-decoration: underline;
	text-decoration-color: #11a23a;
}

.blogContent article a:hover {
	color: #11a23a;
}

/* Info box */
.infoBox {
	background: #f0faf4;
	border-left: 4px solid #11a23a;
	border-radius: 6px;
	padding: 1.25rem 1.5rem;
	margin: 1.5rem 0;
}

.infoBox strong {
	display: block;
	margin-bottom: 0.6rem;
	color: #15442c;
	font-size: 1rem;
}

.infoBox--highlight {
	background: #fff8e1;
	border-left-color: #fab500;
}

/* Blog table */
.blog-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0.5rem;
}

.blog-table td {
	padding: 0.4rem 0;
	font-size: 0.95rem;
	color: #333;
	border-bottom: 1px solid #e8f4ec;
}

.blog-table td:last-child {
	text-align: right;
	font-weight: 600;
}

.blog-table tr:last-child td {
	border-bottom: none;
	color: #15442c;
	font-size: 1rem;
}

/* Blog CTA */
.blogContent .blogCta {
	background: #15442c;
	border-radius: 10px;
	padding: 2rem;
	margin: 2.5rem 0;
	color: #fff;
}

.blogContent .blogCta h3 {
	color: #fab500;
	margin: 0 0 0.6rem;
	font-size: 1.2rem;
}

.blogContent article .blogCta p {
	color: rgba(255,255,255,0.88);
	margin-bottom: 1.25rem;
}

.blogContent .blogCta .button {
	background: #fab500;
	color: #15442c;
	font-weight: 700;
}

.blogContent .blogCta .button:hover {
	background: #e0a500;
}

/* FAQ in blog */
.blogContent .faq-list {
	margin-top: 1rem;
}

.blogContent .faq-item {
	border-bottom: 1px solid #e0e0e0;
}

.blogContent .faq-question {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 1rem 2rem 1rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: #15442c;
	cursor: pointer;
	position: relative;
	line-height: 1.4;
}

.blogContent .faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: #11a23a;
	font-weight: 400;
}

.blogContent .faq-item.open .faq-question::after {
	content: '-';
}

.blogContent .faq-answer {
	display: none;
	padding: 0 0 1rem;
	font-size: 0.97rem;
	line-height: 1.7;
	color: #444;
}

.blogContent .faq-item.open .faq-answer {
	display: block;
}

@media (max-width: 767px) {
	.blogHero h1 {
		font-size: 1.5rem;
	}

	.blogCta {
		padding: 1.5rem 1.25rem;
	}
}
