/**
 * Bharat Sampark — Single Article Reading Experience
 */

.bs-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: var(--bs-primary);
	z-index: 9999;
	transition: width 0.1s linear;
}

.bs-single-main {
	padding: 24px 0 50px 0;
}

.bs-single-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
}
@media (max-width: 991px) {
	.bs-single-layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.bs-single-article-entry {
	background: #ffffff;
	border-radius: var(--bs-radius-lg);
	padding: 30px;
	border: 1px solid var(--bs-border);
	box-shadow: var(--bs-shadow-sm);
}
@media (max-width: 768px) {
	.bs-single-article-entry {
		padding: 18px 16px;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}
}

/* Article Header */
.bs-article-header {
	margin-bottom: 24px;
}
.bs-article-meta-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.bs-article-read-time {
	font-size: 13px;
	color: var(--bs-text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}
.bs-article-headline {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.35;
	color: #0f172a;
	margin-bottom: 14px;
}
@media (max-width: 768px) {
	.bs-article-headline {
		font-size: 24px;
	}
}
.bs-article-subtitle-box {
	background: #f8fafc;
	border-left: 4px solid var(--bs-primary);
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 18px;
	display: flex;
	gap: 10px;
}
.bs-sub-bullet {
	font-size: 16px;
}
.bs-article-subtitle {
	font-size: 16px;
	font-weight: 600;
	color: #334155;
	line-height: 1.5;
	margin: 0;
}

/* Byline and Dates */
.bs-byline-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid var(--bs-border);
	border-bottom: 1px solid var(--bs-border);
	margin-bottom: 16px;
	flex-wrap: wrap;
	gap: 12px;
}
.bs-byline-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.bs-author-avatar {
	border-radius: 50%;
}
.bs-author-text {
	font-size: 14px;
}
.bs-author-label {
	color: var(--bs-text-muted);
}
.bs-author-name {
	font-weight: 700;
	color: var(--bs-secondary);
}
.bs-byline-dates {
	display: flex;
	gap: 14px;
	font-size: 13px;
	color: var(--bs-text-muted);
	flex-wrap: wrap;
}

/* Social Share Bar */
.bs-share-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 14px 0 20px 0;
}
.bs-share-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bs-text-muted);
	margin-right: 4px;
}
.bs-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
}
.bs-share-whatsapp {
	background: #25d366;
	color: #ffffff !important;
}
.bs-share-native {
	background: #0f172a;
	color: #ffffff !important;
}
.bs-share-facebook {
	background: #1877f2;
	color: #ffffff !important;
	padding: 7px 10px;
}
.bs-share-x {
	background: #000000;
	color: #ffffff !important;
	padding: 7px 10px;
}
.bs-share-telegram {
	background: #229ed9;
	color: #ffffff !important;
	padding: 7px 10px;
}
.bs-share-copy,
.bs-btn-bookmark {
	background: #f1f5f9;
	color: #334155;
	border-color: #cbd5e1;
}
.bs-share-copy:hover,
.bs-btn-bookmark:hover {
	background: #e2e8f0;
}

/* Featured Media */
.bs-article-featured-media {
	margin: 20px 0;
	border-radius: var(--bs-radius);
	overflow: hidden;
}
.bs-featured-img {
	width: 100%;
	height: auto;
}
.bs-featured-caption {
	padding: 8px 12px;
	background: #f8fafc;
	font-size: 13px;
	color: var(--bs-text-muted);
	border-left: 3px solid #cbd5e1;
	font-style: italic;
}

/* Article Body Typography */
.bs-article-body {
	font-size: 18px;
	line-height: 1.8;
	color: #1e293b;
	margin-bottom: 30px;
}
.bs-article-body p {
	margin-bottom: 20px;
}
.bs-article-body h2,
.bs-article-body h3 {
	font-weight: 800;
	color: #0f172a;
	margin: 30px 0 16px 0;
	line-height: 1.35;
}
.bs-article-body blockquote {
	border-left: 4px solid var(--bs-primary);
	padding: 14px 20px;
	margin: 24px 0;
	background: #fef2f2;
	font-style: italic;
	font-size: 19px;
	color: #991b1b;
	border-radius: 0 var(--bs-radius) var(--bs-radius) 0;
}

/* Tags Wrap */
.bs-article-tags-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid var(--bs-border);
	border-bottom: 1px solid var(--bs-border);
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.bs-tags-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--bs-text-muted);
}
.bs-tags-list {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.bs-tag-item {
	background: #f1f5f9;
	color: #0f172a;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
}
.bs-tag-item:hover {
	background: var(--bs-primary);
	color: #ffffff;
}

/* Bottom Share */
.bs-article-bottom-share-wrap {
	background: #f8fafc;
	padding: 20px;
	border-radius: var(--bs-radius);
	margin-bottom: 30px;
	text-align: center;
}
.bs-share-prompt {
	font-size: 15px;
	font-weight: 700;
	color: var(--bs-secondary);
	margin-bottom: 12px;
}
.bs-article-bottom-share-wrap .bs-share-bar {
	justify-content: center;
	margin: 0;
}

/* Author Bio Card */
.bs-author-bio-card {
	display: flex;
	gap: 18px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid var(--bs-border);
	border-radius: var(--bs-radius);
	margin-bottom: 30px;
	align-items: center;
}
.bs-author-bio-avatar img {
	border-radius: 50%;
}
.bs-author-bio-name {
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 6px;
}
.bs-author-bio-text {
	font-size: 14px;
	color: #475569;
	margin-bottom: 8px;
}
.bs-author-bio-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--bs-primary);
}

/* Related News */
.bs-related-news-section {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 2px solid var(--bs-border);
}
.bs-related-news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 600px) {
	.bs-related-news-grid {
		grid-template-columns: 1fr;
	}
}

/* Comments */
.comments-area {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--bs-border);
}
.comment-reply-title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 16px;
}
.comment-form p {
	margin-bottom: 14px;
}
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--bs-border);
	border-radius: 6px;
	background: #ffffff;
}
.form-submit input[type="submit"] {
	background: var(--bs-primary);
	color: #ffffff;
	border: none;
	padding: 10px 24px;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
}
.form-submit input[type="submit"]:hover {
	background: var(--bs-primary-dark);
}
