/* ==========================SINGLE POST========================== */
.single-post-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 60px auto 0;
	padding: 0 20px;
	max-width: 1200px;
	box-sizing: border-box;
}

.post-header {
	display: flex;
	align-items: flex-start;
	gap: 0px;
	width: 100%;
}

.post-title {
	font-size: 19px;
	font-weight: bold;
	color: #333;
	margin: 0 0 20px 0;
	line-height: 1.4;
	flex: 0 0 50%;
	text-align: right;
}

.post-image-wrapper {
	flex: 0 0 50%;
	text-align: center;
}

.post-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.post-image:hover {
	transform: scale(1.05);
}

.post-content-wrapper {
	width: 100%;
	padding:8px;
	border-radius:9px;
	border: 2.5px dashed #cdcbcb;
}

.post-content {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.post-content p {
	margin: 0 0 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.post-header {
		flex-direction: column;
		gap: 30px;
	}
	.post-title {
		flex: 0 0 100%;
		font-size: 24px;
		text-align: center;
	}
	.post-image-wrapper {
		flex: 0 0 100%;
	}
	.post-content-wrapper {
		flex: 1 1 100%;
	}
	.post-content {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.single-post-container {
		margin: 40px auto 0;
		padding: 0 15px;
	}
	.post-title {
		font-size: 20px;
	}
	.post-content {
		font-size: 13px;
	}
}