.new-post-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.new-post-container:nth-child(even) {
	background-color: #edf0f4;
}

.new-post-container:nth-child(even) > .new-post {
	flex-direction: row-reverse;
}

.new-post {
	display: flex;
	gap: 32px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1280px;
	padding: 82px 0;
}

.new-post-content {
	font-family: "Work Sans", serif;
	max-width: 592px;
}

.new-post img {
	width: 100%;
	width: 632px !important;
	height: 408px !important;
	object-fit: cover;
	border-radius: 16px !important;
}

.new-post h4 {
	font-size: 24px;
	font-family: "Ubuntu", serif;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 32px;
	color: var(--primary-color);
}

.new-post h4 a {
	color: var(--primary-color);
}

.new-post-category-date-container {
	margin-bottom: 32px;
}

.post-category {
	font-size: 14px;
	color: var(--accent-color);
	font-weight: 500;
	margin-right: 32px;
}

/* Mobile styles */
@media (max-width: 1280px) {
	.new-post {
		flex-wrap: wrap;
		justify-content: center;
		padding: 82px 25px;
	}
}
