﻿.category-list li {
	margin-bottom: 10px;
}

.category-list a {
	display: flex;
	justify-content: space-between;
	color: #334155;
}

	.category-list a:hover {
		color: #2563eb;
	}

.article-item {
	background: #fff;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
	box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.article-meta {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: #64748b;
}
.news-content-container {
	/*max-width: 800px;*/
	margin: 5px auto;
	/*border: 2px lightblue solid;*/
	padding: 20px;
	/*background: white;*/
	/*background: linear-gradient(135deg, #5195fb, #2599eb);*/
}

/* عکس اصلی */
.news-main-image {
	background: white;
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.image-caption {
	padding: 8px 12px;
	background: #f8f9fa;
	color: #666;
	font-size: 0.9em;
	text-align: center;
	border-top: 1px solid #eee;
}

/* تگ‌ها */
.news-tags {
	margin-bottom: 15px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.news-tag {
	background: #e3f2fd;
	color: #1565c0;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

	.news-tag:hover {
		background: #bbdefb;
		transform: translateY(-2px);
	}

/* عنوان */
.news-title {
	font-size: 2.2em;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	text-align: right;
}

/* خلاصه */
.news-lead {
	padding: 15px;
	background: #f8f9fa;
	border-right: 4px solid #4a90e2;
	border-radius: 6px;
	margin-bottom: 25px;
}

	.news-lead p {
		font-size: 1.15em;
		line-height: 1.7;
		color: #444;
		font-weight: 500;
	}

/* مشخصات خبر */
.news-meta-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	padding: 20px;
	border-radius: 10px;
	background: #f8f9fa;
	margin-bottom: 30px;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.meta-icon {
	font-size: 1.2em;
}

.meta-label {
	color: #666;
	font-weight: 500;
}

.meta-value {
	color: #1a1a1a;
	font-weight: 600;
}

/* متن کامل خبر */
.news-full-text {
	padding: 15px;
	background: #f8f9fa;
	border-right: 4px solid #4a90e2;
	border-radius: 6px;
	margin-bottom: 25px;
	color: #444;
}

	.news-full-text p {
		font-size: 1.05em;
		line-height: 1.8;
		margin-bottom: 20px;
		text-align: justify;
		font-weight: 400;
	}

.news-inline-image {
	margin: 25px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

	.news-inline-image img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

/* نقل قول */
.news-quote {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-right: 5px solid #ff6b6b;
	padding: 25px;
	border-radius: 8px;
	margin: 30px 0;
	position: relative;
}

.quote-icon {
	font-size: 3em;
	color: #ff6b6b;
	opacity: 0.3;
	position: absolute;
	top: 10px;
	right: 20px;
}

.quote-text {
	font-size: 1.3em;
	font-style: italic;
	color: #444;
	line-height: 1.7;
	margin-bottom: 10px !important;
}

.quote-author {
	color: #666;
	font-weight: 500;
	text-align: left;
}

/* کلمات کلیدی */
.news-keywords {
	padding: 20px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.keyword-label {
	color: #666;
	font-weight: 500;
}

.keyword-tag {
	background: #e9ecef;
	color: #495057;
	padding: 6px 12px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9em;
	transition: all 0.3s ease;
}

	.keyword-tag:hover {
		background: #4a90e2;
		color: white;
		transform: translateY(-2px);
	}

/* اشتراک‌گذاری */
.news-social-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 25px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 8px;
}

.share-label {
	color: #666;
	font-weight: 500;
}

.share-btn {
	padding: 10px 18px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 0.95em;
}

.like-btn {
	background: #e8f5e9;
	color: #2e7d32;
}

.twitter-btn {
	background: #e3f2fd;
	color: #1976d2;
}

.telegram-btn {
	background: #e8eaf6;
	color: #303f9f;
}

.copy-btn {
	background: #f3e5f5;
	color: #7b1fa2;
}

.share-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* خبر مرتبط */
.related-news {
	padding: 20px;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
	border-radius: 8px;
	margin-top: 20px;
}

.related-label {
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 8px;
	font-size: 0.95em;
}

.related-link {
	font-size: 1.1em;
	color: #0d47a1;
	text-decoration: none;
	font-weight: 500;
	line-height: 1.5;
	display: block;
}

	.related-link:hover {
		color: #002171;
		text-decoration: underline;
	}

/* رسپانسیو */
@@media (max-width: 768px) {
	.news-content-container {
		padding: 15px;
	}

	.news-title {
		font-size: 1.8em;
	}

	.news-image {
		height: 250px;
	}

	.news-inline-image img {
		height: 200px;
	}

	.news-meta-info {
		grid-template-columns: 1fr;
	}

	.news-social-share {
		flex-direction: column;
		align-items: stretch;
	}

	.share-btn {
		width: 100%;
		margin-bottom: 8px;
	}
}

@@media (max-width: 480px) {
	.news-title {
		font-size: 1.5em;
	}

	.news-image {
		height: 200px;
	}

	.news-lead p {
		font-size: 1em;
	}

	.news-full-text p {
		font-size: 1em;
	}
}