/* ==========================================================================
   SINGLE POST STYLES (Posamezna objava)
   ========================================================================== */

/* --- 1. Glavni vsebnik (Optimizacija branja) --- */
.post-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.custom-single-post {
	padding: 60px 0;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- 2. Glava objave (Naslov in Metapodatki) --- */
.post-header {
	text-align: center;
	margin-bottom: 40px;
}

.post-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 42px;
	font-weight: 700;
	color: #111;
	margin-bottom: 15px;
	line-height: 1.2;
}

.post-meta {
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- 3. Prikazna slika (Featured Image) --- */
.post-thumbnail {
	margin-bottom: 50px;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* --- 4. Vsebina objave (Gutenberg/Classic Editor vsebina) --- */
.post-content {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
}

.post-content p {
	margin-bottom: 25px;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
	font-family: "Playfair Display", Georgia, serif;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #111;
}

.post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 20px 0;
}

.post-content blockquote {
	border-left: 4px solid #111;
	padding-left: 20px;
	margin: 30px 0;
	font-style: italic;
	font-size: 22px;
	color: #555;
}

.post-content ul, 
.post-content ol {
	margin-bottom: 25px;
	padding-left: 20px;
}

.post-content li {
	margin-bottom: 10px;
}

/* --- 5. Oznake (Tags) --- */
.post-tags {
	margin-top: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.post-tags a {
	display: inline-block;
	background-color: #f5f5f5;
	color: #333;
	padding: 8px 20px;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: background 0.3s;
}

.post-tags a:hover {
	background-color: #e0e0e0;
}

/* --- 6. Povezani prispevki & Navigacija (Related Posts) --- */
.related-posts-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 32px; /* Malce večji naslov */
	font-weight: 700;
	color: #111;
	margin-top: 50px;
	margin-bottom: 20px;
	text-align: left; /* Spremenjeno iz center v left */
}

.nav-links {
	display: flex;
	justify-content: space-between;
	padding-top: 0;
	border-top: none; /* Odstranjena črta */
	gap: 20px;
}

.nav-previous, 
.nav-next {
	flex: 0 1 48%;
}

.nav-next {
	text-align: right;
}

.nav-subtitle {
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px; /* Povečano */
	font-weight: 600; /* Podebeljeno namesto uppercase */
	text-transform: none; /* Odstranjen uppercase */
	letter-spacing: normal;
	color: #777; /* Temnejša siva */
	margin-bottom: 5px;
	display: inline-block;
}

.nav-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 20px;
	font-weight: bold;
	color: #111;
	transition: color 0.3s ease;
	display: inline-block;
	line-height: 1.3;
}

.nav-previous a,
.nav-next a {
	text-decoration: none;
}

.nav-previous a:hover .nav-title, 
.nav-next a:hover .nav-title {
	color: #666;
}

/* ==========================================================================
   ODZIVNOST (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 768px) {
	.custom-single-post {
		padding: 40px 0;
	}

	.post-title {
		font-size: 32px;
	}

	.related-posts-title { 
		font-size: 24px; 
		margin-top: 40px; 
	}

	.nav-links { 
		flex-direction: column; 
		text-align: center; 
		gap: 30px; 
	}

	.nav-next { 
		text-align: center; 
	}
}