/*!
Theme Name: See Insight
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary: #2b1a06;
	--secondary: #C9C6C4;
	--background: #FCF8F0;
	--card: #E2D9CD;
	--button: #6B5B4D;
	--text-primary: #2b1a06;
	--text-secondary: #6B5B4D;
	--text-light: #999999;
	--border: #E2D9CD;
	--shadow-color: rgba(57, 46, 38, 0.1);
	--font-ui: "Poppins", sans-serif;
	--font-heading: "Poppins", sans-serif;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-xxl: 3rem;
	--space-xxxl: 4rem;
	--shadow-md: 0 4px 6px var(--shadow-color);
	--shadow-lg: 0 10px 15px var(--shadow-color);
	--shadow-xl: 0 20px 25px var(--shadow-color);
	--transition-base: 200ms ease-in-out;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-ui);
	color: var(--text-primary);
	background-color: white!important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.3;
}

p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: var(--space-md);
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: all var(--transition-base);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
}

.site-footer {
	margin-top: auto;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.section {
	padding: var(--space-xxxl) var(--space-lg);
}

.section-white {
	background-color: white;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
}

.site-header {
	background-color: white;
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-lg);
}

.site-title {
	font-size: 1.5rem;
	color: var(--primary);
	margin: 0;
}

.site-title a {
	color: var(--primary);
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: var(--space-xl);
	margin: 0;
}

.main-navigation a {
	color: var(--text-secondary);
	font-weight: 500;
	padding: var(--space-sm) 0;
}

.main-navigation a:hover {
	color: var(--primary);
}

.featured-section-new {
	background-color: #ffffff!important;
	padding: 2rem var(--space-lg);
}

.featured-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.featured-grid-new {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 20px;
	grid-template-rows: auto auto;
}

.featured-post-large-new {
	grid-row: 1/3;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 420px;
	transition: all var(--transition-base);
}

.featured-post-large-new:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-xl);
}

.featured-post-small-new {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 200px;
	transition: all var(--transition-base);
}

.featured-post-small-new:hover {
	transform: scale(1.03);
	box-shadow: var(--shadow-lg);
}

.featured-img-wrapper-large {
	position: relative;
	width: 100%;
	min-height: 420px;
	overflow: hidden;
}

.featured-img-wrapper-small {
	position: relative;
	width: 100%;
	min-height: 200px;
	overflow: hidden;
}

.featured-img-new {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.featured-post-large-new:hover .featured-img-new,
.featured-post-small-new:hover .featured-img-new {
	transform: scale(1.08);
}

.featured-overlay-large,
.featured-overlay-small {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 1;
}

.featured-content-large-new {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	color: white;
	z-index: 2;
}

.featured-content-small-new {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px;
	color: white;
	z-index: 2;
}

.featured-badge-new {
	display: inline-block;
    background-color: #C9C6C4;
    color: #2b1a06;
    font-size: 8px;
    font-weight: 600;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border-radius: 50px;
}

.featured-post-small-new .featured-badge-new {
	font-size: 8px;
	padding: 5px 10px;
}

.featured-title-large-new {
	font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.featured-title-large-new a {
	color: #e4e4e4 !important;
}

.featured-title-small-new {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: #e4e4e4 !important;
}

.featured-title-small-new a {
	color: #e4e4e4 !important;
}

.featured-meta-new {
	font-size: 10px;
    color: rgb(228 228 228);
}

.meta-separator {
	margin: 0 8px;
	opacity: 0.7;
}

.categories-section {
	background-color: var(--background);
	padding: 2rem var(--space-lg);
}

.categories-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.categories-header {
	margin-bottom: var(--space-xl);
	text-align: center;
}

.categories-title {
	font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px 0;
    text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}

.categories-divider {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
	align-items: center;
	justify-content: center;
}

.categories-divider span {
	width: 100px;
	height: 2px;
	background-color: var(--primary);
	opacity: 0.6;
}

.categories-divider span:nth-child(1) {
	opacity: 1;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 4px;
}

.category-card {
	text-align: center;
	cursor: pointer;
	transition: all var(--transition-base);
}

.category-card:hover {
	transform: translateY(-8px);
}

.category-image-wrapper {
	width: 120px;
	height: 120px;
	margin: 0 auto var(--space-md);
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--card);
	display: flex;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
}

.category-card:hover .category-image-wrapper {
	box-shadow: var(--shadow-lg);
	transform: scale(1.08);
}

.category-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-image-placeholder {
	background: linear-gradient(135deg, #6B5B4D, #2b1a06);
	width: 100%;
	height: 100%;
}

.category-name {
	font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.category-card:hover .category-name {
	color: var(--primary);
}

.btn {
	padding: var(--space-md) var(--space-lg);
	border-radius: 4px;
	cursor: pointer;
	border: none;
	transition: all var(--transition-base);
}

.btn-secondary {
	background-color: var(--button);
	color: white;
}

.btn-secondary:hover {
	background-color: var(--primary);
}

.pagination {
	display: flex;
	gap: var(--space-md);
	justify-content: center;
	margin: var(--space-xxxl) 0;
}

.pagination a,
.pagination span {
	padding: var(--space-md) var(--space-lg);
	border: 1px solid var(--border);
	border-radius: 4px;
}

.pagination a:hover {
	background-color: var(--primary);
	color: white;
}

.pagination .current {
	background-color: var(--primary);
	color: white;
}

.site-footer {
	background-color: white;
}

.footer-content {
	padding: var(--space-xxxl) var(--space-lg);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: var(--space-lg);
	text-align: center;
	color: var(--text-light);
}

.text-center {
	text-align: center;
}

.mb-xl {
	margin-bottom: var(--space-xl);
}

.d-none {
	display: none !important;
}

@media (max-width: 1024px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-title-large-new {
		font-size: 1.5rem;
	}

	.categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.category-image-wrapper {
		width: 110px;
		height: 110px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 var(--space-md);
	}

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

	.featured-section-new {
		padding: 1.5rem var(--space-md);
	}

	.featured-grid-new {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.featured-post-large-new {
		grid-row: auto;
		min-height: 300px;
	}

	.featured-img-wrapper-large {
		min-height: 300px;
	}

	.featured-post-small-new {
		min-height: 180px;
	}

	.featured-img-wrapper-small {
		min-height: 180px;
	}

	.featured-title-large-new {
		font-size: 1.3rem;
	}

	.featured-title-small-new {
		font-size: 0.9rem;
	}

	.categories-section {
		padding: 1.5rem var(--space-md);
	}

	.categories-title {
		font-size: 1.75rem;
	}

	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 4px;
	}

	.category-image-wrapper {
		width: 100px;
		height: 100px;
	}

	.category-name {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.featured-section-new {
		padding: 1.5rem var(--space-md);
	}

	.featured-post-large-new {
		min-height: 250px;
	}

	.featured-img-wrapper-large {
		min-height: 250px;
	}

	.featured-post-small-new {
		min-height: 150px;
	}

	.featured-img-wrapper-small {
		min-height: 150px;
	}

	.featured-title-large-new {
		font-size: 1.1rem;
	}

	.featured-title-small-new {
		font-size: 0.85rem;
	}

	.categories-section {
		padding: 1.5rem var(--space-md);
	}

	.categories-title {
		font-size: 1.5rem;
	}

	.categories-divider span {
		width: 50px;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.categories-grid::-webkit-scrollbar {
		display: none;
	}

	.categories-grid {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.category-image-wrapper {
		width: 85px;
		height: 85px;
	}

	.category-name {
		font-size: 0.95rem;
	}
}

/* ==================== POSTS BY CATEGORY SECTION ==================== */

.posts-by-category-section {
	background-color: white;
	padding: 2rem var(--space-lg);
}

.posts-category-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.category-posts-block {
	margin-bottom: 2rem;
}

.category-posts-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border);
}

.category-posts-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0;
}

.category-posts-title a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition-base);
}

.category-posts-title a:hover {
	color: var(--text-secondary);
}

