/**
 * Styles pour les pages et articles (single posts)
 * Design cohérent avec la page d'accueil YB Advice
 */

/* ============================================
   PAGE & POST WRAPPER
   ============================================ */

.page-wrapper,
.single-post-wrapper {
	padding-top: 120px;
	padding-bottom: 80px;
	min-height: calc(100vh - 200px);
}

.page-container,
.single-post-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ============================================
   PAGE HERO / HEADER
   ============================================ */

.page-hero,
.post-hero {
	text-align: center;
	margin-bottom: 4rem;
	padding: 3rem 0;
	position: relative;
}

.page-hero::after,
.post-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #4A9EFF, transparent);
	border-radius: 2px;
}

/* Titre de page */
.page-title,
.post-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 40px rgba(74, 158, 255, 0.4);
	animation: fadeInUp 0.8s ease-out;
}

/* Label section pour posts */
.post-meta-label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #4A9EFF;
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.25);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.6s ease-out;
}

/* Meta informations du post */
.post-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.post-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.post-meta-item i {
	color: #4A9EFF;
	font-size: 1rem;
}

.post-meta-item a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-meta-item a:hover {
	color: #4A9EFF;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */

.featured-image-wrapper {
	position: relative;
	margin-bottom: 3rem;
	border-radius: 20px;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.featured-image-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
	pointer-events: none;
}

.featured-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.featured-image-wrapper:hover img {
	transform: scale(1.02);
}

.featured-image-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(ellipse, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
	z-index: 0;
	filter: blur(40px);
	pointer-events: none;
}

/* ============================================
   CONTENT CARD / GLASSMORPHISM
   ============================================ */

.content-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 3rem;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ============================================
   ENTRY CONTENT STYLES
   ============================================ */

.entry-content {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
}

.entry-content p {
	margin-bottom: 1.75rem;
	color: rgba(255, 255, 255, 0.85);
}

.entry-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #ffffff;
	margin-top: 3rem;
	margin-bottom: 1.25rem;
	position: relative;
	padding-left: 1rem;
}

.entry-content h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #4A9EFF, #357ABD);
	border-radius: 2px;
}

.entry-content h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.entry-content h4 {
	font-size: 1.2rem;
}

.entry-content h5 {
	font-size: 1.1rem;
}

.entry-content h6 {
	font-size: 1rem;
}

/* Links */
.entry-content a {
	color: #4A9EFF;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
}

.entry-content a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #4A9EFF;
	transition: width 0.3s ease;
}

.entry-content a:hover {
	color: #6BB3FF;
}

.entry-content a:hover::after {
	width: 100%;
}

/* Lists */
.entry-content ul,
.entry-content ol {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.entry-content ul {
	list-style: none;
}

.entry-content ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.85);
}

.entry-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #4A9EFF, #357ABD);
	border-radius: 50%;
}

.entry-content ol {
	counter-reset: list-counter;
	list-style: none;
}

.entry-content ol li {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 0.75rem;
	counter-increment: list-counter;
	color: rgba(255, 255, 255, 0.85);
}

.entry-content ol li::before {
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 1.75rem;
	height: 1.75rem;
	background: rgba(74, 158, 255, 0.15);
	border: 1px solid rgba(74, 158, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: #4A9EFF;
}

/* Blockquote */
.entry-content blockquote {
	margin: 2.5rem 0;
	padding: 2rem 2.5rem;
	background: rgba(74, 158, 255, 0.05);
	border-left: 4px solid #4A9EFF;
	border-radius: 0 16px 16px 0;
	position: relative;
}

.entry-content blockquote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	font-family: Georgia, serif;
	color: rgba(74, 158, 255, 0.3);
	line-height: 1;
}

.entry-content blockquote p {
	font-style: italic;
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

.entry-content blockquote cite {
	display: block;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #4A9EFF;
	font-style: normal;
}

/* Code blocks */
.entry-content pre {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 2rem 0;
	overflow-x: auto;
}

.entry-content code {
	font-family: 'JetBrains Mono', 'Fira Code', monospace;
	font-size: 0.9rem;
	color: #4A9EFF;
}

.entry-content pre code {
	color: rgba(255, 255, 255, 0.9);
}

/* Tables */
.entry-content table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 12px;
	overflow: hidden;
}

.entry-content table th,
.entry-content table td {
	padding: 1rem 1.25rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.entry-content table th {
	background: rgba(74, 158, 255, 0.1);
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}

.entry-content table tr:hover td {
	background: rgba(74, 158, 255, 0.05);
}

/* Images in content */
.entry-content img {
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.entry-content figure {
	margin: 2.5rem 0;
}

.entry-content figcaption {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* Strong & emphasis */
.entry-content strong {
	color: #ffffff;
	font-weight: 600;
}

.entry-content em {
	color: rgba(255, 255, 255, 0.9);
}

/* Horizontal rule */
.entry-content hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.3), transparent);
	margin: 3rem 0;
}

/* ============================================
   POST FOOTER / TAGS
   ============================================ */

