Index: content-reference.php
===================================================================
--- content-reference.php	(revision 3623)
+++ content-reference.php	(working copy)
@@ -14,229 +14,21 @@
 
 <?php if ( is_single() ) : ?>
 
-	<section class="description">
-		<?php echo get_description(); ?>
-	</section>
-
 	<?php
-	$return = get_return();
-	if ( ! empty( $return ) ) :
-		?>
-		<section class="return"><p><strong><?php _e( 'Return:', 'wporg' ); ?></strong> <?php echo $return; ?></p></section>
-	<?php endif; ?>
+	$content = get_reference_template_parts();
 
-	<?php
-	$source_file = get_source_file();
-	if ( ! empty( $source_file ) ) :
-		?>
-		<section class="source">
-			<p>
-				<strong><?php _e( 'Source file:', 'wporg' ); ?></strong>
-				<a href="<?php echo get_source_file_archive_link( $source_file ); ?>"><?php echo esc_html( $source_file ); ?></a>
-			</p>
-			<?php if ( post_type_has_source_code() ) { ?>
-			<p>
-				<a href="#source-code"><?php _e( 'View source', 'wporg' ); ?></a>
-			</p>
-			<?php } else { ?>
-			<p>
-				<a href="<?php echo get_source_file_link(); ?>"><?php _e( 'View on Trac', 'wporg' ); ?></a>
-			</p>
-			<?php } ?>
-		</section>
-	<?php endif; ?>
+	// If the Handbook TOC is available, use it.
+	if ( class_exists( 'WPorg_Handbook_TOC' ) ) :
+		$TOC = new \WPorg_Handbook_TOC( get_parsed_post_types(), __( 'Table of Contents', 'wporg' ) );
 
-	<?php if ( $params = get_params() ) : ?>
-	<hr/>
-	<section class="parameters">
-		<h2><?php _e( 'Parameters', 'wporg' ); ?></h2>
-		<dl>
-			<?php foreach ( $params as $param ) : ?>
-			<?php if ( ! empty( $param['variable'] ) ) : ?>
-			<dt><?php echo esc_html( $param['variable'] ); ?></dt>
-			<?php endif; ?>
-			<dd>
-				<p class="desc">
-					<?php if ( ! empty( $param['types'] ) ) : ?>
-					<span class="type"><?php printf( __( '(%s)', 'wporg' ), wp_kses_post( $param['types'] ) ); ?></span>
-					<?php endif; ?>
-					<?php if ( ! empty( $param['required'] ) && 'wp-parser-hook' !== get_post_type() ) : ?>
-					<span class="required"><?php printf( __( '(%s)', 'wporg' ), esc_html( $param['required'] ) ); ?></span>
-					<?php endif; ?>
-					<?php if ( ! empty( $param['content'] ) ) : ?>
-					<span class="description"><?php echo wp_kses_post( $param['content'] ); ?></span>
-					<?php endif; ?>
-				</p>
-				<?php if ( ! empty( $param['default'] ) ) : ?>
-				<p class="default"><?php _e( 'Default value:', 'wporg' );?> <?php echo htmlentities( $param['default'] ); ?></p>
-				<?php endif; ?>
-			</dd>
-			<?php endforeach; ?>
-		</dl>
-	</section>
-	<?php endif; ?>
-
-	<?php
-	$explanation = get_explanation_field( 'post_content', get_the_ID() );
-	if ( $explanation ) :
-		?>
-		<hr/>
-		<section class="explanation">
-			<h2><?php _e( 'More Information', 'wporg' ); ?></h2>
-
-			<?php
-			// Output the explanation. Passed through 'the_content' on retrieval, thus no escaping.
-			echo $explanation;
-			?>
-		</section>
-	<?php endif; ?>
-
-	<?php /*
-	<?php if ( $arguments = get_arguments() ) : //todo: output arg data ?>
-	<hr/>
-	<section class="arguments">
-		<h2><?php _e( 'Arguments', 'wporg' ); ?></h2>
-	</section>
-	<?php endif; ?>
-	<hr/>
-	<section class="learn-more">
-		<h2><?php _e( 'Learn More', 'wporg' ); ?></h2>
-	</section>
-	*/ ?>
-
-	<?php if ( 'wp-parser-class' === get_post_type() ) :
-		if ( $children = get_children( array( 'post_parent' => get_the_ID(), 'post_status' => 'publish' ) ) ) :
-			usort( $children, __NAMESPACE__ . '\\compare_objects_by_name' );
+		add_filter( 'the_content', array( $TOC, 'add_toc' ) );
+		$content = apply_filters( 'the_content', $content );
+		remove_filter( 'the_content', array( $TOC, 'add_toc' ) );
+	endif;
 	?>