.view-all-link {
	font-size: 0.95rem;
	color: var(--primary);
	font-weight: 600;
	transition: all var(--transition-base);
	display: flex;
	align-items: center;
}

.view-all-link:hover {
	color: var(--text-secondary);
	transform: translateX(3px);
}

.category-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.category-post-item {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 1rem;
	text-decoration: none;
	transition: all var(--transition-base);
	padding: 0.75rem;
	border-radius: 8px;
}

.category-post-item:hover {
	background-color: var(--background);
	transform: translateX(4px);
}

.category-post-image {
	width: 150px;
	height: 120px;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--card);
	flex-shrink: 0;
}

.post-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--transition-base);
}

.category-post-item:hover .post-thumbnail {
	transform: scale(1.05);
}

.post-thumbnail-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #6B5B4D, #2b1a06);
}

.category-post-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.category-post-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
	line-height: 1.4;
	transition: color var(--transition-base);
}

.category-post-item:hover .category-post-title {
	color: var(--primary);
}

.category-post-date {
	font-size: 0.85rem;
	color: var(--text-light);
	margin: 0;
	font-weight: 400;
}

/* RESPONSIVE - 1024px */
@media (max-width: 1024px) {
	.posts-category-container {
		gap: 2rem;
	}

	.category-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.category-post-item {
		grid-template-columns: 130px 1fr;
		gap: 0.75rem;
		padding: 0.5rem;
	}

	.category-post-image {
		width: 130px;
		height: 100px;
	}

	.category-post-title {
		font-size: 0.95rem;
	}
}

/* RESPONSIVE - 768px */
@media (max-width: 768px) {
	.posts-by-category-section {
		padding: 1.5rem var(--space-md);
	}

	.posts-category-container {
		padding: 0 var(--space-md);
		gap: 1.5rem;
	}

	.category-posts-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.category-posts-title {
		font-size: 1.25rem;
	}

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

	.category-post-item {
		grid-template-columns: 120px 1fr;
		gap: 0.75rem;
	}

	.category-post-image {
		width: 120px;
		height: 90px;
	}

	.category-post-title {
		font-size: 0.95rem;
	}

	.category-post-date {
		font-size: 0.8rem;
	}
}

/* RESPONSIVE - 480px */
@media (max-width: 480px) {
	.posts-by-category-section {
		padding: 1.5rem var(--space-md);
	}

	.posts-category-container {
		padding: 0 var(--space-md);
		gap: 1.5rem;
	}

	.category-posts-header {
		margin-bottom: 1rem;
		padding-bottom: 0.75rem;
	}

	.category-posts-title {
		font-size: 1.1rem;
	}

	.view-all-link {
		font-size: 0.85rem;
	}

	.category-posts-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.category-post-item {
		grid-template-columns: 100px 1fr;
		gap: 0.75rem;
		padding: 0.5rem;
	}

	.category-post-image {
		width: 100px;
		height: 80px;
	}

	.category-post-title {
		font-size: 0.9rem;
	}

	.category-post-date {
		font-size: 0.75rem;
	}
}

/* ==================== POSTS CAROUSEL SECTION - IMPROVED ==================== */

.posts-carousel-section {
	background-color: #eeedec;
	padding: 2.5rem var(--space-lg);
}

.carousel-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.carousel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--border);
}

.carousel-title {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--primary);
	margin: 0;
}

.carousel-controls {
	display: flex;
	gap: 0.5rem;
}

.carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background-color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	transition: all var(--transition-base);
	font-size: 16px;
}

.carousel-btn:hover:not(:disabled) {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
}

.carousel-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Carousel Wrapper */
.carousel-wrapper {
	position: relative;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.carousel-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 0.25rem;
	padding-right: 1.5rem;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
	-webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
	height: 4px;
}

.carousel-track::-webkit-scrollbar-track {
	background: transparent;
}

.carousel-track::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 2px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
	background: var(--button);
}

/* Hide scrollbar for cleaner look */
.carousel-track {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
	display: none;
}

/* Post Card */
.carousel-post-card {
	flex: 0 0 auto;
    width: 100%;
    max-width: 330px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    height: fit-content;
}

.carousel-post-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.carousel-card-link {
	display: flex;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

/* Card Image */
.carousel-post-image {
	flex: 0 0 auto;
	width: 120px;
	height: 130px;
	overflow: hidden;
	background-color: var(--card);
	display: flex;
}

.carousel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.carousel-post-card:hover .carousel-img {
	transform: scale(1.06);
}

.carousel-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--button), var(--primary));
}

/* Card Content */
.carousel-post-content {
	flex: 1;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Author Info */
.carousel-author-info {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.6rem;
	font-size: 0.75rem;
	color: var(--text-secondary);
	flex-wrap: wrap;
}

.carousel-author-avatar {
	width: 24px !important;
	height: 24px !important;
	border-radius: 50%;
	margin: 0 !important;
	padding: 0 !important;
	flex-shrink: 0;
}

.carousel-author-text {
	font-weight: 500;
    color: #999999;
    font-size: 10px;
    text-transform: capitalize;
}

.carousel-meta-sep {
	opacity: 0.5;
	margin: 0 0.15rem;
}

.carousel-post-ago {
	font-size: 0.7rem;
	color: var(--text-light);
}

/* Post Title */
.carousel-post-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 0.6rem 0;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--transition-base);
}

.carousel-post-card:hover .carousel-post-title {
	color: var(--primary);
}

/* Category & Read Time */
.carousel-post-footer {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	flex-wrap: wrap;
	font-size: 0.75rem;
}

.carousel-category-badge {
	display: inline-block;
	background-color: transparent;
	color: var(--primary);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.2px;
}

.carousel-read-time {
	font-size: 10px;
    color: var(--text-light);
    margin-left: auto;
    text-transform: capitalize;
}

/* Carousel Indicators */
.carousel-indicators {
	display: flex;
	justify-content: center;
	padding-top: 0.75rem;
}

.indicators-dots {
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.indicator-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	border: none;
	background-color: var(--border);
	cursor: pointer;
	transition: all var(--transition-base);
	padding: 0;
}

.indicator-dot:hover {
	background-color: var(--button);
}

.indicator-dot.active {
	background-color: var(--primary);
	width: 20px;
	border-radius: 3px;
}

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

/* TABLET - 1024px */
@media (max-width: 1024px) {
	.posts-carousel-section {
		padding: 2rem var(--space-lg);
	}

	.carousel-title {
		font-size: 1.25rem;
	}

	.carousel-post-card {
		max-width: 360px;
	}

	.carousel-post-image {
		width: 110px;
		height: 110px;
	}

	.carousel-post-title {
		font-size: 0.9rem;
	}

	.carousel-post-content {
		padding: 0.9rem;
	}
}

