/* Breadcrumbs */
.breadcrumb ol {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	color: var(--text-light);
}
.breadcrumb li::after {
	content: "\203A";
	margin: 0 12px;
	color: var(--border-color);
}
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* Single Article */
.single-article { max-width: 800px; margin: 0 auto; }
.entry-title { margin-bottom: 15px; }
.entry-meta {
	font-size: 0.9rem;
	color: #5f6368;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-color);
}
.featured-image { margin-bottom: 30px; }
.featured-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.entry-content { font-size: 1.1rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-content p { margin-bottom: 1.5em; }

/* Social Share */
.social-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 40px 0;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
}
.share-title { font-weight: 700; font-size: 0.9rem; color: var(--text-light); text-transform: uppercase; }
.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}
.share-btn:hover { transform: translateY(-3px); filter: brightness(1.1); }
.share-facebook { background: #1877f2; }
.share-x { background: #000000; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }
.share-btn svg { fill: white; }

/* Table of Contents (Bölüm 5.3) */
.toc {
	background: var(--secondary-bg);
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 32px;
	border: 1px solid var(--border-color);
}
.toc-title { font-weight: 700; margin-bottom: 16px; font-size: 1.1rem; color: var(--text-color); }
.toc ol { list-style: none; padding-left: 0; }
.toc li { margin-bottom: 8px; }
.toc li:last-child { margin-bottom: 0; }
.toc .toc-level-3 { padding-left: 20px; }
.toc a { text-decoration: none; color: var(--text-color); transition: color 0.2s; }
.toc a:hover { color: var(--primary-color); }

/* Author Box (Bölüm 5.7) */
.author-box {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: var(--secondary-bg);
	border-radius: 8px;
	margin-top: 40px;
}
.author-avatar img { border-radius: 50%; }
.author-name { font-weight: 700; margin-bottom: 5px; }
.author-bio { font-size: 0.95rem; }

/* Related Posts */
.related-posts { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.related-title { margin-bottom: 24px; font-weight: 800; }
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media screen and (max-width: 600px) {
	.related-grid { grid-template-columns: 1fr; }
}
.related-card {
	display: flex;
	flex-direction: column;
}
.related-image-link {
	display: block;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 12px;
}
.related-card img { 
	width: 100%; 
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.related-card:hover img { transform: scale(1.05); }
.related-card h4 { font-size: 1rem; margin: 0; line-height: 1.4; }
.related-card a { text-decoration: none; color: var(--text-color); font-weight: 600; }
.related-card a:hover { color: var(--primary-color); }

/* Comments Area */
.comments-area { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-color); }
.comments-title { margin-bottom: 32px; font-weight: 800; font-size: 1.5rem; }
.comment-list { list-style: none; padding: 0; margin-bottom: 40px; }
.comment { margin-bottom: 24px; padding: 24px; background: white; border: 1px solid var(--border-color); border-radius: 12px; transition: border-color 0.2s; }
.comment:hover { border-color: var(--primary-color); }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.875rem; color: var(--text-light); }
.comment-meta .avatar { border-radius: 50%; }
.comment-author cite { font-style: normal; font-weight: 700; color: var(--text-color); }
.comment-content { font-size: 1rem; color: var(--text-color); line-height: 1.6; }
.comment-reply-link { display: inline-block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; color: var(--primary-color); text-decoration: none; }

/* Comment Form */
.comment-respond { padding: 32px; background: var(--secondary-bg); border-radius: 12px; border: 1px solid var(--border-color); }
.comment-reply-title { margin-bottom: 24px; font-weight: 800; font-size: 1.25rem; }
.comment-form p { margin-bottom: 20px; }
.comment-form label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form textarea { 
	width: 100%; 
	padding: 12px 16px; 
	border: 1px solid var(--border-color); 
	border-radius: 8px; 
	font-family: inherit; 
	font-size: 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.form-submit input[type="submit"] { 
	background: var(--primary-color); 
	color: white; 
	padding: 12px 32px; 
	border: none; 
	border-radius: 8px; 
	font-weight: 700; 
	cursor: pointer; 
	transition: background 0.2s;
}
.form-submit input[type="submit"]:hover { background: var(--primary-hover); }

/* Pagination */
.pagination { margin-top: 60px; }
.pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 8px;
	border: 1px solid var(--border-color);
	text-decoration: none;
	color: var(--text-color);
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.2s;
}
.pagination .page-numbers:hover:not(.current) { 
	border-color: var(--primary-color); 
	color: var(--primary-color);
	background: var(--accent-color);
}
.pagination .current { 
	background: var(--primary-color); 
	color: white; 
	border-color: var(--primary-color); 
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.pagination .prev, .pagination .next { font-size: 1.2rem; }

/* Category Description */
.category-description {
	background: #f8f9fa;
	padding: 20px;
	border-left: 4px solid var(--primary-color);
	margin-bottom: 40px;
	font-style: italic;
}

/* Footer Styling */
.site-footer {
	background: var(--secondary-bg);
	padding: 60px 0 30px;
	border-top: 1px solid var(--border-color);
	margin-top: 80px;
}
.footer-navigation { margin-bottom: 32px; }
.footer-navigation ul {
	display: flex;
	justify-content: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
}
.footer-navigation a {
	text-decoration: none;
	color: var(--text-light);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s;
}
.footer-navigation a:hover { color: var(--primary-color); }

.site-info {
	text-align: center;
	font-size: 0.875rem;
	color: var(--text-light);
	border-top: 1px solid var(--border-color);
	padding-top: 30px;
}
.site-info a { color: var(--text-color); text-decoration: none; font-weight: 600; }
