/* Home Page Hero Section CSS */

.home-hero-main {
	padding: 40px 0;
	background: #fff;
}

.home-hero-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	display: grid;
	grid-template-columns: 794.05px 521.8px;
	gap: 36px;
	box-sizing: border-box;
}

/* LEFT COLUMN */
.home-hero-left {
	width: 794.05px;
	max-width: 100%;
}

.hero-main-card {
	display: flex;
	flex-direction: column;
}

.hero-main-image-wrap {
	margin-bottom: 0;
}

.hero-main-image {
	width: 100%;
	height: 671.76px;
	object-fit: cover;
	display: block;
}

.hero-main-content {
	padding: 25px 20px 25px 25px;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	box-sizing: border-box;
}

.hero-main-title {
	margin: 0 0 20px 0;
}

.hero-main-title a {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 50.18px;
	line-height: 66.9px;
	letter-spacing: 0.28px;
	color: #303030;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hero-main-title a:hover {
	color: #E63946;
}

.hero-main-meta {
	display: flex;
	align-items: center;
	gap: 15px;
}

.hero-author-avatar {
	width: 70.6px;
	height: 70.6px;
	border-radius: 50%;
	object-fit: cover;
}

.hero-author-name {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 27.22px;
	line-height: 1;
	color: #404040;
}

/* RIGHT COLUMN */
.home-hero-right {
	width: 521.8px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	gap:32px;
}

/* Product Card */
.hero-product-card {
	width: 100%;
	height: 342.05px;
	border: 1px solid #DBDADA;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	background: #fff;
}

.hero-product-image {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.hero-product-image img {
	max-height: 200px;
	width: auto;
	object-fit: contain;
}

.hero-product-btn {
	display: inline-block;
	background: #000;
	color: #fff;
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.hero-product-btn:hover {
	background: #E63946;
}

/* The Top Latest */
.hero-latest-posts {
	display: flex;
	flex-direction: column;
}

.latest-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 33px;
	color: #121416;
	margin: 0 0 15px 0;
}

.latest-heading-underline {
	width: 510.57px;
	max-width: 100%;
	height: 2px;
	background-color: #E63946;
	margin-bottom: 25px;
}

.latest-posts-list {
	display: flex;
	flex-direction: column;

}

.latest-post-item {
	display: flex;
	gap: 20px;
	align-items: center;
}

.latest-post-img-link {
	flex-shrink: 0;
	align-self: flex-start;
}

.latest-post-img {
	width: 122.65px;
	height: 111.08px;
	object-fit: cover;
	display: block;
}

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

.latest-post-meta-top {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 5px;
}

.latest-post-cat {
	background: #000000;
	color: #FFFFFF;
	font-family: 'Lora', serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 24px;
	padding: 0 12px;
	border-radius: 5px;
	display: inline-block;
}

.latest-post-date {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #909090;
}

.latest-post-title {
	margin: 0 0 2px 0;
}

.latest-post-title a {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	color: #000000;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.latest-post-title a:hover {
	color: #E63946;
}

.latest-post-author {
	font-family: 'Urbanist', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	color: #909090;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
	.home-hero-container {
		padding: 0 20px;
		box-sizing: border-box;
		grid-template-columns: 58% 38%;
	}
	.home-hero-left {
		width: 100%;
	}
	.home-hero-right {
		width: 100%;
	}
	.latest-heading-underline {
		width: 100%;
	}
	.hero-main-title a {
		font-size: 36px;
		line-height: 48px;
	}
}

@media (max-width: 991px) {
	.home-hero-container {
		grid-template-columns: 1fr;
	}
	.home-hero-left, .home-hero-right {
		width: 100%;
	}
	.hero-main-image {
		height: auto;
		aspect-ratio: 4/3;
	}
	.home-hero-right {
		margin-top: 40px;
	}
}

/* EDITORS CHOICE SECTION */
.editors-choice-section {
	width: 100%;
	padding: 60px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fcfbfb; /* default light grey/white background */
	box-sizing: border-box;
}

.editors-choice-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.editors-choice-header-container {
	max-width: 1350px;
	margin: 60px auto 40px auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.editors-choice-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-align: center;
	margin: 0;
}

.editors-choice-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 41px;
	justify-content: center;
	max-width: 1350px;
	margin: 0 auto;
	box-sizing: border-box;
}

.editors-choice-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	box-sizing: border-box;
}