/* MOBILE - 768px */
@media (max-width: 768px) {
	.posts-carousel-section {
		padding: 1.75rem var(--space-md);
	}

	.carousel-container {
		padding: 0 var(--space-md);
	}

	.carousel-header {
		margin-bottom: 1.25rem;
		padding-bottom: 0.5rem;
	}

	.carousel-title {
		font-size: 1.15rem;
	}

	.carousel-btn {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.carousel-track {
		gap: 1rem;
		padding-right: 1rem;
	}

	.carousel-post-card {
		max-width: 340px;
	}

	.carousel-post-image {
		width: 100px;
		height: 100px;
	}

	.carousel-post-content {
		padding: 0.85rem;
	}

	.carousel-author-info {
		margin-bottom: 0.5rem;
		font-size: 0.7rem;
	}

	.carousel-author-avatar {
		width: 20px !important;
		height: 20px !important;
	}

	.carousel-post-title {
		font-size: 0.85rem;
		margin-bottom: 0.5rem;
	}

	.carousel-indicators {
		padding-top: 0.5rem;
	}
}

/* SMALL MOBILE - 480px */
@media (max-width: 480px) {
	.posts-carousel-section {
		padding: 1.5rem var(--space-md);
	}

	.carousel-container {
		padding: 0 var(--space-md);
	}

	.carousel-header {
		margin-bottom: 1rem;
		padding-bottom: 0.4rem;
		gap: 0.75rem;
	}

	.carousel-title {
		font-size: 1rem;
	}

	.carousel-btn {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}

	.carousel-track {
		gap: 0.75rem;
		padding-right: 0.75rem;
	}

	.carousel-post-card {
		max-width: calc(100vw - var(--space-lg) - 0.75rem);
		flex: 0 0 auto;
		width: 100%;
	}

	.carousel-post-image {
		width: 90px;
		height: 90px;
	}

	.carousel-post-content {
		padding: 0.75rem;
	}

	.carousel-author-info {
		font-size: 0.65rem;
		margin-bottom: 0.4rem;
		gap: 0.3rem;
	}

	.carousel-author-avatar {
		width: 18px !important;
		height: 18px !important;
	}

	.carousel-author-text {
		font-size: 0.65rem;
	}

	.carousel-post-title {
		font-size: 0.8rem;
		margin-bottom: 0.4rem;
		-webkit-line-clamp: 2;
	}

	.carousel-post-footer {
		font-size: 0.7rem;
		gap: 0.5rem;
	}

	.carousel-category-badge {
		font-size: 0.65rem;
	}

	.carousel-read-time {
		font-size: 0.65rem;
	}

	.indicators-dots {
		gap: 0.3rem;
	}

	.indicator-dot {
		width: 5px;
		height: 5px;
	}

	.indicator-dot.active {
		width: 16px;
	}
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
	.carousel-track {
		scroll-behavior: smooth;
	}

	.carousel-post-card {
		animation: fadeIn 0.4s ease-in-out;
	}
}

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

/* ==================== CLEAN POSTS GRID SECTION ==================== */

.posts-grid-section {
	background: #fcf8f0;
    padding: 4rem 0px 20px 0px;
}

.posts-grid-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Header */
.posts-grid-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.posts-grid-label {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #2b1a06;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
	font-style: italic;
}

.posts-grid-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	line-height: 1.2;
}

/* Grid Layout - 4 Columns */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 2rem;
}

/* Post Card */
.post-grid-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.post-grid-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.post-card-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/* Post Image */
.post-card-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, #E2D9CD, #D4C4B0);
	position: relative;
}

.post-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-grid-card:hover .post-card-img {
	transform: scale(1.12);
}

.post-card-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--button) 0%, var(--primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 3rem;
}