.post-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.post-tags-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	margin-right: 0.5rem;
}

.post-tag {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.2);
	border-radius: 50px;
	font-size: 0.85rem;
	color: #4A9EFF;
	text-decoration: none;
	transition: all 0.3s ease;
}

.post-tag:hover {
	background: rgba(74, 158, 255, 0.2);
	border-color: #4A9EFF;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ============================================
   POST NAVIGATION
   ============================================ */

.post-navigation-wrapper {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.nav-previous,
.nav-next {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
	background: rgba(74, 158, 255, 0.05);
	border-color: rgba(74, 158, 255, 0.2);
	transform: translateY(-3px);
}

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

.nav-subtitle {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #4A9EFF;
	margin-bottom: 0.5rem;
}

.nav-title {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
}

.post-navigation a {
	text-decoration: none;
}

.post-navigation a:hover .nav-title {
	color: #ffffff;
}

/* ============================================
   EDIT LINK
   ============================================ */

.edit-link {
	display: inline-block;
	margin-top: 2rem;
}

.edit-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.3s ease;
}

.edit-link a:hover {
	background: rgba(74, 158, 255, 0.1);
	border-color: rgba(74, 158, 255, 0.3);
	color: #4A9EFF;
}

/* ============================================
   COMMENTS SECTION
   ============================================ */

.comments-area {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comments-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 2rem;
	position: relative;
	padding-left: 1rem;
}

.comments-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #4A9EFF, #357ABD);
	border-radius: 2px;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.comment-author .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(74, 158, 255, 0.3);
}

.comment-author .fn {
	font-weight: 600;
	color: #ffffff;
}

.comment-meta {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.comment-content {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

.comment-content p {
	margin-bottom: 1rem;
}

.comment-reply-link {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.2);
	border-radius: 50px;
	font-size: 0.85rem;
	color: #4A9EFF;
	text-decoration: none;
	transition: all 0.3s ease;
}

.comment-reply-link:hover {
	background: rgba(74, 158, 255, 0.2);
	color: #ffffff;
}

/* Comment Form */
.comment-respond {
	margin-top: 3rem;
}

.comment-reply-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.comment-form {
	display: grid;
	gap: 1.25rem;
}

.comment-form label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: #4A9EFF;
	background: rgba(74, 158, 255, 0.05);
	box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-form .form-submit {
	margin-top: 1rem;
}

.comment-form input[type="submit"] {
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
	transition: all 0.3s ease;
}

.comment-form input[type="submit"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(74, 158, 255, 0.6);
}

/* ============================================
   SIDEBAR (si utilisé)
   ============================================ */

.widget-area {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 2rem;
}

.widget {
	margin-bottom: 2rem;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ffffff;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid rgba(74, 158, 255, 0.3);
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget ul li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.widget ul li a:hover {
	color: #4A9EFF;
}

/* ============================================
   PAGE LINKS (pagination in content)
   ============================================ */

.page-links {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Montserrat', sans-serif;
}

.page-links .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.page-links .post-page-numbers:hover {
	background: rgba(74, 158, 255, 0.1);
	border-color: rgba(74, 158, 255, 0.3);
	color: #4A9EFF;
}

.page-links .post-page-numbers.current {
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border-color: transparent;
	color: #ffffff;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
	.page-wrapper,
	.single-post-wrapper {
		padding-top: 100px;
		padding-bottom: 60px;
	}

	.content-card {
		padding: 2rem;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 767.98px) {
	.page-hero,
	.post-hero {
		padding: 2rem 0;
		margin-bottom: 2rem;
	}

	.content-card {
		padding: 1.5rem;
		border-radius: 16px;
	}

	.entry-content {
		font-size: 1rem;
	}

	.entry-content h2 {
		font-size: 1.4rem;
	}

	.entry-content h3 {
		font-size: 1.2rem;
	}

	.entry-content blockquote {
		padding: 1.5rem;
	}

	.post-meta {
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* ============================================
   ARCHIVE / BLOG LISTING
   ============================================ */

.archive-wrapper {
	padding-top: 120px;
	padding-bottom: 80px;
	min-height: calc(100vh - 200px);
}

.archive-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Archive Hero */
.archive-hero {
	text-align: center;
	margin-bottom: 4rem;
	padding: 2rem 0 3rem;
	position: relative;
}

.archive-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #4A9EFF, transparent);
	border-radius: 2px;
}

.archive-label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #4A9EFF;
	background: rgba(74, 158, 255, 0.1);
	border: 1px solid rgba(74, 158, 255, 0.25);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.6s ease-out;
}

.archive-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out;
}

.archive-description {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Posts Grid */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

/* Post Card */
.post-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	animation: fadeInUp 0.6s ease-out both;
}

.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }
.post-card:nth-child(6) { animation-delay: 0.6s; }

.post-card:hover {
	transform: translateY(-8px);
	border-color: rgba(74, 158, 255, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(74, 158, 255, 0.1);
}

.post-card-image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/10;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.08);
}

