body {
	margin: 0;
	font-family: "Inter", sans-serif;
	background: #f5f5f5;
}
.container {
	display: flex;
	max-width: 1000px;
	height: 700px;
	margin: 40px auto;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.left-panel {
	width: 60%;
	position: relative;
	background-color: #000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	border-radius: 0 0 20px 0;
}
.left-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.overlay {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	width: 100%;
	color: white;
	padding: 20px;
}
.nav-arrows {
	position: absolute;
	bottom: 10px;
	right: 20px;
	display: flex;
	gap: 10px;
	align-items: center;
	background-color: #000;
	padding: 5px 10px;
	border-radius: 30px;
	z-index: 1;
}
.nav-arrows button {
	background: transparent;
	border: none;
	border-radius: 0;
	width: auto;
	height: auto;
	cursor: pointer;
	font-size: 0;
}
.right-panel {
	width: 40%;
	background: transparent;
	padding: 20px 0 20px 20px;
	box-sizing: border-box;
	overflow-y: auto;
}
.banner_slider #slidleft {
	background-color: transparent;
}
.tabs {
	display: flex;
	border-bottom: 10px solid #282B44;
	margin-bottom: 30px;
}
.tab {
	flex: 1;
	padding: 15px 20px;
	cursor: pointer;
	border: none !important;
	font-weight: bold;
	color: #282B44;
	background-color:transparent;
	border-radius: 5px 5px 0 0;
}
.tab.active {
	color: #fff;
	background-color:#282B44;
}
.posts {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.posts.hidden {
	display: none;
}
.post {
	cursor: pointer;
	padding: 0 10px;
	border-bottom: none;
}
.post:hover {
	background: transparent;
}
#hot a:hover {
	background: transparent;
}
.views {
	
}
.post h4 {
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 28px;
	padding-bottom: 0;
}
.views {
	font-size: 12px;
	color: #888;
}
.post.active h4 {
	color: #000;
}
.post:hover h4 {
	color:#000;
}
.post.active h4, .post:hover h4 {}
.left-panel {
	position: relative;
	overflow: hidden;
}
.left-panel img {
	width: 100%;
	display: block;
}
.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	padding: 15px;
	border-radius: 6px;
}
.meta-overlay {
	font-size: 15px;
	margin-top: 5px;
	line-height: 1.6;
	color: #fff;
}