/* Post Body */
.post-card-body {
	flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Category Badge */
.post-card-category {
	display: inline-block;
    color: #2b1a06;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    background-color: rgb(43 26 6 / 17%);
    border-radius: 4px;
}

.post-grid-card:hover .post-card-category {
	color: #2b1a06;
	background-color: rgb(43 26 6 / 17%);
}

/* Post Title */
.post-card-title {
	font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.post-card-title a {
	color: inherit;
	text-decoration: none;
}

.post-grid-card:hover .post-card-title {
	color: #2b1a06;
}

.post-grid-card:hover .post-card-title a {
	color: #2b1a06;
}

/* Post Meta */
.post-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	flex-wrap: wrap;
	line-height: 1.4;
}

.post-card-author {
	font-weight: 600;
	color: var(--text-primary);
}

.post-card-sep {
	opacity: 0.5;
	margin: 0 0.25rem;
}

.post-card-date {
	color: var(--text-light);
}

/* Post Footer */
.post-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card-read-time {
	font-size: 0.8rem;
	color: var(--text-light);
	font-weight: 500;
}

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

/* LARGE DESKTOP - 1200px+ */
@media (max-width: 1200px) {
	.posts-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.75rem;
	}

	.posts-grid-title {
		font-size: 2.2rem;
	}

	.post-card-image {
		height: 200px;
	}

	.post-card-body {
		padding: 1.5rem;
	}

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

/* DESKTOP - 1024px */
@media (max-width: 1024px) {
	.posts-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.posts-grid-title {
		font-size: 2rem;
	}

	.post-card-image {
		height: 180px;
	}

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

	.post-card-title {
		font-size: 1.05rem;
		margin-bottom: 0.75rem;
	}

	.post-card-meta {
		font-size: 0.8rem;
		margin-bottom: 0.75rem;
	}
}

/* TABLET - 768px */
@media (max-width: 768px) {
	.posts-grid-section {
		padding: 3rem 1rem;
	}

	.posts-grid-container {
		padding: 0 1rem;
	}

	.posts-grid-header {
		margin-bottom: 2.5rem;
	}

	.posts-grid-label {
		font-size: 0.8rem;
	}

	.posts-grid-title {
		font-size: 1.75rem;
	}

	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.post-card-image {
		height: 160px;
	}

	.post-card-body {
		padding: 1.1rem;
	}

	.post-card-category {
		font-size: 0.7rem;
		margin-bottom: 0.5rem;
		padding: 0.3rem 0.7rem;
	}

	.post-card-title {
		font-size: 1rem;
		margin-bottom: 0.6rem;
	}

	.post-card-meta {
		font-size: 0.75rem;
		margin-bottom: 0.6rem;
	}

	.post-card-read-time {
		font-size: 0.75rem;
	}
}

/* MOBILE - 480px */
@media (max-width: 480px) {
	.posts-grid-section {
		padding: 2rem 0.75rem;
	}

	.posts-grid-container {
		padding: 0 0.75rem;
	}

	.posts-grid-header {
		margin-bottom: 2rem;
	}

	.posts-grid-label {
		font-size: 0.75rem;
		letter-spacing: 1px;
	}

	.posts-grid-title {
		font-size: 1.5rem;
	}

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

	.post-grid-card {
		border-radius: 10px;
	}

	.post-card-image {
		height: 200px;
	}

	.post-card-body {
		padding: 1rem;
	}

	.post-card-category {
		font-size: 0.65rem;
		margin-bottom: 0.4rem;
		padding: 0.25rem 0.6rem;
		letter-spacing: 0.5px;
	}

	.post-card-title {
		font-size: 0.95rem;
		margin-bottom: 0.5rem;
		min-height: 2.4em;
	}

	.post-card-meta {
		font-size: 0.7rem;
		margin-bottom: 0.5rem;
	}

	.post-card-date {
		display: none;
	}

	.post-card-footer {
		padding-top: 0.75rem;
	}

	.post-card-read-time {
		font-size: 0.7rem;
	}
}

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

.post-grid-card {
	animation: fadeInUp 0.6s ease-out;
}

.post-grid-card:nth-child(1) { animation-delay: 0.05s; }
.post-grid-card:nth-child(2) { animation-delay: 0.1s; }
.post-grid-card:nth-child(3) { animation-delay: 0.15s; }
.post-grid-card:nth-child(4) { animation-delay: 0.2s; }
.post-grid-card:nth-child(5) { animation-delay: 0.25s; }
.post-grid-card:nth-child(6) { animation-delay: 0.3s; }
.post-grid-card:nth-child(7) { animation-delay: 0.35s; }
.post-grid-card:nth-child(8) { animation-delay: 0.4s; }

/* Smooth transitions */
@media (prefers-reduced-motion: no-preference) {
	.post-grid-card {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.post-card-img {
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

/* ==================== HEADER - MINIMAL COMPACT ==================== */

.site-header {
	background-color: var(--primary);
	position: sticky;
	top: 0;
	z-index: 999;
}

.header-content {
	max-width: 1100px;
    margin: 0 auto;
    padding: 12px .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    height: 45px;
}

/* ==================== LOGO & BRANDING ==================== */

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
}

.custom-logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-logo-wrapper img {
	max-height: 45px;
	width: auto;
	display: block;
}

.site-title-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.site-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.site-title a {
	color: white;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-title a:hover {
	color: var(--secondary);
}

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

.nav-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	justify-content: flex-end;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
	flex-wrap: wrap;
	align-items: center;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
    padding: 0.6rem 0.9rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 10px;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation a:focus {
	color: var(--secondary);
}

.main-navigation .current-menu-item > a {
	color: var(--secondary);
}

/* ==================== MOBILE MENU TOGGLE ==================== */

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	align-items: center;
	gap: 0;
}

.hamburger-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 5px;
}

.hamburger-line {
	width: 22px;
	height: 2px;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.menu-toggle.active .line1 {
	transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .line2 {
	opacity: 0;
	transform: translateX(-10px);
}

.menu-toggle.active .line3 {
	transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle:hover .hamburger-line {
	background-color: var(--secondary);
}

/* ==================== MOBILE DRAWER ==================== */

.menu-close {
	display: none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10;
}

.close-icon {
	display: block;
	font-size: 1.5rem;
	color: white;
	font-weight: 300;
	line-height: 1;
	transition: all 0.2s ease;
}

.menu-close:hover .close-icon {
	color: var(--secondary);
}

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

@media (max-width: 768px) {
	.header-content {
		padding: 0.5rem 1rem;
		height: 55px;
	}

	.site-branding {
		gap: 0.6rem;
	}

	.custom-logo-wrapper img {
		max-height: 40px;
	}

	.site-title {
		font-size: 1.1rem;
	}

	/* Show menu toggle on mobile */
	.menu-toggle {
		display: flex;
	}

	/* Mobile Navigation */
	.main-navigation {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background-color: var(--primary);
		z-index: 998;
		transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
		padding-top: 60px;
		-webkit-overflow-scrolling: touch;
	}

	.main-navigation.mobile-open {
		left: 0;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.main-navigation li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.main-navigation a {
		padding: 0.9rem 1.5rem;
		display: block;
		width: 100%;
		font-size: 0.9rem;
	}

	.main-navigation a:hover,
	.main-navigation a:focus {
		background-color: rgba(201, 198, 196, 0.1);
		padding-left: 2rem;
	}

	.main-navigation .current-menu-item > a {
		background-color: rgba(201, 198, 196, 0.15);
		border-left: 3px solid var(--secondary);
		padding-left: calc(1.5rem - 3px);
	}

	/* Show close button on mobile */
	.menu-close {
		display: block;
	}

	.main-navigation.mobile-open .menu-close {
		display: block;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 0.4rem 0.75rem;
		height: 50px;
		gap: 0.75rem;
	}

	.site-branding {
		min-width: 0;
		gap: 0.5rem;
	}

	.custom-logo-wrapper img {
		max-height: 35px;
	}

	.site-title {
		font-size: 1rem;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.hamburger-line {
		width: 20px;
	}

	.menu-close {
		top: 0.75rem;
		right: 0.75rem;
	}

	.close-icon {
		font-size: 1.3rem;
	}

	.main-navigation {
		padding-top: 50px;
	}

	.main-navigation a {
		padding: 0.75rem 1.25rem;
		font-size: 0.85rem;
	}
}

/* ==================== ACCESSIBILITY ==================== */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: white;
	padding: 8px;
	text-decoration: none;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}

/* ==================== SMOOTH SCROLLING ==================== */

@media (prefers-reduced-motion: no-preference) {
	.site-header {
		transition: all 0.2s ease;
	}

	.main-navigation {
		transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.main-navigation a {
		transition: all 0.2s ease;
	}

	.hamburger-line {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.close-icon {
		transition: all 0.2s ease;
	}
}

/* ==================== FOOTER - KAYLEEN STYLE WITH FONT AWESOME ==================== */

.site-footer {
	background-color: var(--primary);
	color: white;
	padding: 3rem 0 2rem;
}

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

/* ==================== FOOTER GRID ==================== */

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
	gap: 3rem;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* ==================== COLUMN 1: BRAND ==================== */

.footer-brand {
	gap: 1.2rem;
}

.footer-brand-name {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	font-family: var(--font-heading);
	letter-spacing: -0.5px;
}

.footer-brand-name a {
	color: white;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-brand-name a:hover {
	color: var(--secondary);
}

.footer-brand-desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.footer-copyright {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

/* ==================== SECTION HEADING ==================== */

.footer-heading {
	margin: 0 0 1.5rem 0;
    font-size: 12px;
    font-weight: 600;
    color: white;
    font-family: Montserrat, sans-serif;
    position: relative;
    display: inline-block;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.heading-underline {
	position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}
.page_item .page-item-8 .current_page_item{
	list-style: none!important;
}

/* ==================== COLUMN 2: QUICK LINKS ==================== */

.footer-links {
	padding-top: 0.5rem;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.footer-menu li {
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	display: inline-block;
}

.footer-menu a:hover {
	color: var(--secondary);
}

/* ==================== COLUMN 3: CATEGORIES ==================== */

.footer-categories {
	padding-top: 0.5rem;
}

.categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.categories-list li {
	margin: 0;
	padding: 0;
}

.categories-list a {
	color: rgb(255 255 255 / 81%);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
    display: inline-block;
    text-transform: uppercase;
}

.categories-list a:hover {
	color: var(--secondary);
}

/* ==================== COLUMN 4: SOCIAL ==================== */

.footer-socials-col {
	padding-top: 0.5rem;
}

.footer-socials-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.social-box {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
    background-color: transparent;
    font-size: 12px;
    padding: 0px 0px 8px 0px;
	border-radius: 14px;
}

.social-box:hover {
	border-color: var(--secondary);
	background-color: rgba(201, 198, 196, 0.08);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 28px;
	font-size: 22px;
	color: white;
	transition: all 0.2s ease;
}

.social-icon i {
	color: inherit;
    font-size: 12px;
}

.social-box:hover .social-icon {
	color: var(--secondary);
	transform: scale(1.1);
}

.social-name {
	font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-box:hover .social-name {
	color: var(--secondary);
}

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

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}

	.footer-socials-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 2.5rem 0 1.5rem;
		margin-top: 3rem;
	}

	.footer-container {
		padding: 0 1rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-col {
		padding-bottom: 1.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.footer-col:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.footer-brand-name {
		font-size: 1.5rem;
	}

	.footer-brand-desc {
		font-size: 0.85rem;
	}

	.footer-heading {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.heading-underline {
		width: 35px;
		height: 2.5px;
		bottom: -8px;
	}

	.footer-menu,
	.categories-list {
		gap: 0.75rem;
	}

	.footer-menu a,
	.categories-list a {
		font-size: 0.9rem;
	}

	.footer-socials-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.social-box {
		padding: 1.25rem 1rem;
		min-height: 110px;
		gap: 0.75rem;
	}

	.social-icon {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.social-name {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 2rem 0 1rem;
		margin-top: 2rem;
	}

	.footer-container {
		padding: 0 0.75rem;
	}

	.footer-grid {
		gap: 1.5rem;
	}

	.footer-col {
		padding-bottom: 1.25rem;
	}

	.footer-brand-name {
		font-size: 1.3rem;
	}

	.footer-brand-desc {
		font-size: 0.8rem;
		line-height: 1.5;
	}

	.footer-copyright {
		font-size: 0.75rem;
	}

	.footer-heading {
		font-size: 0.95rem;
		margin-bottom: 0.9rem;
	}

	.heading-underline {
		width: 30px;
		height: 2px;
		bottom: -6px;
	}

	.footer-menu,
	.categories-list {
		gap: 0.6rem;
	}

	.footer-menu a,
	.categories-list a {
		font-size: 0.85rem;
	}

	.footer-socials-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.9rem;
	}

	.social-box {
		padding: 1rem 0.75rem;
		min-height: 100px;
		gap: 0.6rem;
	}

	.social-icon {
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.social-name {
		font-size: 0.8rem;
	}
}

/* ==================== SMOOTH TRANSITIONS ==================== */

@media (prefers-reduced-motion: no-preference) {
	.footer-brand-name a,
	.footer-menu a,
	.categories-list a,
	.social-box,
	.social-icon {
		transition: all 0.2s ease;
	}
}

/* ==================== SINGLE POST CLEAN LUXURY LAYOUT ==================== */

.single-clean-post {
   background-color: #eeedec;
}

.single-clean-container {
	max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem var(--space-lg) 3rem;
    background-color: #ffffff;
    border-radius: 0px 0px 20px 20px;
}

/* Header */
.single-clean-header {
	margin-bottom: 12px;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid rgba(43, 26, 6, 0.1);
}

.single-clean-title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text-primary);
	margin: 0 0 0.75rem 0;
	letter-spacing: normal !important;
	word-spacing: normal !important;
	text-align: left;
}

.single-clean-meta {
	display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 11px;
    color: #818181;
    font-family: var(--font-ui);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.single-clean-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--border);
	display: inline-block;
}

/* Content */
.single-clean-content {
	font-family: var(--font-ui);
	color: var(--text-primary);
}

.single-clean-intro p {
	font-size: 14px;
    line-height: 1.85;
    color: #2b1a06;
    margin: 0 0 6px 0;
    text-align: justify;
}

.single-clean-intro h2,
.single-clean-intro h3,
.single-clean-intro h4,
.single-clean-intro h5,
.single-clean-intro h6 {
	font-family: var(--font-heading);
	color: var(--text-primary);
	letter-spacing: normal !important;
	word-spacing: normal !important;
	text-align: left !important;
	margin-bottom: 1rem;
}

/* Float image after first paragraph */
.single-clean-float-section {
	margin-bottom: 2rem;
	overflow: hidden;
}

.single-clean-float-image {
	float: right;
    width: 50%;
    max-width: 460px;
    margin: 0.25rem 0 0.25rem 1rem;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--card);
    box-shadow: 0 14px 35px rgba(43, 26, 6, 0.12);
}

.single-clean-float-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.single-clean-float-image figcaption {
	background-color: var(--primary);
	color: #ffffff;
	font-size: 11px;
	line-height: 1.5;
	padding: 0.55rem 0.8rem;
	text-align: center;
}

/* Main text */
.single-clean-main-text p {
	font-size: 14px;
    line-height: 1.85;
    color: #2b1a06;
    margin: 0 0 6px 0;
    text-align: justify;
}

.single-clean-main-text h2 {
	font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 1rem 0 10px;
    padding-top: 0;
    border-top: none !important;
    text-align: left;
    letter-spacing: normal !important;
    word-spacing: normal !important;
}

.single-clean-main-text h3 {
	font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 1rem 0 10px;
    text-align: left !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
}

.single-clean-main-text h4,
.single-clean-main-text h5,
.single-clean-main-text h6 {
	color: var(--text-primary);
	margin: 1.4rem 0 0.75rem;
	text-align: left !important;
	letter-spacing: normal !important;
	word-spacing: normal !important;
}

.single-clean-main-text ul,
.single-clean-main-text ol {
	margin: 0 0 1.25rem 1.4rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

.single-clean-main-text li {
	margin-bottom: 0.4rem;
    font-size: 14px;
    color: #2b1a06;
}

strong{
	font-family: var(--font-heading);
}

.single-clean-main-text blockquote {
	border-left: 3px solid var(--primary);
	background-color: var(--background);
	padding: 1.25rem 1.5rem;
	margin: 2rem 0;
	border-radius: 0 10px 10px 0;
}

.single-clean-main-text blockquote p {
	font-size: 17px;
	color: var(--text-primary);
	margin-bottom: 0;
	font-style: italic;
}

.single-clean-main-text img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

/* Tags */
.single-clean-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 2rem 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(43, 26, 6, 0.1);
}

.single-clean-tags a {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	padding: 0.45rem 0.85rem;
	border: 1px solid var(--border);
	border-radius: 50px;
	color: var(--primary);
	background-color: var(--background);
	text-decoration: none;
}

.single-clean-tags a:hover {
	background-color: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
}

/* Share Luxury */
.single-clean-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 1.35rem;
	border: 1px solid rgba(43, 26, 6, 0.1);
	background: linear-gradient(135deg, #ffffff 0%, #FCF8F0 100%);
	border-radius: 14px;
	margin: 2rem 0;
	box-shadow: 0 10px 28px rgba(43, 26, 6, 0.06);
}

.single-clean-share-left {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.single-clean-share-kicker {
	font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: capitalize;
}

.single-clean-share-text {
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.5;
}

.single-clean-share-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.single-clean-share-btn {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(43, 26, 6, 0.15);
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--transition-base);
}

.single-clean-share-btn:hover {
	background-color: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(43, 26, 6, 0.16);
}

/* Author Luxury */
.single-clean-author {
	display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.25rem;
    align-items: flex-start;
    background: #2b1a06;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0 0;
    box-shadow: 0 14px 35px rgba(43, 26, 6, 0.08);
    position: relative;
    overflow: hidden;
}

.single-clean-author-img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	padding: 4px;
	background: var(--background);
	border: 1px solid var(--border);
}

.single-clean-author-img img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.single-clean-author-label {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
	margin-bottom: 0.25rem;
}

.single-clean-author-name {
	font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fcf8f0;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.single-clean-author-bio {
	font-size: 12px;
    line-height: 1.75;
    color: #d1d1d1;
    margin: 0 0 0.8rem 0;
    max-width: 720px;
}

.single-clean-author-link {
	display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #eeedec;
    text-decoration: none;
    border-bottom: 1px solid #eeedec;
    padding-bottom: 2px;
}

.single-clean-author-link:hover {
	color: var(--text-secondary);
	border-color: var(--text-secondary);
}

/* Related Posts Clean Override */
.single-clean-related.posts-carousel-section {
	background: #FCF8F0;
	padding: 3rem var(--space-lg);
	margin-top: 0;
}

.single-clean-related .carousel-container {
	max-width: 1100px;
}

.single-clean-related .categories-header {
	margin-bottom: 1.75rem;
}

.single-clean-related .categories-title {
	font-size: 18px;
	letter-spacing: 1px;
}

.single-clean-related .carousel-post-card {
	box-shadow: 0 10px 25px rgba(43, 26, 6, 0.08);
	border: 1px solid rgba(43, 26, 6, 0.06);
}

.single-clean-related .carousel-post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(43, 26, 6, 0.12);
}

/* Comments Luxury */
.single-clean-comments-container {
	padding-top: 2.5rem;
}

.single-clean-comments {
	max-width: 900px;
	margin: 0 auto;
}

.single-clean-comments #comments,
.single-clean-comments .comments-area {
	margin: 0;
}

.single-clean-comments .comments-title,
.single-clean-comments #reply-title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 1.25rem 0;
}

.single-clean-comments .comment-list {
	list-style: none;
	margin: 0 0 2rem 0;
	padding: 0;
}

.single-clean-comments .comment {
	list-style: none;
}

.single-clean-comments .comment-body {
	background: #ffffff;
	border: 1px solid rgba(43, 26, 6, 0.1);
	border-radius: 14px;
	padding: 1.25rem;
	margin-bottom: 1rem;
	box-shadow: 0 8px 24px rgba(43, 26, 6, 0.05);
}

.single-clean-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.single-clean-comments .comment-author img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.single-clean-comments .comment-author .fn {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	color: var(--text-primary);
}

.single-clean-comments .comment-author .says {
	display: none;
}

.single-clean-comments .comment-metadata,
.single-clean-comments .comment-meta {
	font-size: 11px;
	color: var(--text-light);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.single-clean-comments .comment-content p {
	font-size: 14px;
	line-height: 1.75;
	color: var(--text-secondary);
	margin-bottom: 0;
}

.single-clean-comments .reply a {
	display: inline-flex;
	margin-top: 0.8rem;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: var(--primary);
}

.single-clean-comments #respond {
	background: linear-gradient(135deg, #ffffff 0%, #FCF8F0 100%);
	border: 1px solid rgba(43, 26, 6, 0.1);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 14px 35px rgba(43, 26, 6, 0.08);
}

.single-clean-comments .comment-notes,
.single-clean-comments .logged-in-as {
	font-size: 12px;
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.single-clean-comments .comment-form label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: var(--text-secondary);
	margin-bottom: 0.4rem;
}

.single-clean-comments .comment-form textarea,
.single-clean-comments .comment-form input[type="text"],
.single-clean-comments .comment-form input[type="email"],
.single-clean-comments .comment-form input[type="url"] {
	width: 100%;
	border: 1px solid rgba(43, 26, 6, 0.14);
	background-color: #ffffff;
	border-radius: 10px;
	padding: 0.85rem 1rem;
	font-family: var(--font-ui);
	font-size: 14px;
	color: var(--text-primary);
	outline: none;
	transition: all var(--transition-base);
}

.single-clean-comments .comment-form textarea {
	min-height: 130px;
	resize: vertical;
}

.single-clean-comments .comment-form textarea:focus,
.single-clean-comments .comment-form input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(43, 26, 6, 0.08);
}

.single-clean-comments .form-submit {
	margin-bottom: 0;
}

.single-clean-comments .submit {
	background-color: var(--primary);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 0.85rem 1.5rem;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	cursor: pointer;
	transition: all var(--transition-base);
}

.single-clean-comments .submit:hover {
	background-color: var(--button);
	transform: translateY(-2px);
}

/* Clear float */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive */
@media (max-width: 768px) {
	.single-clean-container {
		padding: 2rem var(--space-md) 2.5rem;
	}

	.single-clean-title {
		font-size: 26px;
		line-height: 1.3;
	}

	.single-clean-intro p {
		font-size: 16px;
		line-height: 1.75;
	}

	.single-clean-float-image {
		float: none;
		width: 100%;
		max-width: 100%;
		margin: 0 0 1.5rem 0;
	}

	.single-clean-main-text p {
		text-align: left;
		font-size: 15px;
		line-height: 1.75;
	}

	.single-clean-main-text h2 {
		font-size: 22px;
	}

	.single-clean-main-text h3 {
		font-size: 19px;
	}

	.single-clean-share {
		flex-direction: column;
		align-items: flex-start;
	}

	.single-clean-share-actions {
		flex-wrap: wrap;
	}

	.single-clean-author {
		grid-template-columns: 1fr;
	}

	.single-clean-related.posts-carousel-section {
		padding: 2.5rem var(--space-md);
	}
}

@media (max-width: 480px) {
	.single-clean-container {
		padding: 1.5rem var(--space-md) 2rem;
	}

	.single-clean-title {
		font-size: 23px;
	}

	.single-clean-meta {
		font-size: 10px;
	}

	.single-clean-intro {
		padding-top: 1rem;
	}

	.single-clean-share {
		padding: 1rem;
	}

	.single-clean-author {
		padding: 1.2rem;
	}

	.single-clean-comments #respond {
		padding: 1.2rem;
	}
}

.page_item{
	list-style: none!important;
	text-transform: uppercase;
	font-size: 12px;
	color:#ffffff!important;

}

.page_item a{
	color:rgb(255 255 255 / 81%)!important;
}


/* ==================== PREMIUM BLOG ARCHIVE PAGE ==================== */

.blog-archive-page {
	background: var(--background);
}

/* Header Hero */
.blog-archive-hero {
	position: relative;
	min-height: 250px;
	padding: 0 1.5rem 4.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background-image:
		linear-gradient(rgb(43 26 6 / 88%), rgb(43 26 6 / 89%)),
		url(https://mangalnivas.com/wp-content/uploads/2026/05/mangal-niava-property.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.blog-archive-hero::after {
	content: "";
	position: absolute;
	left: -35%;
	right: -35%;
	bottom: -60px;
	height: 170px;
	background: var(--background);
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	z-index: 1;
}

.blog-archive-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-archive-title {
	font-family: var(--font-heading);
	font-size: 28px !important;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 auto;
	text-align: center !important;
	letter-spacing: 0;
	text-transform: capitalize;
	width: 100%;
}

.blog-archive-description {
	max-width: 720px;
	margin: 1rem auto 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.8;
	text-align: center;
}

.blog-archive-description p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

/* Layout */
.blog-archive-section {
	padding: 0 0 5rem;
	background: var(--background);
}

.blog-archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 1rem;
	align-items: start;
}

.blog-archive-main {
	min-width: 0;
}

/* Post List */
.archive-post-list {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

/* Post Card */
.archive-post-card {
	display: grid;
	grid-template-columns: 310px minmax(0, 1fr);
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(43, 26, 6, 0.08);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.archive-post-card:nth-child(even) {
	grid-template-columns: minmax(0, 1fr) 310px;
}

.archive-post-card:nth-child(even) .archive-card-media {
	order: 2;
}

.archive-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 60px rgba(43, 26, 6, 0.14);
	border-color: rgba(43, 26, 6, 0.18);
}

/* Card Image */
.archive-card-media {
	position: relative;
	display: block;
	min-height: 235px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--card), var(--secondary));
}

.archive-card-img {
	width: 100%;
	height: 100%;
	min-height: 235px;
	object-fit: cover;
	transition: transform 0.45s ease;
}

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

.archive-card-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 235px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--button), var(--primary));
	color: #ffffff;
	font-size: 3rem;
	font-family: var(--font-heading);
	font-weight: 800;
}

.archive-card-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: #ffffff;
	border-radius: 999px;
	padding: 0.45rem 0.95rem;
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Card Content */
.archive-card-content {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.archive-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
	color: var(--text-light);
	font-size: 12px;
	font-weight: 400;
	text-transform: capitalize;
}

.archive-meta-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--secondary);
	display: inline-block;
}

.archive-card-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.28;
	margin: 0 0 0.4rem;
	color: #2b1a06;
	letter-spacing: -0.3px;
}

