.tournaments-page-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:18px;
	margin-top:24px;
}

.tournament-tab-content{
	display:none;
}

.tournament-tab-content.active{
	display:block;
}

.tournament-card--finished{
	opacity:.78;
}

.tournament-card__content small{
	display:flex;
	align-items:center;
	gap:4px;
}

.tournament-participants{
	display:flex!important;
	align-items:center!important;
	gap:4px;
}

.tournament-participants b{
	display:inline-flex!important;
	margin:0!important;
	color:#ffc400;

	line-height:1;
}


@media(max-width:1100px){
	.tournaments-page-grid{
		grid-template-columns:repeat(2,1fr);
	}
}

@media(max-width:760px){
	.tournaments-page-grid{
		grid-template-columns:1fr;
	}
}