-		<hr/>
-		<section class="class-methods">
-		<h2><?php _e( 'Methods', 'wporg' ); ?></h2>
-		<ul>
-			<?php foreach ( $children as $child ) : ?>
-				<li><a href="<?php echo get_permalink( $child->ID ); ?>">
-				<?php
-					$title = get_the_title( $child );
-					$pos = ( $i = strrpos( $title, ':' ) ) ? $i + 1 : 0;
-					echo substr( $title, $pos );
-				?></a>
-				<?php if ( $excerpt = apply_filters( 'get_the_excerpt', $child->post_excerpt ) ) {
-					echo '&mdash; ' . sanitize_text_field( $excerpt );
-				} ?>
-				<?php if ( is_deprecated( $child->ID ) ) {
-					echo '&mdash; <span class="deprecated-method">' . __( 'deprecated', 'wporg' ) . '</span>';
-				} ?>
-				</li>
-			<?php endforeach; ?>
-		</ul>
-		</section>
-		<?php endif;
-	endif; ?>
 
-	<?php if ( show_usage_info() ) : ?>
-		<hr id="usage" />
-		<section class="usage">
-			<article class="used-by">
-				<h2><?php _e( 'Used by', 'wporg' ); ?></h2>
-				<ul>
-					<?php
-						$used_by = get_used_by();
-						$used_by_to_show = 5;
-						while ( $used_by->have_posts() ) : $used_by->the_post();
-							?>
-							<li>
-								<span><?php echo esc_attr( get_source_file() ); ?>:</span>
-								<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
-							</li>
-						<?php endwhile; wp_reset_postdata(); ?>
-						<?php if ( $used_by->post_count > $used_by_to_show ) : ?>
-							<a href="#" class="show-more"><?php
-								/* translators: %d: remaining 'used by' count */
-								printf( _n( 'Show %d more used by', 'Show %d more used by', $used_by->post_count - $used_by_to_show, 'wporg' ),
-									number_format_i18n( $used_by->post_count - $used_by_to_show )
-								);
-							?></a>
-							<a href="#" class="hide-more"><?php _e( 'Hide more used by', 'wporg' ); ?></a>
-						<?php endif; ?>
-				</ul>
-			</article>
-			<?php if ( post_type_has_uses_info() ) : ?>
-				<article class="uses">
-					<h2><?php _e( 'Uses', 'wporg' ); ?></h2>
-					<ul>
-						<?php
-						$uses = get_uses();
-						$uses_to_show = 5;
-						while ( $uses->have_posts() ) : $uses->the_post()
-							?>
-							<li>
-								<span><?php echo esc_attr( get_source_file() ); ?>:</span>
-								<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
-							</li>
-						<?php endwhile; wp_reset_postdata(); ?>
-						<?php if ( $uses->post_count > $uses_to_show ) : ?>
-							<a href="#" class="show-more"><?php
-								/* translators: %d: remaining 'uses' count */
-								printf( _n( 'Show %d more use', 'Show %d more uses', $uses->post_count - $uses_to_show, 'wporg' ),
-									number_format_i18n( $uses->post_count - $uses_to_show )
-								);
-							?></a>
-							<a href="#" class="hide-more"><?php _e( 'Hide more uses', 'wporg' ); ?></a>
-						<?php endif; ?>
-					</ul>
-				</article>
-			<?php endif; ?>
-		</section>
-	<?php endif; ?>
+	<?php echo $content; ?>
 
