/* Block tags */
div.tags_block {
	p.block_content {
		margin: 0;
		display: flex;
		flex-wrap: wrap;
    gap: 0.5rem;
		span {
			display: flex;
    	align-items: center;
			cursor: pointer; 
		}
		.tag_level3 { font-size: 1.8em; font-weight: bold }
		.tag_level2 { font-size: 1.4em }
		.tag_level1 { font-size: 1em; color: #888 }
		span:hover {
			color: var(--brand);
		}
	}	
}