.archive-card-title a {
	color: inherit;
	text-decoration: none;
}

.archive-card-title a:hover {
	color: var(--button);
}

.archive-card-excerpt {
	font-size: 14px;
	line-height: 1.75;
	color: var(--text-secondary);
	margin: 0 0 1.2rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.archive-read-more {
	padding-top: 1rem;
	border-top: 1px solid rgba(43, 26, 6, 0.10);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #2b1a06;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	width: fit-content;
}

.archive-read-more span {
	transition: transform 0.2s ease;
}

.archive-read-more:hover {
	color: var(--primary);
}

.archive-read-more:hover span {
	transform: translateX(4px);
}

/* Sidebar */
.blog-archive-sidebar {
	position: sticky;
	top: 75px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.archive-sidebar-widget {
	background: #ffffff;
	border: 1px solid rgba(43, 26, 6, 0.08);
	border-radius: 18px;
	padding: 1.5rem;
	box-shadow: 0 18px 45px rgba(43, 26, 6, 0.07);
}

.archive-widget-title {
	position: relative;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 800;
	color: #2b1a06;
	margin: 0 0 1.4rem;
	padding-bottom: 6px;
	letter-spacing: 0 !important;
	text-transform: uppercase;
}

.archive-widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #2b1a068f, #eeeeee);
	border-radius: 999px;
}

/* Search */
.archive-search-form {
	display: flex;
	align-items: center;
	background: var(--background);
	border: 1px solid rgba(43, 26, 6, 0.12);
	border-radius: 999px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.archive-search-form:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(43, 26, 6, 0.08);
}

.archive-search-input {
	flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.9rem 1rem;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-primary);
}