-	<?php if ( post_type_has_source_code() ) : ?>
-		<hr />
-		<a id="source-code"></a>
-		<section class="source-content">
-			<h2><?php _e( 'Source', 'wporg' ); ?></h2>
-			<div class="source-code-container">
-				<pre class="brush: php; toolbar: false; first-line: <?php echo esc_attr( get_post_meta( get_the_ID(), '_wp-parser_line_num', true ) ); ?>"><?php echo htmlentities( get_source_code() ); ?></pre>
-			</div>
-			<p class="source-code-links">
-				<span>
-					<a href="#" class="show-complete-source"><?php _e( 'Expand full source code', 'wporg' ); ?></a>
-					<a href="#" class="less-complete-source"><?php _e( 'Collapse full source code', 'wporg' ); ?></a>
-				</span>
-				<span><a href="<?php echo get_source_file_link(); ?>"><?php _e( 'View on Trac', 'wporg' ); ?></a></span>
-			</p>
-		</section>
-	<?php endif; ?>
-
-	<?php
-	$changelog_data = get_changelog_data();
-	if ( ! empty( $changelog_data ) ) :
-		?>
-		<hr/>
-		<section class="changelog">
-			<h2><?php _e( 'Changelog', 'wporg' ); ?></h2>
-			<ul>
-				<?php foreach ( $changelog_data as $version => $data ) : ?>
-					<li>
-						<strong><?php _e( 'Since:', 'wporg' ); ?></strong>
-						<?php printf(
-							/* translators: %s: WordPress version */
-							__( 'WordPress %s', 'wporg' ),
-							sprintf( '<a href="%1$s">%2$s</a>', esc_url( $data['since_url'] ), esc_html( $version ) )
-						); ?>
-						<?php echo $data['description']; // escaped in get_changelog_data() ?>
-					</li>
-				<?php endforeach; ?>
-			</ul>
-		</section>
-	<?php endif; ?>
-
-	<?php if ( comments_open() || '0' != get_comments_number() ) : ?>
-	<hr/>
-	<section class="user-notes">
-		<h2><?php _e( 'User Contributed Notes', 'wporg' ); ?></h2>
-		<?php comments_template(); /* TODO: add '/user-notes.php' */ ?>
-	</section>
-	<?php endif; ?>
-
 <?php endif; ?>
 
 </article>
Index: inc/template-tags.php
===================================================================
--- inc/template-tags.php	(revision 3623)
+++ inc/template-tags.php	(working copy)
@@ -1320,20 +1320,7 @@
 
 		$post_field = get_post_field( $field, $explanation, $context );
 
-		// If retrieving the explanation content for display, add the TOC if available.
-		if ( 'post_content' === $field && 'display' === $context ) {
-			if ( class_exists( 'WPorg_Handbook_TOC' ) ) :
-				$TOC = new \WPorg_Handbook_TOC( get_parsed_post_types() );
-
-				add_filter( 'the_content', array( $TOC, 'add_toc' ) );
-				$post_field = apply_filters( 'the_content', apply_filters( 'get_the_content', $post_field ) );
-				remove_filter( 'the_content', array( $TOC, 'add_toc' ) );
-			else :
-				$post_field = apply_filters( 'the_content', apply_filters( 'get_the_content', $post_field ) );
-			endif;
-		}
-
-		return $post_field;
+		return apply_filters( 'the_content', apply_filters( 'get_the_content', $post_field ) );
 	}
 
 	/**
@@ -1439,5 +1426,32 @@
 
 		echo $form;
 	}
+
+	/**
+	 * Retrieves all content for reference template parts.
+	 *
+	 * @return string Template part markup retrieved via output buffering.
+	 */
+	function get_reference_template_parts() {
+		$templates = array(
+			'description',
+			'params',
+			'return',
+			'source',
+			'changelog',
+			'explanation',
+			'related',
+			'methods',
+			'notes'
+		);
+
+		ob_start();
+
+		foreach ( $templates as $part ) {
+			get_template_part( 'reference/template', $part );
+		}
+
+		return ob_get_clean();
+	}
 }
 
