/*============== BLog Listing page css Start  */
.blog_technical h2.h2_48 {
	line-height: 100%;
}
.blog_technical p {
	max-width: 659px;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32.5px;
	letter-spacing: -0.449px;
	margin-top: 17px;
}
:root {
	/* --primary-orange: #FF6B35;
	--primary-orange-hover: #E85A28;
	--text-copper: #D4A574;
	--bg-dark: #000000;
	--bg-card: #1a1a1a;
	--text-white: #ffffff;
	--text-gray: #a0a0a0; */
} 

.blog-posts-container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Filter Buttons */
.filter-categories {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
	/* flex-wrap: wrap; */
	justify-content: flex-start;
	margin-left: 50px;
	overflow: auto;
	width: 100%;
	word-wrap: normal;
	flex: 0 1;
	padding-bottom: 7px;
}

.filter-btn {
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	color: #323232;
	text-align: center;
	font-family: Inter;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	background: transparent;
	border: none;
	padding: 0;
	text-wrap: nowrap;
	cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
	transform: translateY(-2px);
	text-underline-offset: 3px;
	text-decoration: underline
}

/* Posts Grid */
.posts-grid {
	display: grid;
	grid-template-columns:repeat(auto-fill, minmax(	649px, 1fr));
	gap: 34px; 
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* .posts-grid.loading {
	opacity: 0.5;
} */

.post-card {
	background: #000;
	border-radius: 35px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
}

.post-card:hover {
	transform: translateY(-5px);
}

.post-card-inner {
	display: flex;
	align-items: stretch;
	min-height: 450px;
	padding: 50px 40px;
	gap: 20px;
	height: 100%;
}

/* Left Content */
.post-content-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.production-label {
	margin-bottom: 12px;
	font-weight: 600;
	color: #E85B03;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 2.65px;
	text-transform: uppercase;
}

.post-title {
	color: #FFF;
	font-family: "Instrument Serif";
	font-size: 48px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
	letter-spacing: -1.061px;
	margin: 0 0 37px 0;
}

.post-description {
	color: #FFF;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.44px;
	width: 284px;
}

.post-meta {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
	font-size: 14px;
	color: #FFF;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.44px;
}

.post-content-left a > span {
	width: 100%;
	max-width: 175px;
}

.more-link {
	display: inline-block;
	background: var(--primary-orange);
	color: var(--text-white);
	padding: 14px 40px;
	text-decoration: none;
	border-radius: 50px;
	font-size: 15px;
	transition: all 0.3s ease;
	align-self: flex-start;
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 500;
}

.more-link:hover {
	background: var(--primary-orange-hover);
	transform: translateX(5px);
}

.arrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin-left: 10px;
	font-size: 12px;
}

/* Right Image */
.post-image-right {
	/* flex: 0 0 470px; */	
	justify-content: center;
	width: 100%;
	max-width: 440px;
}

.post-image-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 35px;
}

/* Pagination */
.pagination-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	/* color: #000; */
	padding: 12px 0;
}

.pagination-wrapper a,
.pagination-wrapper span {
	text-decoration: none;
	padding: 0px 16px;
	transition: all 0.3s ease;
	border-radius: 8px;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 32.5px;
	letter-spacing: -0.449px;
}

.pagination-wrapper a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.pagination-wrapper .current {
	background: var(--primary-orange);
	font-weight: 600;
}

.pagination-wrapper .dots {
	padding: 10px 5px;
}

/* Loading State */
.loading-spinner {
	display: none;
	text-align: center;
	padding: 40px;
	color: var(--text-white);
	font-size: 18px;
	position: absolute;
	top: 50%;
	background: #ffffff42;
	z-index: 999;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 380px;
	backdrop-filter: blur(11px);
}

.loading-spinner.active {
	display: block;
}
.post-content-left .h_btn_col {
	display: block;
}
.blog_technical_cont {
	margin-left: 51px;
}
.blog-posts-section{
	overflow:hidden;
}
.faq-title {
	margin-bottom: 65px;
}
/* Responsive Design */
@media (max-width: 1440px) {
	.post-title{ 
		font-size: 38px;  
		line-height: 106.667%; 
		margin: 0 0 25px 0;
	}
	.posts-grid {
		grid-template-columns: repeat(auto-fill, minmax(451px, 1fr));
		gap: 30px;
	}
}
@media (max-width: 1366px) {
	.posts-grid {
		grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
		gap: 30px;
	}
}
@media (max-width: 1240px) {
	.posts-grid {
		grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
		gap: 30px;
	}
	.faq-title {
		margin-bottom: 30px;
        margin-top: -15px;
	}
}
@media (max-width: 1024px) {
	.padding_100 {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

@media (max-width: 768px) {
	.padding_100 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.posts-grid {
		grid-template-columns: 1fr;
	}
	.post-card, .post-image-right img{
		border-radius: 21px;
	}
	.post-image-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.post-card-inner {
		flex-direction: column-reverse;
		min-height: auto;
		padding: 15px 15px  31px;
	}
	.post-content-left{
		gap: 30px;
	}
	.post-title {
		font-size: 36px;
	}
	.post-description{
		width: 100%;
	}
	.post-meta{
		margin-bottom: 20px;
	}    
	.filter-categories {
		gap: 28px;
		margin: 0 0 25px;		
	}    
	.filter-btn { 
		font-size: 18px;
	}
	.blog_technical_cont {
		margin-left: 0px;
	}
	.relative_post .our_work_grid {
		margin-bottom: 0;
	}
}

@media (max-width: 480px) {

	.post-title {
		font-size: 28px;
	}

	.post-description {
		font-size: 14px;
	}

	.post-meta {
/* 		flex-direction: column; */
		gap: 10px;
	}

	.more-link {
		padding: 12px 30px;
		font-size: 14px;
	}
}

/*============== BLog Listing page css end  */
