/* Single post title: h2 -> h1 for SEO (semantic change only).
   Bridge's default h1 tag styling (30px/1.25em, no uppercase treatment) differs
   from its h2 styling (24px/1.3846em, uppercase, letter-spacing, 600 weight).
   Force the old h2 look onto the new h1 so posts render visually unchanged. */
article h1.entry_title {
	font-size: 24px;
	line-height: 1.384615384615385em;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}
