@charset "UTF-8";
/* CSS Document */

/* ===== Listing ===== */

.blog_block .inner {
	border: solid var(--dark) 2px;
}

/* ===== Posts ===== */

.blog_post {
	display: flex;
	justify-content: flex-end;
}

#body {
    flex: 1;
    min-width: 0; /* important for text overflow */	
	background-color: aqua;
}

#sidebar {
	width: 300px;
	padding: 15px;
    flex-shrink: 0;
	background-color: hotpink;
}

#sidebar h2 {
	font-size: 1.2em;
}

#sidebar .more_cats {
	display: none;
}