body{
	margin:0px;
	background:#000000;
}


.ibet-layout{
	display:flex;
	gap:30px;
}

.ibet-sidebar{
	width:250px;
}

.ibet-sidebar a{
	display:block;
	padding:12px;
	margin-bottom:10px;
	background:#ffffff;
	border-radius:8px;
	text-decoration:none;
	color:#333;
}

.ibet-sidebar a.active{
	background:#ECC964;
	color:rgb(0, 0, 0);
}

.ibet-posts{
	flex:1;
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
	gap:20px;
}

.ibet-post-card{
	border:1px solid #ECC964;
	padding:15px;
	border-radius:10px;
}

.ibet-post-card img{
	width:100%;
	height:auto;
	border-radius:8px;
}

.ibet-post-card h3{
	margin-top:15px;
}

.ibet-post-card a{
	color:#ffffff;
	text-decoration:none;
}

@media(max-width:768px){
	.ibet-layout{
		flex-direction:column;
	}

	.ibet-sidebar{
		width:100%;
	}
}
