.container-box {
	/*max-width: 1170px;*/
	margin: 0 auto;
	display: grid; 
	gap: 40px;
	grid-template-columns: 310px 1fr;
}
/* Left Column */
.left-column {
	position: sticky;
	top: 40px;             
	max-height: calc(100vh - 80px);
	overflow-y: auto;       
	padding-right: 10px;	 
	-ms-overflow-style: none;  
	scrollbar-width: none;   
	
}
/* Chrome, Safari, Opera */
.left-column::-webkit-scrollbar {
	display: none;
}
.tracker {
	background: white;
	border: 1px solid #333;
	border-radius: 10px;
	padding:20px;
	display: flex;
	flex-direction: column;	
	margin-bottom:20px;
}
.tracker.active {
	border: 1px solid #007bff;
	/*background: #f0f7ff;*/
}
.logo-box {
	/*border: 1px solid #ddd;
	background: #fff;*/
	padding:2px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}  
.tracker-title {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.5;
}
.tracker ul {
	list-style: disc;
	padding-left: 20px;
	margin:0;
}
.tracker li {
	font-size: 14px;
	margin-bottom: 12px;
	line-height: 1.5;
}
/* Right Column */
.right-column {
	display: flex;
	flex-direction: column;
	/*gap: 20px;*/
  	height: calc(100vh - 80px);	
}
.content-box {
	background: white;
	border: 1px solid #333;
	border-radius: 10px;
	padding: 20px;
	height: 100%;
	overflow-y: auto;
	display: none;	
}
/* Chrome, Safari, Opera */
.content-box::-webkit-scrollbar {
	display: none;
}
.img-banne-box{
	width:100%;
	display:block;
	margin-bottom:15px;
}
/*.img-banne-box img{*/
/*	width:100%;	*/
/*}*/
.content-text {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px; 
	padding-top: 0;
	margin-top: 0;
}
.content-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
}
.image-caption {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
} 
.content-box.active {
	display: block;
}

/* ========================= */
/* TABLET VIEW (<=1024px) */
/* ========================= */
@media (max-width: 1024px) {
	.container-box {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.left-column {
		position: relative;
		max-height: none;
		overflow: visible;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.right-column {
		height: auto;
	}

	.content-box {
		height: auto;
	}
}

/* ========================= */
/* MOBILE VIEW (<=640px) */
/* ========================= */
@media (max-width: 640px) {
	.container-box {
		padding: 20px;
	}

	.left-column {
		grid-template-columns: 1fr;
	}

	.tracker,
	.content-box {
		padding: 20px;
		border-radius: 12px;
	}

	.content-image {
		height: 200px;
	}
}