.archive-search-input::placeholder {
	color: var(--text-light);
}

.archive-search-submit {
	width: 52px;
	align-self: stretch;
	border: none;
	background: var(--primary);
	color: #ffffff;
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.archive-search-submit:hover {
	background: var(--button);
}

/* Recent Posts */
.archive-recent-list {
	display: flex;
	flex-direction: column;
}

.archive-recent-item {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 0.8rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(43, 26, 6, 0.10);
	text-decoration: none;
}

.archive-recent-item:first-child {
	padding-top: 0;
}

.archive-recent-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.archive-recent-thumb {
	width: 70px;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--card);
}

.archive-recent-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.archive-recent-item:hover .archive-recent-img {
	transform: scale(1.08);
}

.archive-recent-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--button), var(--primary));
}

.archive-recent-content h4 {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	color: var(--text-primary);
	margin: 0 0 0.35rem;
	transition: color 0.2s ease;
}

.archive-recent-content span {
	display: block;
	font-size: 10px;
	color: #808080;
}

.archive-recent-item:hover h4 {
	color: var(--button);
}

/* Pagination */
.blog-archive-pagination {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(43, 26, 6, 0.12);
	text-align: center;
}

.blog-archive-pagination .navigation {
	margin: 0;
}

.blog-archive-pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.blog-archive-pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	padding: 0 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(43, 26, 6, 0.12);
	background: #ffffff;
	color: var(--text-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(43, 26, 6, 0.05);
}