Index: reference/template-changelog.php
===================================================================
--- reference/template-changelog.php	(revision 0)
+++ reference/template-changelog.php	(working copy)
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Reference Template: Changelog
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+$changelog_data = get_changelog_data();
+if ( ! empty( $changelog_data ) ) :
+	?>
+	<hr/>
+	<section class="changelog">
+		<h3><?php _e( 'Changelog', 'wporg' ); ?></h3>
+		<ul>
+			<?php foreach ( $changelog_data as $version => $data ) : ?>
+				<li>
+					<strong><?php _e( 'Since:', 'wporg' ); ?></strong>
+					<?php printf(
+					/* translators: %s: WordPress version */
+						__( 'WordPress %s', 'wporg' ),
+						sprintf( '<a href="%1$s">%2$s</a>', esc_url( $data['since_url'] ), esc_html( $version ) )
+					); ?>
+					<?php echo $data['description']; // escaped in get_changelog_data() ?>
+				</li>
+			<?php endforeach; ?>
+		</ul>
+	</section>
+<?php endif; ?>
+
Index: reference/template-description.php
===================================================================
--- reference/template-description.php	(revision 0)
+++ reference/template-description.php	(working copy)
@@ -0,0 +1,16 @@
+<?php
+/**
+ * Reference Template: Description
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+?>
+
+<section class="description">
+	<h2><?php _e( 'Description', 'wporg' ); ?></h2>
+	<?php echo get_description(); ?>
+</section>
+
Index: reference/template-explanation.php
===================================================================
--- reference/template-explanation.php	(revision 0)
+++ reference/template-explanation.php	(working copy)
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Reference Template: "More Information"
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+if ( $explanation = get_explanation_field( 'post_content', get_the_ID() ) ) :
+	?>
+	<hr/>
+	<section class="explanation">
+		<h2><?php _e( 'More Information', 'wporg' ); ?></h2>
+
+		<?php
+		// Output the explanation. Passed through 'the_content' on retrieval, thus no escaping.
+		echo apply_filters( 'the_content', apply_filters( 'get_the_content', $explanation ) );
+		?>
+	</section>
+<?php endif; ?>
Index: reference/template-methods.php
===================================================================
--- reference/template-methods.php	(revision 0)
+++ reference/template-methods.php	(working copy)
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Reference Template: Class Methods
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+if ( 'wp-parser-class' === get_post_type() ) :
+	if ( $children = get_children( array( 'post_parent' => get_the_ID(), 'post_status' => 'publish' ) ) ) :
+		usort( $children, __NAMESPACE__ . '\\compare_objects_by_name' );
+		?>
+		<hr/>
+		<section class="class-methods">
+			<h2><?php _e( 'Methods', 'wporg' ); ?></h2>
+			<ul>
+				<?php foreach ( $children as $child ) : ?>
+					<li><a href="<?php echo get_permalink( $child->ID ); ?>">
+							<?php
+							$title = get_the_title( $child );
+							$pos = ( $i = strrpos( $title, ':' ) ) ? $i + 1 : 0;
+							echo substr( $title, $pos );
+							?></a>
+						<?php if ( $excerpt = apply_filters( 'get_the_excerpt', $child->post_excerpt ) ) {
+							echo '&mdash; ' . sanitize_text_field( $excerpt );
+						} ?>
+						<?php if ( is_deprecated( $child->ID ) ) {
+							echo '&mdash; <span class="deprecated-method">' . __( 'deprecated', 'wporg' ) . '</span>';
+						} ?>
+					</li>
+				<?php endforeach; ?>
+			</ul>
+		</section>
+	<?php endif;
+endif; ?>
Index: reference/template-notes.php
===================================================================
--- reference/template-notes.php	(revision 0)
+++ reference/template-notes.php	(working copy)
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Reference Template: User Contributed Notes
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+if ( comments_open() || '0' != get_comments_number() ) :
+	?>
+	<hr/>
+	<section class="user-notes">
+		<h2><?php _e( 'User Contributed Notes', 'wporg' ); ?></h2>
+		<?php comments_template(); /* TODO: add '/user-notes.php' */ ?>
+	</section>
+<?php endif; ?>
Index: reference/template-params.php
===================================================================
--- reference/template-params.php	(revision 0)
+++ reference/template-params.php	(working copy)
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Reference Template: Parameters
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+if ( $params = get_params() ) :
+	?>
+	<hr/>
+	<section class="parameters">
+		<h3><?php _e( 'Parameters', 'wporg' ); ?></h3>
+		<dl>
+			<?php foreach ( $params as $param ) : ?>
+				<?php if ( ! empty( $param['variable'] ) ) : ?>
+					<dt><?php echo esc_html( $param['variable'] ); ?></dt>
+				<?php endif; ?>
+				<dd>
+					<p class="desc">
+						<?php if ( ! empty( $param['types'] ) ) : ?>
+							<span class="type"><?php printf( __( '(%s)', 'wporg' ), wp_kses_post( $param['types'] ) ); ?></span>
+						<?php endif; ?>
+						<?php if ( ! empty( $param['required'] ) && 'wp-parser-hook' !== get_post_type() ) : ?>
+							<span class="required"><?php printf( __( '(%s)', 'wporg' ), esc_html( $param['required'] ) ); ?></span>
+						<?php endif; ?>
+						<?php if ( ! empty( $param['content'] ) ) : ?>
+							<span class="description"><?php echo wp_kses_post( $param['content'] ); ?></span>
+						<?php endif; ?>
+					</p>
+					<?php if ( ! empty( $param['default'] ) ) : ?>
+						<p class="default"><?php _e( 'Default value:', 'wporg' );?> <?php echo htmlentities( $param['default'] ); ?></p>
+					<?php endif; ?>
+				</dd>
+			<?php endforeach; ?>
+		</dl>
+	</section>
+<?php endif; ?>
Index: reference/template-related.php
===================================================================
--- reference/template-related.php	(revision 0)
+++ reference/template-related.php	(working copy)
@@ -0,0 +1,70 @@
+<?php
+/**
+ * Reference Template: Related Functionality
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+if ( show_usage_info() ) :
+	?>
+	<hr id="related" />
+	<section class="related">
+		<h2><?php _e( 'Related', 'wporg' ); ?></h2>
+
+		<?php if ( post_type_has_uses_info() ) : ?>
+			<article class="uses">
+				<h3><?php _e( 'Uses', 'wporg' ); ?></h3>
+				<ul>
+					<?php
+					$uses = get_uses();
+					$uses_to_show = 5;
+					while ( $uses->have_posts() ) : $uses->the_post()
+						?>
+						<li>
+							<span><?php echo esc_attr( get_source_file() ); ?>:</span>
+							<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
+						</li>
+					<?php endwhile; wp_reset_postdata(); ?>
+					<?php if ( $uses->post_count > $uses_to_show ) : ?>
+						<a href="#" class="show-more"><?php
+							/* translators: %d: remaining 'uses' count */
+							printf( _n( 'Show %d more use', 'Show %d more uses', $uses->post_count - $uses_to_show, 'wporg' ),
+								number_format_i18n( $uses->post_count - $uses_to_show )
+							);
+							?></a>
+						<a href="#" class="hide-more"><?php _e( 'Hide more uses', 'wporg' ); ?></a>
+					<?php endif; ?>
+				</ul>
+			</article>
+		<?php endif; ?>
+
+		<article class="used-by">
+			<h3><?php _e( 'Used By', 'wporg' ); ?></h3>
+			<ul>
+				<?php
+				$used_by = get_used_by();
+				$used_by_to_show = 5;
+				while ( $used_by->have_posts() ) : $used_by->the_post();
+					?>
+					<li>
+						<span><?php echo esc_attr( get_source_file() ); ?>:</span>
+						<a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php if ( 'wp-parser-hook' !== get_post_type() ) : ?>()<?php endif; ?></a>
+					</li>
+				<?php endwhile; wp_reset_postdata(); ?>
+				<?php if ( $used_by->post_count > $used_by_to_show ) : ?>
+					<a href="#" class="show-more"><?php
+						/* translators: %d: remaining 'used by' count */
+						printf( _n( 'Show %d more used by', 'Show %d more used by', $used_by->post_count - $used_by_to_show, 'wporg' ),
+							number_format_i18n( $used_by->post_count - $used_by_to_show )
+						);
+						?></a>
+					<a href="#" class="hide-more"><?php _e( 'Hide more used by', 'wporg' ); ?></a>
+				<?php endif; ?>
+			</ul>
+		</article>
+	</section>
+<?php endif; ?>
+
Index: reference/template-return.php
===================================================================
--- reference/template-return.php	(revision 0)
+++ reference/template-return.php	(working copy)
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Reference Template: Return Information
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+$return = get_return();
+if ( ! empty( $return ) ) :
+	?>
+	<section class="return">
+		<h3><?php _e( 'Return', 'wporg' ); ?></h3>
+		<p><?php echo $return; ?></p>
+	</section>
+<?php endif; ?>
Index: reference/template-source.php
===================================================================
--- reference/template-source.php	(revision 0)
+++ reference/template-source.php	(working copy)
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Reference Template: Source Information
+ *
+ * @package wporg-developer
+ * @subpackage Reference
+ */
+
+namespace DevHub;
+
+$source_file = get_source_file();
+if ( ! empty( $source_file ) ) :
+	?>
+	<section class="source">
+		<h3><?php _e( 'Source', 'wporg' ); ?></h3>
+		<p>
+			<?php printf( __( 'File: %s', 'wporg' ),
+				'<a href="' . esc_url( get_source_file_archive_link( $source_file ) ) . '">' . esc_html( $source_file ) . '</a>'
+			); ?>
+		</p>
+
+		<?php if ( post_type_has_source_code() ) : ?>
+			<div class="source-code-container">
+				<pre class="brush: php; toolbar: false; first-line: <?php echo esc_attr( get_post_meta( get_the_ID(), '_wp-parser_line_num', true ) ); ?>"><?php echo htmlentities( get_source_code() ); ?></pre>
+			</div>
+			<p class="source-code-links">
+				<span>
+					<a href="#" class="show-complete-source"><?php _e( 'Expand full source code', 'wporg' ); ?></a>
+					<a href="#" class="less-complete-source"><?php _e( 'Collapse full source code', 'wporg' ); ?></a>
+				</span>
+			</p>
+		<?php endif; ?>
+		<p>
+			<a href="<?php echo get_source_file_link(); ?>"><?php _e( 'View on Trac', 'wporg' ); ?></a>
+		</p>
+	</section>
+<?php endif; ?>
Index: scss/main.scss
===================================================================
--- scss/main.scss	(revision 3623)
+++ scss/main.scss	(working copy)
@@ -1428,10 +1428,12 @@
 
 		li {
 			padding-bottom: 6px !important;
+			font-weight: 600;
 
 			ul li,
 			ul li ul li {
 				padding-bottom: 0 !important;
+				font-weight: normal;
 			}
 
 			a {
Index: stylesheets/main.css
===================================================================
--- stylesheets/main.css	(revision 3623)
+++ stylesheets/main.css	(working copy)
@@ -1527,10 +1527,12 @@
 }
 .devhub-wrap ul.items li {
   padding-bottom: 6px !important;
+  font-weight: 600;
 }
 .devhub-wrap ul.items li ul li,
 .devhub-wrap ul.items li ul li ul li {
   padding-bottom: 0 !important;
+  font-weight: normal;
 }
 .devhub-wrap ul.items li a {
   color: #555 !important;
