Index: src/wp-admin/css/site-health.css
===================================================================
diff --git a/src/wp-admin/css/site-health.css b/src/wp-admin/css/site-health.css
--- a/src/wp-admin/css/site-health.css	(revision 50826)
+++ b/src/wp-admin/css/site-health.css	(date 1620416151743)
@@ -30,11 +30,16 @@
 }
 
 .health-check-title-section {
+	clear: both;
+	text-align: center;
+	padding-top: 8px;
+}
+.site-health .health-check-title-section {
 	display: flex;
 	align-items: center;
 	justify-content: center;
-	clear: both;
 }
+
 
 .site-health-progress-wrapper {
 	margin-bottom: 1rem;
@@ -458,6 +463,27 @@
 	flex-shrink: 0;
 }
 
+/* Styling unique to the dashboard widget */
+#dashboard_site_health .site-health-details {
+	border-left: 1px solid #c3c4c7;
+	padding-left: 16px;
+}
+#dashboard_site_health .inside {
+	display: grid;
+	grid-template-columns: 1fr 2fr;
+	grid-auto-rows: minmax(64px, auto);
+	column-gap: 16px;
+	align-items: center;
+}
+@media screen and (max-width: 480px) {
+	#dashboard_site_health .inside {
+		grid-template-columns: 100%;
+	}
+	#dashboard_site_health .site-health-details {
+		border-left: none;
+	}
+}
+
 @media screen and (max-width: 782px) {
 	.health-check-body {
 		margin: 0 12px;
Index: src/wp-admin/includes/dashboard.php
===================================================================
diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
--- a/src/wp-admin/includes/dashboard.php	(revision 50826)
+++ b/src/wp-admin/includes/dashboard.php	(date 1620412635152)
@@ -1907,48 +1907,50 @@
 		</div>
 	</div>
 
-	<?php if ( false === $get_issues ) : ?>
-		<p>
-			<?php
-			printf(
-				/* translators: %s: URL to Site Health screen. */
-				__( 'Site health checks will automatically run periodically to gather information about your site. You can also <a href="%s">visit the Site Health screen</a> to gather information about your site now.' ),
-				esc_url( admin_url( 'site-health.php' ) )
-			);
-			?>
-		</p>
-	<?php else : ?>
-		<p>
-			<?php if ( $issues_total <= 0 ) : ?>
-				<?php _e( 'Great job! Your site currently passes all site health checks.' ); ?>
-			<?php elseif ( 1 === (int) $issue_counts['critical'] ) : ?>
-				<?php _e( 'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.' ); ?>
-			<?php elseif ( $issue_counts['critical'] > 1 ) : ?>
-				<?php _e( 'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.' ); ?>
-			<?php elseif ( 1 === (int) $issue_counts['recommended'] ) : ?>
-				<?php _e( 'Your site&#8217;s health is looking good, but there is still one thing you can do to improve its performance and security.' ); ?>
-			<?php else : ?>
-				<?php _e( 'Your site&#8217;s health is looking good, but there are still some things you can do to improve its performance and security.' ); ?>
-			<?php endif; ?>
-		</p>
-	<?php endif; ?>
+	<div class="site-health-details">
+		<?php if ( false === $get_issues ) : ?>
+			<p>
+				<?php
+				printf(
+					/* translators: %s: URL to Site Health screen. */
+					__( 'Site health checks will automatically run periodically to gather information about your site. You can also <a href="%s">visit the Site Health screen</a> to gather information about your site now.' ),
+					esc_url( admin_url( 'site-health.php' ) )
+				);
+				?>
+			</p>
+		<?php else : ?>
+			<p>
+				<?php if ( $issues_total <= 0 ) : ?>
+					<?php _e( 'Great job! Your site currently passes all site health checks.' ); ?>
+				<?php elseif ( 1 === (int) $issue_counts['critical'] ) : ?>
+					<?php _e( 'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.' ); ?>
+				<?php elseif ( $issue_counts['critical'] > 1 ) : ?>
+					<?php _e( 'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.' ); ?>
+				<?php elseif ( 1 === (int) $issue_counts['recommended'] ) : ?>
+					<?php _e( 'Your site&#8217;s health is looking good, but there is still one thing you can do to improve its performance and security.' ); ?>
+				<?php else : ?>
+					<?php _e( 'Your site&#8217;s health is looking good, but there are still some things you can do to improve its performance and security.' ); ?>
+				<?php endif; ?>
+			</p>
+		<?php endif; ?>
 
-	<?php if ( $issues_total > 0 && false !== $get_issues ) : ?>
-		<p>
-			<?php
-			printf(
-				/* translators: 1: Number of issues. 2: URL to Site Health screen. */
-				_n(
-					'Take a look at the <strong>%1$d item</strong> on the <a href="%2$s">Site Health screen</a>.',
-					'Take a look at the <strong>%1$d items</strong> on the <a href="%2$s">Site Health screen</a>.',
-					$issues_total
-				),
-				$issues_total,
-				esc_url( admin_url( 'site-health.php' ) )
-			);
-			?>
-		</p>
-	<?php endif; ?>
+		<?php if ( $issues_total > 0 && false !== $get_issues ) : ?>
+			<p>
+				<?php
+				printf(
+					/* translators: 1: Number of issues. 2: URL to Site Health screen. */
+					_n(
+						'Take a look at the <strong>%1$d item</strong> on the <a href="%2$s">Site Health screen</a>.',
+						'Take a look at the <strong>%1$d items</strong> on the <a href="%2$s">Site Health screen</a>.',
+						$issues_total
+					),
+					$issues_total,
+					esc_url( admin_url( 'site-health.php' ) )
+				);
+				?>
+			</p>
+		<?php endif; ?>
+	</div>
 
 	<?php
 }
