:root {
	--main-color: #58a6ff;
	--main-color-hover: #0b7dff;
	--main-color-transparent: #58a6ff50; 
	--main-background-color : #101010;
	--sec-background-color : #1f1f1f;
	--thi-background-color: #252525;
	--border-color : #505050;
	--text-color: #fff;
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Almarai
}

*::-webkit-scrollbar{
	width: 8px;
	height: 8px;
}

*::-webkit-scrollbar-track {
	background: #1f1f1f;
	border-radius: 10px
}

*::-webkit-scrollbar-thumb {
	background: var(--main-color);
	border-radius: 10px
}

*::-webkit-scrollbar-thumb:hover {
	background: var(--main-color-hover);
}



.articles {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.post-item {
	display: flex; 
	flex-grow: 1; 
	flex-direction: column;
	width: -webkit-fill-available;
}

.imgcontainer img {
	width: 100%; 
	height: auto
}