/* SEO-landingspagina's (synoniemen-strategie) — in tegenstelling tot de
   advertentie-landingspagina "onthaasten" behouden deze pagina's het normale
   menu/footer (goed voor crawlbaarheid/interne links), alleen de
   inhoud-sectie zelf krijgt hier opmaak. */

.seolp {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 20px 60px;
}
.seolp * {
	box-sizing: border-box;
}

.seolp-hero {
	text-align: center;
	padding: 24px 0 40px;
}
.seolp-hero h1 {
	font-size: 34px;
	line-height: 1.25;
	margin: 0 0 18px;
	color: #222125;
}
.seolp-hero .seolp-intro {
	font-size: 17px;
	line-height: 1.7;
	color: #444;
	max-width: 760px;
	margin: 0 auto;
}

.seolp-section {
	margin: 44px 0;
}
.seolp-section h2 {
	font-size: 24px;
	color: #222125;
	margin: 0 0 16px;
	text-align: center;
}
.seolp-section h3 {
	font-size: 18px;
	color: #222125;
	margin: 28px 0 8px;
}
.seolp-section p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}

.seolp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 24px;
}
.seolp-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
}
.seolp-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.seolp-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.seolp-card h4 {
	font-size: 16px;
	margin: 0 0 6px;
	color: #222125;
}
.seolp-card .seolp-price {
	font-weight: 700;
	color: #5CA89F;
	margin: 0 0 12px;
}
.seolp-card .seolp-cta {
	margin-top: auto;
	display: block;
	text-align: center;
	background: #222125;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 10px;
	border-radius: 6px;
	font-size: 14px;
	transition: background 0.2s ease;
}
.seolp-card .seolp-cta:hover {
	background: #5CA89F;
	color: #fff;
}

.seolp-shop-cta {
	text-align: center;
	margin-top: 24px;
}
.seolp-shop-cta a {
	display: inline-block;
	background: #5CA89F;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 6px;
	font-size: 16px;
}
.seolp-shop-cta a:hover {
	background: #4a8f87;
}

@media (max-width: 600px) {
	.seolp-hero h1 {
		font-size: 26px;
	}
	.seolp-section h2 {
		font-size: 21px;
	}
}
