h1 {
	margin-top: 20px;
	margin-bottom: 250px;
	width: 100%!important;
	font-size: 60px;
}

/* Hero sectie */
.hero {
	background-color: #1c3934;
	color: #fff;
	padding: 2rem 2rem 5rem;
}

.hero-container {
	max-width: 1300px;
	margin: 0 auto;
}

.whats-new {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 40px;
}

.hero h1 {
	margin-bottom: 1rem;
}

.slider-container {
	position: relative;
	width: 100%;
	display: none;
	height: 500px;
	overflow: hidden;
	margin: 0 auto 80px; /* Centreer de slider */
	border-radius: 15px;
}
.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
	border-radius: 15px;
	overflow: hidden;
}

.slide:nth-child(2) {
	transform: translateX(100%);
}

.featured-posts {
	display: flex;
	gap: 24px;
	margin-top: 2rem;
}

.featured-posts .post {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	width: 300px;
}

.featured-posts .post img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.featured-posts .post h3 {
	color: #333;
	padding: 1rem;
}

.editors-picks {
	padding: 2rem;
}

.editors-picks-container {
	max-width: 1300px;
	margin: 0 auto;
}

.about-text {
	padding-top: 60px;
	background-color: #f0f0f0;
}
.about-text-container {
	display: flex;
	gap: 40px;
	max-width: 1300px;
	margin: auto;
	background-color: #f0f0f0;
}
.about-text-container ul {
	margin-left: 30px;
}

.text-container{
	padding-bottom: 60px;
	width: 100%;
}

.hire-image{
	max-width: 400px;
	height: 100%;
	align-self: flex-end;
}



.editors-picks-container p {
	max-width: 500px;
}
.editors-picks-container a {
	display: block;
	color: #1d1d1d;
	background-color: #c4ff5e;
	text-decoration: none;
	/* border: 2px solid #1d1d1d; */
	width: fit-content;
	padding: 10px 30px;
	border-radius: 8px;
	margin-top: 29px;
	text-align: center;
}

.editors-picks-container a:hover {
	display: block;
	color: #fff;
	background-color: #1d1d1d;
	text-decoration: none;
	/* border: 2px solid #1d1d1d; */
	width: fit-content;
	padding: 10px 30px;
	border-radius: 8px;
	margin-top: 29px;
	text-align: center;
}

.picks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

/* Algemene sectiestijlen */
section h2 {
	margin-bottom: 1rem;
}

.tool-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.tool-links a {
	display: block;
	font-size: 12px;
	color: #1d1d1d;
	text-decoration: underline;
	/* border: 2px solid #1d1d1d; */
	width: fit-content;
	padding: 10px 15px;
	border-radius: 8px;
	margin-top: 29px;
	text-align: center;
}

/* Nieuwsbrief sectie */
.newsletter {
	background-color: #f0f0f0;
	padding: 2rem;
	text-align: center;
}

.newsletter-container {
	max-width: 1300px;
	margin: 0 auto;
}

.newsletter form {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.newsletter input[type="email"] {
	padding: 0.5rem;
	width: 300px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
}

.newsletter button {
	padding: 0.5rem 1rem;
	background-color: #c4ff5e;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
}

/* Tools */
.tools,
.missie {
	max-width: 1300px;
	margin: 80px auto 80px;
}

.tools-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.tools .tool {
	background-color: #fff;
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
}

.missie p {
	max-width: 800px;
}

@media screen and (max-width: 720px) {
	.hero h1 {
		font-size: 1.6rem;
		line-height: 1.65rem;
		padding-top: 32px;
		margin: 0;
	}
	.hero h2 {
		margin: 24px 0 12px;
		font-size: 1.2rem;
		line-height: 1.45rem;
	}

	.hero {
		padding: 0 2rem 3.125rem;
	}

	.whats-new {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 0px;
		text-align: center;
	}

	.featured-posts {
		flex-direction: column;
	}

	.slider-container {
		display: block;
		box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
		width: calc(100% - 24px);
		background-color: #fff;
	}

	.posts-content-home h3 {
		padding: 20px;
		color: #1d1d1d;
	}

	.posts-content-home a {
		color: #1d1d1d;
		text-decoration: none;
		border: 2px solid #1d1d1d;
		width: 200px;
		margin: 10px 0;
		padding: 10px 30px;
		border-radius: 8px;
	}

	.about-text {
		padding: 60px 24px 0;
		background-color: #f0f0f0;
	}

	.about-text-container {
		display: flex;
		flex-direction: column;
		gap: 40px;
		max-width: 1300px;
		margin: auto;
		background-color: #f0f0f0;
	}

	.text-container {
		padding-bottom: 0;
	}

	.hire-image {
		width: 100%;
		height: 100%;
		align-self:auto;
		margin-top: -50px;
	}
	.tools {
		width: calc(100% - 48px);
		text-align: center;
	}

	.tools-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
