body.single-steden main,
body.single-steden article {
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
}

body.single-steden .site,
body.single-steden .site-inner,
body.single-steden .site-content,
body.single-steden .content-area,
body.single-steden .site-main,
body.single-steden article,
body.single-steden .type-steden,
body.single-steden .entry-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

body.single-steden .entry-header,
body.single-steden .entry-footer {
	display: none !important;
}

body.single-steden .stad-page {
	width: 100%;
	min-height: 100vh;
	padding: 40px 0 60px 0;
	box-sizing: border-box;
}

body.single-steden .stad-inner {
	width: min(1280px, calc(100% - 80px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"logo"
		"menu"
		"text"
		"images"
		"host"
		"locatie"
		"cities"
		"footer";
	row-gap: 34px;
	align-items: start;
}

body.single-steden .stad-logo {
	grid-area: logo;
	justify-self: start;
	align-self: start;
}

body.single-steden .stad-logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.single-steden .stad-menu {
	grid-area: menu;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	align-items: center;
	padding: 0;
	margin: 0;
}

body.single-steden .stad-menu a {
	text-decoration: none;
	font-weight: 700;
	line-height: 1.2;
}

body.single-steden .stad-tekst-blok {
	grid-area: text;
	background: rgba(255,255,255,0.5);
	padding: 30px 32px;
	border-radius: 18px;
}

body.single-steden .stad-tekst {
	max-width: 680px;
}

body.single-steden .stad-afbeeldingen {
	grid-area: images;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

body.single-steden .stad-afbeelding {
	margin: 0;
}

body.single-steden .stad-afbeelding img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 14px;
}

body.single-steden .stad-host-kaart {
	grid-area: host;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 230px;
	gap: 28px;
	padding: 30px 32px;
	background: rgba(255,255,255,0.5);
	border-radius: 18px;
	align-items: start;
}

body.single-steden .stad-host-titel {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

body.single-steden .stad-host-tekst {
	max-width: 680px;
}

body.single-steden .stad-host-afbeelding {
	justify-self: end;
}

body.single-steden .stad-host-afbeelding img {
	display: block;
	width: 210px;
	height: 210px;
	object-fit: cover;
	border-radius: 14px;
}

body.single-steden .stad-locatie-kaart {
	grid-area: locatie;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) 230px;
	gap: 28px;
	padding: 30px 32px;
	background: rgba(255,255,255,0.5);
	border-radius: 18px;
	align-items: start;
}

body.single-steden .stad-locatie-titel {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

body.single-steden .stad-locatie-tekst {
	max-width: 680px;
}

body.single-steden .stad-locatie-afbeelding {
	justify-self: end;
}

body.single-steden .stad-locatie-afbeelding img {
	display: block;
	width: 210px;
	height: 210px;
	object-fit: cover;
	border-radius: 14px;
}

body.single-steden .andere-steden {
	grid-area: cities;
	padding: 30px 32px;
	background: rgba(255,255,255,0.4);
	border-radius: 18px;
}

body.single-steden .andere-steden h2 {
	margin: 0 0 22px 0;
}

body.single-steden .andere-steden-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

body.single-steden .andere-stad-link img {
	display: block;
	width: 100%;
	border-radius: 12px;
}

body.single-steden .stad-footer-tekst {
	grid-area: footer;
	padding-top: 8px;
}

@media screen and (max-width: 980px) {
	body.single-steden .stad-inner {
		width: calc(100% - 32px);
		row-gap: 24px;
	}

	body.single-steden .stad-afbeeldingen {
		grid-template-columns: 1fr;
	}

	body.single-steden .stad-host-kaart,
	body.single-steden .stad-locatie-kaart {
		grid-template-columns: 1fr;
	}

	body.single-steden .stad-host-afbeelding,
	body.single-steden .stad-locatie-afbeelding {
		justify-self: start;
	}

	body.single-steden .andere-steden-grid {
		grid-template-columns: 1fr;
	}
}