/* Template CSS - single */
/* Loaded on template: single */
/* Build date: 2025-10-28 16:56:52 */
/* DO NOT EDIT - Generated file */

   SECTION 2: SINGLE POST STYLES (single.php)
   ======================================== */

/* Single Post Styles */
.single-post {
	background: white;
	padding: 40px;
	border-radius: var(--ads-border-radius);
	box-shadow: var(--ads-shadow-sm);
	margin-bottom: 40px;
}

.single-post .entry-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--ads-border-color);
}

.single-post .entry-title {
	color: var(--ads-primary);
	font-size: 2.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.95rem;
	color: var(--ads-text-light);
}

.entry-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.entry-meta .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.entry-meta a {
	color: var(--ads-primary);
	text-decoration: none;
}

.entry-meta a:hover {
	text-decoration: underline;
}

.single-post .entry-thumbnail {
	margin: 30px -40px;
	text-align: center;
}

.single-post .entry-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.thumbnail-caption {
	padding: 15px 40px;
	background: var(--ads-neutral);
	color: var(--ads-text-light);
	font-size: 0.9rem;
	font-style: italic;
	margin: 0;
}

.single-post .entry-content {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--ads-text);
}

.single-post .entry-content h2 {
	color: var(--ads-primary);
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 1.75rem;
}

.single-post .entry-content h3 {
	color: var(--ads-text);
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.single-post .entry-content p {
	margin-bottom: 20px;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
	margin-left: 30px;
	margin-bottom: 20px;
}

.single-post .entry-content li {
	margin-bottom: 10px;
}

.single-post .entry-content blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: var(--ads-neutral);
	border-left: 4px solid var(--ads-accent);
	font-style: italic;
	font-size: 1.2rem;
}

.single-post .entry-footer {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid var(--ads-border-color);
}

.entry-tags {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.entry-tags .dashicons {
	color: var(--ads-primary);
}

.entry-tags a {
	background: var(--ads-neutral);
	padding: 4px 12px;
	border-radius: 15px;
	color: var(--ads-text);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.entry-tags a:hover {
	background: var(--ads-primary);
	color: white;
}

.share-buttons {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: var(--ads-neutral);
	border-radius: var(--ads-border-radius);
}

.share-buttons span:first-child {
	font-weight: 600;
	color: var(--ads-text);
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: white;
	color: var(--ads-text);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid var(--ads-border-color);
}

.share-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--ads-shadow-md);
}

.share-btn.facebook:hover {
	background: #1877f2;
	color: white;
	border-color: #1877f2;
}

.share-btn.twitter:hover {
	background: #1da1f2;
	color: white;
	border-color: #1da1f2;
}

.share-btn.linkedin:hover {
	background: #0077b5;
	color: white;
	border-color: #0077b5;
}

.share-btn.email:hover {
	background: var(--ads-primary);
	color: white;
	border-color: var(--ads-primary);
}

.post-navigation {
	margin: 40px 0;
	padding: 30px;
	background: var(--ads-neutral);
	border-radius: var(--ads-border-radius);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.nav-previous,
.nav-next {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nav-next {
	text-align: right;
}

.nav-label {
	font-size: 0.9rem;
	color: var(--ads-text-light);
	font-weight: 600;
}

.post-navigation a {
	color: var(--ads-primary);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.post-navigation a:hover {
	color: var(--ads-secondary);
	text-decoration: underline;
}

/* Responsive - Single Post */
@media (max-width: 768px) {
	.single-post {
		padding: 20px;
	}
	
	.single-post .entry-title {
		font-size: 1.75rem;
	}
	
	.entry-meta {
		flex-direction: column;
		gap: 10px;
	}
	
	.single-post .entry-thumbnail {
		margin: 20px -20px;
	}
	
	.single-post .entry-content {
		font-size: 1rem;
	}
	
	.post-navigation .nav-links {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.nav-next {
		text-align: left;
	}
	
	.share-buttons {
		flex-wrap: wrap;
	}
}

