.post-detail-container {
	padding-top: 20px;
	background-color: var(--soft-bg);
}

/* Yorumlar Bölümü */
.comment-list {
	margin-top: 20px;
}

.single-comment {
	display: flex;
	gap: 12px;
	padding: 15px;
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.2s;
}

.single-comment:hover {
	background-color: #f8fafc;
}

.comment-user-img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-content {
	flex: 1;
}

.comment-bubble {
	background-color: #f1f5f9;
	padding: 10px 15px;
	border-radius: 12px;
	display: block;
	width: 100%;
}

.comment-actions {
	display: flex;
	gap: 15px;
	margin-top: 5px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-gray);
	padding-left: 5px;
}

.comment-actions span {
	cursor: pointer;
}

.comment-actions span:hover {
	color: var(--primary-red);
}

/* Sağ Sidebar Profil Kartı */
.author-mini-card {
	text-align: center;
	padding: 20px;
}

.author-avatar-big {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin-bottom: 15px;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Kategori Etiketi */
.category-badge-detail {
	background: #fff1f2;
	color: var(--primary-red);
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
}

/* Video & Image Modal Fix */
.post-carousel img {
	border-radius: 10px;
}

.sticky-sidebar {
	position: sticky;
	top: 90px;
}