body {
	background: linear-gradient(135deg, #2d186a 0%, #4a2c7a 100%);
	color: #fff;
	font-family: "Arial", sans-serif !important;
	font-optical-sizing: auto;
}
html {
	font-family: "Arial", sans-serif !important;
	font-optical-sizing: auto;
}

.blog-hero {
	/* background: linear-gradient(135deg, #6b39ff 0%, #2d186a 100%); */
	background-color: (180deg, #1a0d3a 0%, #2d1b69 50%, #4a2c7a 100%);
	padding: 64px 0 32px 0;
	text-align: center;
	position: relative;
}
.blog-title {
	max-width: 900px;
	margin: 0 auto 32px auto;
	text-align: center;
}

.blog-title p {
	font-size: 2.8rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin: 0;
	text-wrap: balance;
	max-width: 800px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.blog-title {
		font-size: 2rem;
		line-height: 1.4;
	}
}
.blog-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}
.blog-author {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #bdbdbd;
	font-size: 1.1rem;
	font-weight: 500;
}
.blog-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #bdbdbd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
}
.blog-info {
	display: flex;
	gap: 18px;
	align-items: center;
	color: #bdbdbd;
	font-size: 1rem;
	margin-bottom: 18px;
	justify-content: center;
}
.blog-summary {
	color: #e0e0e0;
	font-size: 1.13rem;
	max-width: 700px;
	margin: 0 auto 32px auto;
}
.blog-main-img {
	width: 100%;
	max-width: 900px;
	max-height: 400px; /* Adjust this value based on your image */
	/* margin: 0 auto 48px auto; */
	margin: 0 auto 0px auto;
	border-radius: 18px 18px 0px 0px;
	display: block;
	object-fit: cover;
	object-position: top; /* Shows the top portion of the image */
	overflow: hidden;
}
.blog-content {
	max-width: 900px;
	margin: 0 auto 64px auto;
	/* background: linear-gradient(135deg, #2d186a 0%, #4a2c7a 100%); */
	border-radius: 18px;
	padding: 48px 32px 48px 32px;
	color: #e0e0e0;
	font-size: 1.13rem;
	/* box-shadow: 0 0 32px 0 #7c3aed33; */
}
.blog-content h2 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(167, 139, 250, 0.3);
}

.blog-content h2:first-of-type {
	margin-top: 24px;
}

.blog-content ul {
	margin: 0 0 24px 0;
	padding-left: 24px;
	list-style-type: disc;
}

.blog-content li {
	margin-bottom: 12px;
	padding-left: 8px;
	line-height: 1.7;
	color: #e0e0e0;
}

.blog-content li::marker {
	color: #a78bfa;
	font-size: 1.2em;
}
.quote-box {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	color: #fff;
	border-left: 4px solid #a78bfa;
	min-height: 50px;
	padding: 12px 18px;
	background: rgba(167, 139, 250, 0.08);
	border-radius: 0 8px 8px 0;
}

.quote-box p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.6;
	font-weight: 400;
}
@media (max-width: 768px) {
	.blog-content {
		padding: 32px 24px;
		font-size: 1rem;
	}

	.blog-content h2 {
		font-size: 1.3rem;
		margin-top: 32px;
	}

	.quote-box {
		padding: 12px 16px;
	}

	.quote-box p {
		font-size: 1rem;
	}
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}

.page-btn,
.page-number {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-btn:hover:not(:disabled),
.page-number:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.page-number.active {
	background: white;
	color: #667eea;
	font-weight: 600;
}

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

.page-btn svg {
	width: 20px;
	height: 20px;
}

.quote-box-main {
	background: rgba(255, 255, 255, 0.05);
	border-left: 4px solid rgba(255, 255, 255, 0.4);
	padding: 30px 40px;
	margin-bottom: 40px;
	/* border-radius: 8px; */
	backdrop-filter: blur(10px);
}

.quote-text {
	font-size: 18px;
	line-height: 1.8;
	color: #ffffff;
	margin: 0;
	font-weight: 400;
}

/* Subtitle Text */
.subtitle-text {
	font-size: 18px;
	line-height: 1.7;
	color: #ffffff;
	margin: 30px 0 40px 0;
	font-weight: 400;
}

/* Section Title Box */
.section-title-box {
	background: transparent;
	border-left: 4px solid rgba(255, 255, 255, 0.4);
	padding: 20px 40px;
	margin: 50px 0 30px 0;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.5px;
}

/* Content Text */
.content-text {
	font-size: 17px;
	line-height: 1.7;
	color: #ffffff;
	margin: 25px 0 20px 0;
	font-weight: 400;
}

/* Mindset List */
.mindset-list {
	list-style: none;
	padding-left: 0;
	margin: 20px 0 40px 0;
}

.mindset-list li {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	padding-left: 30px;
	margin-bottom: 12px;
	position: relative;
}
/* 
.mindset-list li::before {
	content: "•";
	position: absolute;
	left: 10px;
	color: #ffffff;
	font-size: 20px;
	line-height: 1.4;
} */

/* Key Points Section */
.key-points-section {
	margin: 40px 0;
	padding: 30px 0;
}

.key-point {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 12px 0;
	font-weight: 400;
}

.belief-statement {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 25px 0 15px 0;
	font-weight: 400;
}

.quote-highlight {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 10px 0;
	font-style: italic;
	padding-left: 20px;
	border-left: 2px solid rgba(255, 255, 255, 0.3);
}

/* Philosophy Section */
.philosophy-section {
	margin: 40px 0;
	padding: 20px 0;
}

.philosophy-text {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 12px 0;
	font-weight: 400;
}

.philosophy-text strong {
	font-weight: 600;
}

/* Summary Box */
.summary-box {
	background: transparent;
	border-left: 4px solid rgba(255, 255, 255, 0.4);
	padding: 10px 40px;
	margin: 50px 0 0 0;
	/* border-radius: 8px; */
}

.summary-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px 0;
	letter-spacing: -0.3px;
}

.summary-text {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 0;
	font-weight: 400;
	margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-nav {
		gap: 20px;
	}

	.nav-link {
		font-size: 14px;
	}

	.pagination {
		gap: 6px;
	}

	.page-btn,
	.page-number {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
}

@media (min-width: 769px) and (max-width: 1200px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
