.tag-categoryportal .list-group {
	display: flex;
	flex-direction: row; /* This makes the list horizontal */
    flex-wrap: wrap;
	padding: 0;
	list-style: none;
	margin: 0;
	gap: 20px;
}

.tag-categoryportal .list-group-item {
	width: 25%; /* Each item takes up 25% of the container */
	box-sizing: border-box;
	padding: 15px;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 8px;
	transition: box-shadow 0.3s;
}

/* For mobile: 50% width */
@media (max-width: 768px) {
	.tag-categoryportal .list-group-item {
		width: 100%;
	}
}

.tag-categoryportal .list-group-item:hover {
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tag-categoryportal .list-group-item a {
	display: block;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}

.tag-categoryportal .list-group-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
}