.post-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.post-card:hover .post-card-overlay {
	opacity: 0.4;
}

.post-card-content {
	padding: 1.75rem;
}

.post-card-category {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #4A9EFF;
	background: rgba(74, 158, 255, 0.1);
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.post-card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.post-card-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-card-title a:hover {
	color: #4A9EFF;
}

.post-card-excerpt {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.25rem;
}

.post-card-meta {
	display: flex;
	gap: 1.25rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.post-card-meta i {
	color: #4A9EFF;
	margin-right: 0.4rem;
}

/* Read More Button (for excerpt view) */
.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
	transition: all 0.3s ease;
}

.read-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(74, 158, 255, 0.5);
	color: #ffffff;
}

.read-more-btn i {
	transition: transform 0.3s ease;
}

.read-more-btn:hover i {
	transform: translateX(4px);
}

/* Archive Pagination */
.archive-pagination {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.archive-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3rem;
	height: 3rem;
	padding: 0 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover {
	background: rgba(74, 158, 255, 0.1);
	border-color: rgba(74, 158, 255, 0.3);
	color: #4A9EFF;
	transform: translateY(-2px);
}

.archive-pagination .page-numbers.current {
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border-color: transparent;
	color: #ffffff;
}

.archive-pagination .prev,
.archive-pagination .next {
	gap: 0.5rem;
}

/* No Posts Found */
.no-posts-found {
	text-align: center;
	padding: 4rem 0;
}

.no-posts-found .content-card {
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.no-posts-found .bi-search {
	font-size: 4rem;
	color: rgba(74, 158, 255, 0.5);
	margin-bottom: 1.5rem;
}

.no-posts-found h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.no-posts-found p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
}

.btn-back-home {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
	transition: all 0.3s ease;
}

.btn-back-home:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(74, 158, 255, 0.6);
	color: #ffffff;
}

/* Archive Responsive */
@media (max-width: 991.98px) {
	.archive-wrapper {
		padding-top: 100px;
		padding-bottom: 60px;
	}

	.posts-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 767.98px) {
	.archive-hero {
		padding: 1.5rem 0 2rem;
		margin-bottom: 2rem;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.post-card-content {
		padding: 1.25rem;
	}

	.post-card-title {
		font-size: 1.1rem;
	}

	.archive-pagination .page-numbers {
		min-width: 2.5rem;
		height: 2.5rem;
		font-size: 0.85rem;
	}
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-404-wrapper {
	padding-top: 120px;
	padding-bottom: 80px;
	min-height: calc(100vh - 200px);
	display: flex;
	align-items: center;
}

.error-404-container {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
}

/* 404 Visual */
.error-404-visual {
	position: relative;
	margin-bottom: 3rem;
}

.error-number {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	animation: fadeInUp 0.8s ease-out;
}

.error-number .digit {
	font-family: 'Blanka', sans-serif;
	font-size: clamp(5rem, 15vw, 10rem);
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 60px rgba(74, 158, 255, 0.5);
}

.error-number .digit-zero {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(5rem, 15vw, 10rem);
	height: clamp(5rem, 15vw, 10rem);
}

.error-number .digit-zero i {
	font-size: clamp(4rem, 12vw, 8rem);
	color: #4A9EFF;
	animation: float404 3s ease-in-out infinite;
}

@keyframes float404 {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.error-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(74, 158, 255, 0.2) 0%, transparent 70%);
	filter: blur(40px);
	z-index: -1;
	animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
	0%, 100% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

/* Error Header */
.error-404-header {
	margin-bottom: 2.5rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.error-title {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.error-description {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	max-width: 500px;
	margin: 0 auto;
}

/* Error Actions */
.error-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-primary-404 {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
	transition: all 0.3s ease;
}

.btn-primary-404:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(74, 158, 255, 0.6);
	color: #ffffff;
}

.btn-secondary-404 {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-secondary-404:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	color: #ffffff;
}

/* Error Search */
.error-search {
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1rem;
}

.search-form-404 {
	max-width: 450px;
	margin: 0 auto;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 0.25rem;
	transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
	border-color: #4A9EFF;
	background: rgba(74, 158, 255, 0.05);
	box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.search-input-wrapper > i {
	position: absolute;
	left: 1.25rem;
	color: rgba(255, 255, 255, 0.4);
	font-size: 1rem;
	pointer-events: none;
}

.search-input-wrapper .search-field {
	flex: 1;
	background: transparent;
	border: none;
	padding: 1rem 1rem 1rem 3rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	color: #ffffff;
	outline: none;
}

.search-input-wrapper .search-field::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.search-input-wrapper .search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #4A9EFF 0%, #357ABD 100%);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-input-wrapper .search-submit:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}

/* 404 Responsive */
@media (max-width: 767.98px) {
	.error-404-wrapper {
		padding-top: 100px;
		padding-bottom: 60px;
	}

	.error-actions {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary-404,
	.btn-secondary-404 {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}

