section.post {
	min-height: 90vh;
}

section.post div.header {
	padding-top: 100px;
	position: relative;
	min-height: 300px;
	overflow: hidden;
}

section.post div.header img#background {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	scale: 1.2;
	display: block;
	filter: blur(100px) brightness(0.5) contrast(2);
	z-index: -1;
}

section.post div.header div.title-content {
	width: 100%;
	max-width: 900px;
	padding: 0 10px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 25px;
}

section.post div.header div.title-content img#header-img {
	width: 250px;
	height: 175px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
}

section.post div.header div.title-content p#title {
	color: #fff;
	font-size: 2rem;
	font-weight: 900;
}
section.post div.header div.title-content p#date {
	padding-top: 5px;
	color: #fff;
}

section.post div.post-content {
	width: 100%;
	max-width: 900px;
	padding: 15px 10px;
	margin: 0 auto;
}

@media only screen and (max-width: 568px) {
	section.post div.header {
		padding-top: 150px;
		padding-bottom: 20px;
	}

	section.post div.header div.title-content {
		gap: 20px;
		flex-direction: column;
		text-align: center;
	}
}