.blog-archive-pagination .page-numbers.current {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
}

.blog-archive-pagination .page-numbers:hover {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
}

.blog-archive-pagination .prev,
.blog-archive-pagination .next {
	padding: 0 1.2rem;
}

.blog-page-count {
	margin: 1rem 0 0;
	color: #2b1a06;
	font-size: 12px;
	font-weight: 500;
}

/* Empty */
.archive-empty-state {
	background: #ffffff;
	border-radius: 18px;
	padding: 2rem;
	box-shadow: 0 18px 45px rgba(43, 26, 6, 0.07);
}

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

/* Large Tablet / Small Desktop */
@media (max-width: 1100px) {
	.blog-archive-layout {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 1.25rem;
	}

	.archive-post-card,
	.archive-post-card:nth-child(even) {
		grid-template-columns: 260px minmax(0, 1fr);
	}

	.archive-post-card:nth-child(even) .archive-card-media {
		order: 0;
	}

	.archive-card-media,
	.archive-card-img,
	.archive-card-img-placeholder {
		min-height: 220px;
	}

	.archive-card-content {
		padding: 1rem;
	}

	.archive-card-title {
		font-size: 15px;
	}

	.archive-card-excerpt {
		font-size: 13px;
		line-height: 1.65;
	}

	.archive-sidebar-widget {
		padding: 1.25rem;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.blog-archive-hero {
		min-height: 230px;
		padding: 0 1rem 4.4rem;
		background-position: center center;
	}

	.blog-archive-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.blog-archive-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}

	.archive-post-card,
	.archive-post-card:nth-child(even) {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.archive-post-card:nth-child(even) .archive-card-media {
		order: 0;
	}

	.archive-card-media,
	.archive-card-img,
	.archive-card-img-placeholder {
		min-height: 215px;
	}

	.archive-card-content {
		padding: 1.1rem;
	}

	.archive-search-widget,
	.archive-recent-widget {
		height: fit-content;
	}
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
	.blog-archive-hero {
		min-height: 210px;
		padding: 0 1rem 4rem;
	}

	.blog-archive-title {
		font-size: 26px !important;
	}

	.blog-archive-section {
		padding: 0 0 4rem;
	}

	.blog-archive-layout {
		gap: 1.6rem;
	}

	.archive-post-list {
		gap: 1.25rem;
	}

	.archive-post-card,
	.archive-post-card:nth-child(even) {
		grid-template-columns: 1fr;
		border-radius: 18px;
	}

	.archive-post-card:nth-child(even) .archive-card-media {
		order: 0;
	}

	.archive-card-media,
	.archive-card-img,
	.archive-card-img-placeholder {
		min-height: 240px;
	}

	.archive-card-content {
		padding: 1.15rem;
	}

	.archive-card-meta {
		font-size: 11px;
		gap: 0.45rem;
		margin-bottom: 0.65rem;
	}

	.archive-card-title {
		font-size: 18px;
		line-height: 1.32;
		margin-bottom: 0.55rem;
	}

	.archive-card-excerpt {
		font-size: 14px;
		line-height: 1.65;
		margin-bottom: 1rem;
		-webkit-line-clamp: 3;
	}

	.archive-read-more {
		font-size: 12px;
		padding-top: 0.85rem;
	}

	.blog-archive-sidebar {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.archive-sidebar-widget {
		padding: 1.25rem;
		border-radius: 16px;
	}

	.archive-recent-item {
		grid-template-columns: 76px 1fr;
	}

	.archive-recent-thumb {
		width: 76px;
		height: 60px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.blog-archive-hero {
		min-height: 185px;
		padding: 0 0.75rem 3.5rem;
		background-position: center top;
	}

	.blog-archive-hero::after {
		left: -60%;
		right: -60%;
		bottom: -58px;
		height: 140px;
	}

	.blog-archive-title {
		font-size: 24px !important;
		line-height: 1.2;
	}

	.blog-archive-section {
		padding: 0 0 3rem;
	}

	.blog-archive-layout {
		gap: 1.3rem;
	}

	.archive-post-list {
		gap: 1.1rem;
	}

	.archive-post-card {
		border-radius: 16px;
		box-shadow: 0 12px 30px rgba(43, 26, 6, 0.08);
	}

	.archive-post-card:hover {
		transform: none;
	}

	.archive-card-media,
	.archive-card-img,
	.archive-card-img-placeholder {
		min-height: 210px;
	}

	.archive-card-badge {
		top: 14px;
		left: 14px;
		font-size: 7px;
		padding: 0.38rem 0.75rem;
	}

	.archive-card-content {
		padding: 1rem;
	}

	.archive-card-meta {
		font-size: 10px;
		gap: 0.35rem;
		margin-bottom: 0.55rem;
	}

	.archive-meta-dot {
		width: 3px;
		height: 3px;
	}

	.archive-card-title {
		font-size: 16px;
		line-height: 1.35;
		margin-bottom: 0.5rem;
	}

	.archive-card-excerpt {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 0.85rem;
		-webkit-line-clamp: 3;
	}

	.archive-read-more {
		font-size: 11px;
		padding-top: 0.8rem;
	}

	.archive-sidebar-widget {
		padding: 1rem;
		border-radius: 15px;
	}

	.archive-widget-title {
		font-size: 13px;
		margin-bottom: 1.1rem;
	}

	.archive-search-input {
		font-size: 13px;
		padding: 0.8rem 0.9rem;
	}

	.archive-search-submit {
		width: 48px;
		font-size: 1.1rem;
	}

	.archive-recent-item {
		grid-template-columns: 64px 1fr;
		gap: 0.7rem;
		padding: 0.75rem 0;
	}

	.archive-recent-thumb {
		width: 64px;
		height: 54px;
		border-radius: 9px;
	}

	.archive-recent-content h4 {
		font-size: 12px;
		line-height: 1.35;
	}

	.archive-recent-content span {
		font-size: 9px;
	}

	.blog-archive-pagination {
		margin-top: 2rem;
		padding-top: 1.5rem;
	}

	.blog-archive-pagination .nav-links {
		gap: 0.42rem;
	}

	.blog-archive-pagination .page-numbers {
		min-width: 36px;
		height: 36px;
		font-size: 12px;
		padding: 0 0.7rem;
	}

	.blog-archive-pagination .prev,
	.blog-archive-pagination .next {
		padding: 0 0.9rem;
	}

	.blog-page-count {
		font-size: 11px;
	}
}

/* Very Small Mobile */
@media (max-width: 360px) {
	.blog-archive-title {
		font-size: 22px !important;
	}

	.archive-card-media,
	.archive-card-img,
	.archive-card-img-placeholder {
		min-height: 185px;
	}

	.archive-card-title {
		font-size: 15px;
	}

	.archive-card-excerpt {
		font-size: 12px;
	}

	.blog-archive-pagination .page-numbers {
		min-width: 34px;
		height: 34px;
		font-size: 11px;
	}
}

/* ==================== LUXURY CLEAN PAGE TEMPLATE ==================== */

.luxury-page-template {
	background: var(--background);
}

/* Hero */
.luxury-page-hero {
	position: relative;
	min-height: 250px;
	padding: 0 1.5rem 4.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background-image:
		linear-gradient(rgb(43 26 6 / 88%), rgb(43 26 6 / 90%)),
		var(--page-hero-bg, linear-gradient(135deg, var(--primary), #1c1003));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.luxury-page-hero::after {
	content: "";
	position: absolute;
	left: -35%;
	right: -35%;
	bottom: -60px;
	height: 170px;
	background: var(--background);
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	z-index: 1;
}

.luxury-page-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.luxury-page-title {
	font-family: var(--font-heading);
	font-size: 28px !important;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 auto;
	text-align: center !important;
	letter-spacing: 0;
	text-transform: capitalize;
	width: 100%;
}

/* Main Section */
.luxury-page-section {
	background: var(--background);
	padding: 0 0 5rem;
}

.luxury-page-container {
	max-width: 980px;
}

/* Content Card */
.luxury-page-card {
	background: #ffffff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(43, 26, 6, 0.08);
	border: 1px solid rgba(43, 26, 6, 0.06);
}

/* Featured Image */
.luxury-page-featured-image {
	width: 100%;
	max-height: 430px;
	overflow: hidden;
	background: var(--card);
}

.luxury-page-featured-image img {
	width: 100%;
	height: 100%;
	max-height: 430px;
	object-fit: cover;
	display: block;
}

/* Page Content */
.luxury-page-content {
	padding: 2.4rem 2.6rem;
	font-family: var(--font-ui);
	color: var(--text-primary);
}

.luxury-page-content > *:first-child {
	margin-top: 0;
}

.luxury-page-content > *:last-child {
	margin-bottom: 0;
}

.luxury-page-content p {
	font-size: 15px;
	line-height: 1.85;
	color: #2b1a06;
	margin: 0 0 1rem;
}

.luxury-page-content h2,
.luxury-page-content h3,
.luxury-page-content h4,
.luxury-page-content h5,
.luxury-page-content h6 {
	font-family: var(--font-heading);
	color: #2b1a06;
	letter-spacing: 0 !important;
	text-align: left;
}

.luxury-page-content h2 {
	font-size: 24px;
	line-height: 1.35;
	margin: 2rem 0 0.85rem;
}

.luxury-page-content h3 {
	font-size: 20px;
	line-height: 1.4;
	margin: 1.6rem 0 0.75rem;
}

.luxury-page-content h4 {
	font-size: 17px;
	line-height: 1.45;
	margin: 1.4rem 0 0.65rem;
}

.luxury-page-content ul,
.luxury-page-content ol {
	margin: 0 0 1.25rem 1.3rem;
	padding: 0;
	color: #2b1a06;
}

.luxury-page-content li {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 0.45rem;
	color: #2b1a06;
}

.luxury-page-content a {
	color: var(--primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.luxury-page-content a:hover {
	color: var(--button);
}

.luxury-page-content img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 12px 30px rgba(43, 26, 6, 0.08);
}

.luxury-page-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	background: var(--background);
	border-left: 3px solid var(--primary);
	border-radius: 0 14px 14px 0;
}

.luxury-page-content blockquote p {
	font-family: var(--font-heading);
	font-size: 17px;
	line-height: 1.7;
	color: #2b1a06;
	margin: 0;
}

.luxury-page-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	overflow: hidden;
	border-radius: 14px;
	font-size: 14px;
}

.luxury-page-content th,
.luxury-page-content td {
	border: 1px solid rgba(43, 26, 6, 0.12);
	padding: 0.9rem 1rem;
	text-align: left;
}

.luxury-page-content th {
	background: var(--primary);
	color: #ffffff;
	font-weight: 700;
}

.luxury-page-content td {
	background: #ffffff;
	color: #2b1a06;
}

/* Page Links */
.luxury-page-links {
	padding: 1.2rem 2.6rem 2rem;
	font-size: 13px;
	font-weight: 700;
	color: #2b1a06;
}

/* Comments */
.luxury-page-comments {
	margin-top: 2rem;
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 18px 45px rgba(43, 26, 6, 0.07);
	border: 1px solid rgba(43, 26, 6, 0.06);
}

/* WordPress Alignment Support */
.luxury-page-content .alignwide {
	margin-left: -1rem;
	margin-right: -1rem;
	max-width: calc(100% + 2rem);
}

.luxury-page-content .alignfull {
	margin-left: -2.6rem;
	margin-right: -2.6rem;
	max-width: calc(100% + 5.2rem);
	border-radius: 0;
}

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

@media (max-width: 1024px) {
	.luxury-page-container {
		max-width: 900px;
	}

	.luxury-page-content {
		padding: 2.1rem 2rem;
	}

	.luxury-page-content h2 {
		font-size: 22px;
	}

	.luxury-page-content h3 {
		font-size: 19px;
	}
}

@media (max-width: 768px) {
	.luxury-page-hero {
		min-height: 210px;
		padding: 0 1rem 4rem;
	}

	.luxury-page-title {
		font-size: 26px !important;
	}

	.luxury-page-section {
		padding: 0 0 4rem;
	}

	.luxury-page-card {
		border-radius: 18px;
	}

	.luxury-page-featured-image,
	.luxury-page-featured-image img {
		max-height: 320px;
	}

	.luxury-page-content {
		padding: 1.6rem;
	}

	.luxury-page-content p {
		font-size: 14px;
		line-height: 1.75;
	}

	.luxury-page-content h2 {
		font-size: 21px;
		margin: 1.7rem 0 0.75rem;
	}

	.luxury-page-content h3 {
		font-size: 18px;
		margin: 1.4rem 0 0.65rem;
	}

	.luxury-page-content li {
		font-size: 14px;
		line-height: 1.75;
	}

	.luxury-page-content .alignwide,
	.luxury-page-content .alignfull {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
		border-radius: 14px;
	}

	.luxury-page-comments {
		padding: 1.5rem;
		border-radius: 18px;
	}
}

@media (max-width: 480px) {
	.luxury-page-hero {
		min-height: 185px;
		padding: 0 0.75rem 3.5rem;
		background-position: center top;
	}

	.luxury-page-hero::after {
		left: -60%;
		right: -60%;
		bottom: -58px;
		height: 140px;
	}

	.luxury-page-title {
		font-size: 24px !important;
	}

	.luxury-page-section {
		padding: 0 0 3rem;
	}

	.luxury-page-card {
		border-radius: 16px;
		box-shadow: 0 12px 30px rgba(43, 26, 6, 0.08);
	}

	.luxury-page-featured-image,
	.luxury-page-featured-image img {
		max-height: 240px;
	}

	.luxury-page-content {
		padding: 1.15rem;
	}

	.luxury-page-content p {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 0.85rem;
	}

	.luxury-page-content h2 {
		font-size: 19px;
		line-height: 1.35;
		margin: 1.5rem 0 0.65rem;
	}

	.luxury-page-content h3 {
		font-size: 17px;
		line-height: 1.4;
		margin: 1.25rem 0 0.55rem;
	}

	.luxury-page-content h4 {
		font-size: 15px;
	}

	.luxury-page-content ul,
	.luxury-page-content ol {
		margin-left: 1.05rem;
	}

	.luxury-page-content li {
		font-size: 13px;
		line-height: 1.65;
	}

	.luxury-page-content blockquote {
		margin: 1.4rem 0;
		padding: 1rem;
		border-radius: 0 12px 12px 0;
	}

	.luxury-page-content blockquote p {
		font-size: 15px;
	}

	.luxury-page-content table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
		font-size: 12px;
	}

	.luxury-page-content th,
	.luxury-page-content td {
		padding: 0.75rem;
	}

	.luxury-page-links {
		padding: 1rem 1.15rem 1.5rem;
		font-size: 12px;
	}

	.luxury-page-comments {
		margin-top: 1.5rem;
		padding: 1rem;
		border-radius: 16px;
	}
}

@media (max-width: 360px) {
	.luxury-page-title {
		font-size: 22px !important;
	}

	.luxury-page-featured-image,
	.luxury-page-featured-image img {
		max-height: 210px;
	}

	.luxury-page-content {
		padding: 1rem;
	}
}