diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index acaaa2a009..901fc08f01 100644
--- a/src/wp-admin/about.php
+++ b/src/wp-admin/about.php
@@ -20,10 +20,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 
 		<div class="about__header">
 			<div class="about__header-title">
-				<h1>
+				<p>
 					<?php _e( 'WordPress' ); ?>
 					<span><?php echo $display_version; ?></span>
-				</h1>
+				</p>
 			</div>
 
 			<div class="about__header-text">
@@ -41,7 +41,8 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 		</div>
 
 		<div class="about__section is-feature has-accent-background-color">
-			<p><?php _e( 'Say hello to more and better.' ); ?></p>
+			<h1><?php _e( 'Say hello to more and better.' ); ?></h1>
+
 			<p><?php _e( 'More ways to make your pages come alive. With easier ways to get it all done and looking better than ever&mdash;and boosts in speed you can feel.' ); ?></p>
 		</div>
 
diff --git a/src/wp-admin/credits.php b/src/wp-admin/credits.php
index 60b1ebb004..c15d86e4d2 100644
--- a/src/wp-admin/credits.php
+++ b/src/wp-admin/credits.php
@@ -22,10 +22,10 @@ $credits = wp_credits();
 
 	<div class="about__header">
 		<div class="about__header-title">
-			<h1>
+			<p>
 				<?php _e( 'WordPress' ); ?>
 				<span><?php echo $display_version; ?></span>
-			</h1>
+			</p>
 		</div>
 
 		<div class="about__header-text">
@@ -42,11 +42,12 @@ $credits = wp_credits();
 		</nav>
 	</div>
 
-	<div class="about__section">
+	<div class="about__section is-feature">
 		<div class="column">
-			<h2><?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?></h2>
+			<h1><?php _e( 'Credits' ); ?></h1>
 
 			<p>
+				<?php _e( 'WordPress is created by a worldwide team of passionate individuals.' ); ?>
 				<?php
 				if ( ! $credits ) {
 					printf(
diff --git a/src/wp-admin/css/about.css b/src/wp-admin/css/about.css
index 51e49261d6..960a577e04 100644
--- a/src/wp-admin/css/about.css
+++ b/src/wp-admin/css/about.css
@@ -99,6 +99,7 @@
 .about__section {
 	background: #f3f4f5;
 	background: var(--background);
+	clear: both;
 }
 
 .about__container .has-accent-background-color {
@@ -302,14 +303,18 @@
 	line-height: 1.4;
 }
 
-.about__container h1 {
-	font-size: 5em;
-	line-height: 1;
+.about__section h1 {
+	font-weight: 600;
+	margin: 0 0 1em;
+	padding: 0;
+	color: inherit;
 }
 
+.about__container h1,
 .about__container h2 {
 	margin-top: 0;
 	font-size: 1.4em;
+	line-height: 1.4;
 }
 
 .about__container h3 {
@@ -395,17 +400,7 @@
 	text-align: center;
 }
 
-@media screen and (max-width: 782px) {
-	.about__container h1 {
-		font-size: 4em;
-	}
-}
-
 @media screen and (max-width: 480px) {
-	.about__container h1 {
-		font-size: 3.2em;
-	}
-
 	.about__section.is-feature {
 		font-size: 1.4em;
 		font-weight: 500;
@@ -452,6 +447,13 @@
 	-ms-writing-mode: tb-rl;
 	writing-mode: vertical-rl;
 	transform: rotate(180deg);
+	direction: ltr;
+}
+
+/* rtl:ignore */
+.rtl .about__header-title {
+	transform: none;
+	direction: rtl;
 }
 
 /* Needs to be inline-block to use vertical-align, needs specificity to override flex. */
@@ -460,13 +462,16 @@
 	vertical-align: top;
 }
 
-.about__header-title h1 {
+.about__header-title p {
+	margin: 0;
 	padding: 0;
+	font-size: 5em;
+	line-height: 1;
 	color: #1730e5;
 	color: var(--accent-1);
 }
 
-.about__header-title h1 span {
+.about__header-title p span {
 	display: block;
 	font-weight: 600;
 	font-size: 1.2em;
@@ -543,13 +548,11 @@
 	.about__container .about__header-text {
 		font-size: 1.4em;
 	}
-}
 
-@media screen and (max-width: 600px) {
 	.about__header {
 		display: block;
-		min-height: unset;
-		max-height: unset;
+		min-height: none;
+		max-height: none;
 		height: auto;
 	}
 
@@ -561,11 +564,19 @@
 		padding-top: 80%;
 		padding-bottom: 0;
 		-webkit-writing-mode: initial;
-		-ms-writing-mode: initial;
+		-ms-writing-mode: lr-tb;
 		writing-mode: initial;
 		transform: none;
 	}
 
+	.rtl .about__header-title {
+		-ms-writing-mode: rl-tb;
+	}
+
+	.about__header-title p {
+		font-size: 4em;
+	}
+
 	.about__header-text {
 		text-align: left;
 	}
@@ -578,6 +589,10 @@
 }
 
 @media screen and (max-width: 480px) {
+	.about__header-title p {
+		font-size: 3.2em;
+	}
+
 	.about__header-navigation .nav-tab {
 		float: none;
 		display: block;
diff --git a/src/wp-admin/freedoms.php b/src/wp-admin/freedoms.php
index c9bc298866..454a647c0d 100644
--- a/src/wp-admin/freedoms.php
+++ b/src/wp-admin/freedoms.php
@@ -25,10 +25,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 
 	<div class="about__header">
 		<div class="about__header-title">
-			<h1>
+			<p>
 				<?php _e( 'WordPress' ); ?>
 				<span><?php echo $display_version; ?></span>
-			</h1>
+			</p>
 		</div>
 
 		<div class="about__header-text">
@@ -46,7 +46,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 	</div>
 
 	<div class="about__section has-subtle-background-color is-feature">
-		<h2><?php _e( 'Freedoms' ); ?></h2>
+		<h1><?php _e( 'Freedoms' ); ?></h1>
 
 		<p class="about-description">
 		<?php
diff --git a/src/wp-admin/privacy.php b/src/wp-admin/privacy.php
index 09248661bb..2ef4258e33 100644
--- a/src/wp-admin/privacy.php
+++ b/src/wp-admin/privacy.php
@@ -19,10 +19,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 
 	<div class="about__header">
 		<div class="about__header-title">
-			<h1>
+			<p>
 				<?php _e( 'WordPress' ); ?>
 				<span><?php echo $display_version; ?></span>
-			</h1>
+			</p>
 		</div>
 
 		<div class="about__header-text">
@@ -41,7 +41,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 
 	<div class="about__section">
 		<div class="column">
-			<h2><?php _e( 'Privacy' ); ?></h2>
+			<h1><?php _e( 'Privacy' ); ?></h1>
 
 			<p><?php _e( 'From time to time, your WordPress site may send data to WordPress.org &#8212; including, but not limited to &#8212; the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p>
 