.editors-choice-card-img-wrap {
	width: 100%;
	overflow: hidden;
}

.editors-choice-card-img {
	width: 100%;
	height: 227.81px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.editors-choice-card-img-wrap:hover .editors-choice-card-img {
	transform: scale(1.03);
}

.editors-choice-card-content {
	border-left: 1px solid #DBDADA;
	border-right: 1px solid #DBDADA;
	border-bottom: 1px solid #DBDADA;
	padding: 25px 20px;
	box-sizing: border-box;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.editors-choice-meta-row {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.editors-choice-cat-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 108.63px;
	height: 24.16px;
	background: #000000;
	color: #FFFFFF;
	font-family: 'Lora', serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.editors-choice-cat-tag:hover {
	background-color: #E63946;
}

.editors-choice-meta-divider {
	width: 1px;
	height: 19.84px;
	background: #DCDCDC;
	margin: 0 13.12px;
	display: inline-block;
}

.editors-choice-date {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #909090;
}

.editors-choice-title {
	margin: 0 0 15px 0;
	flex-grow: 1;
}

.editors-choice-title a {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.editors-choice-title a:hover {
	color: #E63946;
}

.editors-choice-content-divider {
	width: 100%;
	height: 1px;
	background-color: #DCDCDC;
	margin: 0 0 20px 0;
}

.editors-choice-author-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.editors-choice-author-avatar {
	width: 41.5px;
	height: 41.5px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.editors-choice-author-name {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	color: #4A4A4A;
}

.editors-choice-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.editors-choice-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 297.62px;
	height: 76.50px;
	background: #000000;
	border-radius: 19.12px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.editors-choice-more-btn:hover {
	background-color: #E63946;
	transform: translateY(-2px);
}

.editors-choice-more-text {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
	letter-spacing: 4%;
	color: #FFFFFF;
}

.editors-choice-more-icon {
	display: flex;
	align-items: center;
}

.editors-choice-more-icon svg {
	width: 45px;
	height: 45px;
	display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1350px) {
	.editors-choice-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		padding: 0 15px;
	}
	.editors-choice-card-img {
		height: auto;
		aspect-ratio: 393.43 / 227.81;
	}
	.editors-choice-heading {
		font-size: 48px;
	}
}

@media (max-width: 991px) {
	.editors-choice-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	.editors-choice-header-container {
		margin: 40px auto 25px auto;
	}
	.editors-choice-heading {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.editors-choice-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
		gap: 30px;
	}
	.editors-choice-header-container {
		margin: 30px auto 20px auto;
	}
	.editors-choice-heading {
		font-size: 32px;
	}
	.editors-choice-more-btn {
		width: 260px;
		height: 64px;
	}
	.editors-choice-more-text {
		font-size: 20px;
	}
	.editors-choice-more-icon svg {
		width: 35px;
		height: 35px;
	}
}

/* TRENDING ARTICLES BANNER SECTION */
.trending-banner-section {
	width: 100%;
	padding: 60px 0 100px 0;
	background-color: #ffffff;
	box-sizing: border-box;
}

.trending-banner-container {
	max-width: 1350px;
	margin: 0 auto;
	display: flex;
	box-sizing: border-box;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.trending-banner-left-link {
	display: block;
	flex-grow: 1;
	max-width: 950px;
}

.trending-banner-left {
	width: 100%;
	height: 420px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.3s ease;
}

.trending-banner-left-link:hover .trending-banner-left {
	opacity: 0.95;
}

.trending-banner-right {
	width: 400px;
	background-color: #000000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	box-sizing: border-box;
	color: #ffffff;
	flex-shrink: 0;
}

.trending-badge-icon {
	width: 54px;
	height: 54px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.trending-badge-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.trending-custom-icon-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.trending-banner-heading {
	font-family: 'Lora', serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.0;
	color: #FFFFFF;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.trending-banner-title {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 36px;
	text-align: center;
	margin: 0;
}

.trending-banner-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.trending-banner-title a:hover {
	color: #E63946;
}

@media (max-width: 1350px) {
	.trending-banner-container {
		margin: 0 20px;
	}
	.trending-banner-left-link {
		max-width: 70%;
	}
	.trending-banner-right {
		width: 30%;
		flex-grow: 1;
	}
}

@media (max-width: 991px) {
	.trending-banner-container {
		flex-direction: column;
		margin: 0 15px;
	}
	.trending-banner-left-link {
		max-width: 100%;
		width: 100%;
	}
	.trending-banner-left {
		height: 320px;
	}
	.trending-banner-right {
		width: 100%;
		padding: 50px 20px;
	}
	.trending-banner-title {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 767px) {
	.trending-banner-left {
		height: 240px;
	}
	.trending-banner-title {
		font-size: 20px;
		line-height: 28px;
	}
}

/* POPULAR CATEGORIES SECTION */
.popular-cats-section {
	width: 100%;
	padding: 60px 0 100px 0;
	background-color: #ffffff;
	box-sizing: border-box;
}

.popular-cats-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.popular-cats-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 60px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-align: center;
	margin: 0 0 50px 0;
}

.popular-cats-grid {
	display: grid;
	grid-template-columns: repeat(3, 385.92px);
	gap: 96.12px;
	justify-content: center;
	max-width: 1350px;
	margin: 0 auto;
	box-sizing: border-box;
}

.popular-cats-card {
	width: 385.92px;
	height: 450.28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.popular-cats-card-img-wrap {
	width: 385.92px;
	height: 380.86px;
	overflow: hidden;
	display: block;
}

.popular-cats-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.popular-cats-card-img-wrap:hover .popular-cats-card-img {
	transform: scale(1.03);
}

.popular-cats-card-title {
	margin: 15px 0 0 0;
	text-align: center;
}

.popular-cats-card-title a {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.popular-cats-card-title a:hover {
	color: #E63946;
}

.popular-cats-ad-card {
	width: 385.92px;
	height: 380.86px;
	background-color: #E1E1E1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.popular-cats-ad-placeholder-text {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 100%;
	color: #4A4A4A;
	letter-spacing: 0%;
}

.popular-cats-ad-code-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1350px) {
	.popular-cats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		padding: 0 15px;
	}
	.popular-cats-card {
		width: 100%;
		height: auto;
	}
	.popular-cats-card-img-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 385.92 / 380.86;
	}
	.popular-cats-ad-card {
		width: 100%;
		height: auto;
		aspect-ratio: 385.92 / 380.86;
	}
	.popular-cats-card-title a {
		font-size: 28px;
	}
}

@media (max-width: 991px) {
	.popular-cats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	.popular-cats-heading {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.popular-cats-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 20px;
		padding: 0 20px 20px 20px;
		margin: 0 -20px;
		scrollbar-width: none;
	}
	.popular-cats-grid::-webkit-scrollbar {
		display: none;
	}
	.popular-cats-card {
		width: 280px;
		flex-shrink: 0;
		scroll-snap-align: start;
		height: auto;
	}
	.popular-cats-card-img-wrap, .popular-cats-ad-card {
		width: 280px;
		height: 276px;
	}
	.popular-cats-card-title a {
		font-size: 24px;
	}
	.popular-cats-heading {
		font-size: 36px;
		margin-bottom: 30px;
	}
}

/* EXPERTS PRODUCTS SECTION */
.experts-products-section {
	width: 100%;
	padding: 60px 0 100px 0;
	background-color: #FFF4ED;
	box-sizing: border-box;
}

.experts-products-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.experts-products-header-container {
	max-width: 1350px;
	margin: 60px auto 40px auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.experts-products-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-align: center;
	margin: 0;
}

.experts-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 172.65px);
	gap: 150px;
	justify-content: center;
	max-width: 1350px;
	margin: 0 auto;
	box-sizing: border-box;
}

.experts-products-card {
	width: 172.65px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.experts-products-img-wrap {
	width: 172.65px;
	height: 172.65px;
	border-radius: 50%;
	overflow: hidden;
	display: block;
	transition: transform 0.3s ease;
}

.experts-products-img-wrap:hover {
	transform: scale(1.05);
}

.experts-products-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.experts-products-title {
	margin: 20px 0 0 0;
	text-align: center;
	    line-height: 23px;
}

.experts-products-title a {
font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 11px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.experts-products-title a:hover {
	color: #E63946;
}

@media (max-width: 1350px) {
	.experts-products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
		padding: 0 15px;
	}
	.experts-products-card {
		width: 100%;
	}
	.experts-products-img-wrap {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}
	.experts-products-title a {
		font-size: 18px;
		line-height: 20px;
	}
}

@media (max-width: 991px) {
	.experts-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	.experts-products-heading {
		font-size: 44px;
	}
}

@media (max-width: 767px) {
	.experts-products-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 30px;
		padding: 0 20px 20px 20px;
		margin: 0 -20px;
		scrollbar-width: none;
	}
	.experts-products-grid::-webkit-scrollbar {
		display: none;
	}
	.experts-products-card {
		width: 172.65px;
		flex-shrink: 0;
		scroll-snap-align: start;
	}
	.experts-products-img-wrap {
		width: 172.65px;
		height: 172.65px;
	}
	.experts-products-title a {
		font-size: 16px;
		line-height: 18px;
	}
	.experts-products-heading {
		font-size: 32px;
	}
	.experts-products-header-container {
		margin: 40px auto 25px auto;
	}
}

/* ABOUT NEXORA SECTION */
.about-nexora-section {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto 100px auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.about-nexora-header-container {
	max-width: 1350px;
	margin: 80px auto 40px auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.about-nexora-main-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-align: center;
	margin: 0;
}

.mission-block-container {
	width: 100%;
	padding: 80px 40px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f7f5f5; /* fallback background pattern placeholder */
	box-sizing: border-box;
	border-radius: 8px;
}

.mission-card {
	background: #ffffff;
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 60px;
	display: flex;
	align-items: center;
	gap: 50px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.04);
	box-sizing: border-box;
}

.mission-title-col {
	flex: 0 0 250px;
}

.mission-title {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 68.16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #181818;
	margin: 0;
}

.mission-divider {
	width: 6.82px;
	height: 348.11px;
	background-color: #181818;
	flex-shrink: 0;
}

.mission-desc-col {
	flex-grow: 1;
}

.mission-desc {
	font-family: 'Lora', serif;
	font-weight: 400;
	font-size: 22.72px;
	line-height: 126%;
	letter-spacing: 0%;
	color: #181818;
	margin: 0;
}

.team-block-container {
	margin-top: 100px;
	width: 100%;
	box-sizing: border-box;
}

.team-border-wrap {
	position: relative;
	border: 1px solid #DBDADA;
	background: #FAFAFA;
	backdrop-filter: blur(500px);
	padding: 80px 50px 60px 50px;
	box-sizing: border-box;
}

.team-heading {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff; /* cutting border effect: white background behind text */
	padding: 0 30px;
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	margin: 0;
	white-space: nowrap;
	z-index: 10;
}

.team-desc {
	font-family: 'Lora', serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 140%;
	letter-spacing: 0%;
	text-align: center;
	color: #909090;
	max-width: 900px;
	margin: 0 auto 50px auto;
}

.team-desc a.editorial-board {
	font-weight: 500;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-offset: 4px;
	text-decoration-thickness: 1px;
	color: #909090;
}

.team-desc a.editorial-board:hover {
	color: #E63946;
}

.team-row {
	display: flex;
	justify-content: center;
	gap: 0;
	box-sizing: border-box;
}

.team-card {
	width: 200px;
	margin-left: -32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	position: relative;
}

.team-card:first-child {
	margin-left: 0;
}

.team-card:nth-child(1) { z-index: 1; }
.team-card:nth-child(2) { z-index: 2; }
.team-card:nth-child(3) { z-index: 3; }
.team-card:nth-child(4) { z-index: 4; }
.team-card:nth-child(5) { z-index: 5; }

.team-avatar-wrap {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	margin-bottom: 20px;
	flex-shrink: 0;
}

.team-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 5px solid #ffffff; /* 5px solid white border */
	object-fit: cover;
	display: block;
	box-sizing: border-box;
	transition: transform 0.3s ease;
}

.team-avatar-wrap:hover .team-avatar {
	transform: scale(1.04);
}

.team-name {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	color: #000000;
	margin: 0 auto 8px auto;
	max-width: 140px;
	width: 100%;
	display: block;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.team-role {
	font-family: 'Urbanist', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: #777777;
	margin: 0 auto;
	max-width: 140px;
	width: 100%;
	display: block;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@media (max-width: 1200px) {
	.mission-card {
		padding: 40px;
		gap: 30px;
	}
	.mission-title {
		font-size: 50px;
	}
	.mission-title-col {
		flex: 0 0 180px;
	}
	.mission-desc {
		font-size: 18px;
	}
	.mission-divider {
		height: 240px;
	}
	.team-card {
		width: 160px;
		margin-left: -25px;
	}
	.team-avatar-wrap {
		width: 160px;
		height: 160px;
	}
	.team-heading {
		font-size: 45px;
	}
	.team-name {
		font-size: 18px;
		max-width: 120px;
	}
	.team-role {
		max-width: 120px;
	}
}

@media (max-width: 991px) {
	.mission-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 40px 30px;
	}
	.mission-title-col {
		flex: 0 0 auto;
	}
	.mission-divider {
		width: 100%;
		height: 6.82px;
		margin: 20px 0;
	}
	.team-row {
		flex-wrap: wrap;
		justify-content: center;
		gap: 40px;
	}
	.team-card {
		flex: 0 0 40%;
		width: auto;
		margin-left: 0;
	}
	.team-name {
		max-width: none;
	}
	.team-role {
		max-width: none;
	}
	.team-heading {
		font-size: 38px;
	}
}

@media (max-width: 767px) {
	.about-nexora-main-heading {
		font-size: 38px;
	}
	.mission-title {
		font-size: 40px;
	}
	.mission-desc {
		font-size: 16px;
	}
	.team-heading {
		font-size: 32px;
		top: 0;
		padding: 0 15px;
	}
	.team-border-wrap {
		padding: 50px 20px 30px 20px;
	}
	.team-desc {
		font-size: 18px;
		margin-bottom: 30px;
	}
	/* Slider Layout on mobile */
	.team-row {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 20px;
		padding: 0 10px 20px 10px;
		margin: 0 -10px;
		scrollbar-width: none;
	}
	.team-row::-webkit-scrollbar {
		display: none;
	}
	.team-card {
		flex: 0 0 180px;
		scroll-snap-align: start;
		width: 180px;
		margin-left: 0;
	}
	.team-name {
		max-width: none;
	}
	.team-role {
		max-width: none;
	}
	.team-avatar-wrap {
		width: 140px;
		height: 140px;
	}
}

/* NEWSLETTER SUBSCRIPTION SECTION */
.newsletter-section {
    max-width: 1350px;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #181813;
    position: relative;
    box-sizing: border-box;
    display: grid;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.newsletter-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.newsletter-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
}

.newsletter-content-wrap {
	max-width: 1350px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-heading {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: 0.5px;
	color: #FFFFFF;
	margin: 0 0 15px 0;
	text-align: center;
}

.newsletter-subheading {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 33px;
	letter-spacing: 0%;
	color: #FFFFFF;
	margin: 0 0 35px 0;
	text-align: center;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 100%;
	box-sizing: border-box;
}

.newsletter-input-bar {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border-radius:7px;
	padding: 5px 5px 5px 25px;
	box-sizing: border-box;
	width: 100%;
	max-width: 730px;
	margin: 0 auto;
	height: 60px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
	flex-grow: 1;
	border: none;
	background: transparent;
	outline: none;
	font-family: 'Lora', serif;
	font-size: 16px;
	color: #000000;
	padding: 0 10px 0 0;
	border: none!important;
}

.newsletter-input::placeholder {
	color: #888888;
	font-family: 'Lora', serif;
	font-style: italic;
}

.newsletter-btn {
	background: #EF181C;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	width: 130.19px;
	height: 50px;
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 33px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, transform 0.1s ease;
	flex-shrink: 0;
}

.newsletter-btn:hover {
	background-color: #D31215;
}

.newsletter-btn:active {
	transform: scale(0.98);
}

.newsletter-agreement {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	max-width: 1350px;
	margin: 0 auto;
}

.newsletter-agreement-label {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	text-align: left;
}

.newsletter-checkbox {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	accent-color: #EF181C;
	flex-shrink: 0;
}

.newsletter-agreement-text {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 138%;
	letter-spacing: 0%;
	color: #FFFFFF;
}

.newsletter-msg {
	display: none;
	font-family: 'Lora', serif;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
	color: #FFFFFF;
}

.newsletter-msg.success {
	color: #4BB543;
}

.newsletter-msg.error {
	color: #FF3333;
}

/* Responsive Newsletter adjustments */
@media (max-width: 991px) {
	.newsletter-section {
		padding: 80px 0;
	}
	.newsletter-heading {
		font-size: 36px;
	}
	.newsletter-subheading {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 30px;
	}
	.newsletter-agreement-text {
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.newsletter-section {
		padding: 60px 0;
	}
	.newsletter-heading {
		font-size: 28px;
	}
	.newsletter-subheading {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 25px;
	}
	.newsletter-input-bar {
		height: 54px;
		padding: 4px 4px 4px 15px;
	}
	.newsletter-btn {
		width: 100px;
		height: 46px;
		font-size: 16px;
		line-height: 26px;
	}
	.newsletter-input {
		font-size: 14px;
	}
	.newsletter-agreement-text {
		font-size: 14px;
		line-height: 130%;
	}
	.newsletter-checkbox {
		width: 16px;
		height: 16px;
		margin-top: 2px;
	}
}

/* ==========================================
   NEXORA RECOMMENDS SECTION
   ========================================== */
.recommends-section {
	width: 100%;
	padding: 60px 0;
	background-color: #ffffff;
	box-sizing: border-box;
}

.recommends-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.recommends-header-container {
	max-width: 1350px;
	margin: 60px auto 40px auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.recommends-heading {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #000000;
	text-align: center;
	margin: 0;
}

.recommends-content-layout {
	display: grid;
	grid-template-columns: 1fr 392.44px;
	gap: 41px;
}

.recommends-left-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 41px;
}

/* Adjust card image to maintain aspect ratio in this 2x2 grid */
.recommends-left-grid .editors-choice-card-img {
	height: auto;
	aspect-ratio: 393.43 / 227.81;
}

.recommends-right-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Featured Articles Container */
.recommends-featured-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #EAEAEA;
}

.recommends-featured-header {
	width: 100%;
	max-width: 392.44px;
	height: 60.60px;
	background-color: #303030;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.recommends-featured-title {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
	letter-spacing: 0.04em;
	color: #FFFFFF;
	margin: 0;
}

.recommends-featured-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.recommends-featured-item {
display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEAEA;
    padding-left: 20px;
    padding-right: 20px;
}

.recommends-featured-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.recommends-featured-img-wrap {
	flex-shrink: 0;
}

.recommends-featured-img {
	width: 95.73px;
	height: 95.73px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	opacity: 1;
}

.recommends-featured-item-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
}

.recommends-featured-item-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 2px;
}

.recommends-featured-item-cat {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #797979;
}

.recommends-featured-item-meta-divider {
	color: #797979;
	font-family: 'Lora', serif;
	font-size: 14px;
}

.recommends-featured-item-time {
	font-family: 'Lora', serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: -0.04em;
	color: #797979;
}

.recommends-featured-item-title {
	margin: 2px 0;
}

.recommends-featured-item-title a {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	letter-spacing: 0%;
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recommends-featured-item-title a:hover {
	color: #E63946;
}

.recommends-featured-item-author {
	font-family: 'Urbanist', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0%;
	color: #909090;
	margin: 0;
}

/* AD Block styling */
.recommends-ad-container {
	width: 100%;
}

.recommends-ad-placeholder {
	width: 100%;
	height: 380px;
	background-color: #C4C4C4;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.recommends-ad-placeholder-text {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 60px;
	color: #797979;
	letter-spacing: 0.05em;
	opacity: 0.8;
}

/* More Articles Button */
.recommends-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.recommends-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	width: 297.62px;
	height: 76.50px;
	background: #000000;
	border-radius: 19.12px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.recommends-more-btn:hover {
	background-color: #E63946;
	transform: translateY(-2px);
}

.recommends-more-text {
	font-family: 'Lora', serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 100%;
	letter-spacing: 0.04em;
	color: #FFFFFF;
}

.recommends-more-icon {
	display: flex;
	align-items: center;
}

.recommends-more-icon svg {
	width: 45px;
	height: 45px;
	display: block;
}

.recommends-more-icon svg path {
	fill: #FFFFFF;
}

/* Responsive design for Nexora Recommends */
@media (max-width: 1350px) {
	.recommends-content-layout {
		grid-template-columns: 1fr 392.44px;
		gap: 30px;
	}
	.recommends-left-grid {
		gap: 30px;
	}
}

@media (max-width: 991px) {
	.recommends-content-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.recommends-right-col {
		max-width: 392.44px;
		margin: 0 auto;
		width: 100%;
	}
	.recommends-heading {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.recommends-left-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
		gap: 30px;
	}
	.recommends-heading {
		font-size: 32px;
	}
	.recommends-more-btn {
		width: 260px;
		height: 64px;
	}
	.recommends-more-text {
		font-size: 20px;
	}
	.recommends-more-icon svg {
		width: 35px;
		height: 35px;
	}
	}
}

/* ==========================================
   CUSTOM GLOBAL FOOTER SECTION
   ========================================== */
.custom-global-footer,
.custom-global-footer * {
	font-family: 'Karla', sans-serif;
	box-sizing: border-box;
}

.custom-global-footer {
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	box-sizing: border-box;
}

.footer-top-container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 80px 15px;
	box-sizing: border-box;
}

.footer-columns-grid {
	display: grid;
	grid-template-columns: 333px 1.2fr 1.2fr 390px;
	gap: 60px;
	box-sizing: border-box;
}

/* Column 1: Info & Logo */
.footer-logo-wrap {
	width: 333px;
	height: 79px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 25px;
}

.footer-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.footer-fallback-logo {
	color: #ffffff;
	font-family: 'Lora', serif;
	font-size: 28px;
	margin: 0;
}

.footer-about-desc {
	font-family: 'Karla', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	color: #CCCCCC;
	margin: 0 0 30px 0;
}

.footer-social-icons {
    display: flex;
    gap: 18px;
    align-items: start;
}

.social-icon-link {
display: inline-block;
    transition: opacity 0.2s ease;
    border: 1px solid #fff;
    border-radius: 35px;
}

.social-icon-link:hover {
	opacity: 0.8;
}

.social-icon-link img {
	width: 44px;
	height: 44px;
	display: block;
}

/* Column 2 & 3: Menus */
.footer-col-heading {
	font-family: 'Karla', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
	text-decoration: none;
	color: #FFFFFF;
	margin: 0 0 25px 0;
	text-transform: none;
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-links-list li {
	padding: 0;
	margin: 0;
}

.footer-links-list li a {
	font-family: 'Karla', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links-list li a:hover {
	color: #0077DE;
}

.footer-no-menu-msg {
	color: #909090;
	font-size: 14px;
}

/* Column 4: Newsletter */
.footer-newsletter-desc {
	font-family: 'Karla', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin: 0 0 25px 0;
}

.footer-newsletter-form {
	margin-top: 15px;
}

.footer-newsletter-input-bar {
	display: flex;
	align-items: center;
	border: 2px solid #FFFFFF;
	border-radius: 50px;
	padding: 4px;
	width: 100%;
	box-sizing: border-box;
	background-color: transparent;
	height: 56px;
	overflow: hidden;
}
.footer-newsletter-input-bar input{
	border:none!important;
}
.footer-newsletter-input {
	background: transparent;
	border: none;
	outline: none;
	color: #FFFFFF;
	padding: 0 15px;
	font-family: 'Karla', sans-serif;
	font-size: 16px;
	flex-grow: 1;
	box-sizing: border-box;
	height: 100%;
}

.footer-newsletter-input::placeholder {
	color: #888888;
	font-family: 'Karla', sans-serif;
	font-weight: 500;
}

.footer-newsletter-btn {
	background-color: #EF181C;
	color: #FFFFFF;
	border: none;
	border-radius: 50px;
	height: 44px;
	padding: 0 24px;
	font-family: 'Karla', sans-serif;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	letter-spacing: 0.5px;
	box-sizing: border-box;
}

.footer-newsletter-btn:hover {
	background-color: #d11216;
}

.footer-newsletter-msg {
	display: none;
	font-family: 'Karla', sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin-top: 12px;
	padding-left: 10px;
	color: #FFFFFF;
}

.footer-newsletter-msg.success {
	color: #4BB543;
}

.footer-newsletter-msg.error {
	color: #FF3333;
}

/* Bottom Copyright Bar */
.footer-bottom-copyright-bar {
width: 100%;
    min-height: 27px;
    background-color: #0077DE;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 106px 9px 105px;
    box-sizing: border-box;
}

.footer-copyright-text {
	font-family: 'Karla', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 1200px) {
	.footer-columns-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.footer-logo-wrap {
		width: 100%;
		justify-content: flex-start;
	}
	.footer-bottom-copyright-bar {
		padding: 24px 40px;
	}
}

@media (max-width: 768px) {
	.footer-columns-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.footer-top-container {
		padding: 60px 15px;
	}
	.footer-bottom-copyright-bar {
		padding: 20px 20px;
	}
	.footer-copyright-text {
		font-size: 13px;
	}
}



