Index: src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
===================================================================
--- src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss	(revision 45371)
+++ src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss	(working copy)
@@ -228,22 +228,12 @@
 		padding: 0;
 		list-style: none;
 
-		li {
-			color: $color__text-light;
+		li > a {
 			@include font-family( $font__heading );
 			font-size: calc(#{$font__size_base} * #{$font__size-ratio});
 			font-weight: bold;
 			line-height: $font__line-height-heading;
-			padding-bottom: ( .75 * $size__spacing-unit );
-
-			&.menu-item-has-children,
-			&:last-child {
-				padding-bottom: 0;
-			}
-
-			a {
-				text-decoration: none;
-			}
+			text-decoration: none;
 		}
 	}
 
@@ -270,9 +260,36 @@
 		@include nestedSubMenuPadding();
 	}
 
-	//! Latest posts grid view
-	.wp-block-latest-posts.is-grid {
+	//! Latest posts
+	.wp-block-latest-posts {
+
+		.wp-block-latest-posts__post-date {
+			@include font-family( $font__heading );
+			font-size: $font__size-xs;
+			color: $color__text-light;
+			line-height: 1.2;
+		}
+
+		.wp-block-latest-posts__post-full-content,
+		.wp-block-latest-posts__post-excerpt {
+			margin-top: $size__spacing-unit;
+			margin-bottom: $size__spacing-unit;
+		}
+
 		li {
+			padding-bottom: ( .5 * $size__spacing-unit );
+
+			&.menu-item-has-children,
+			&:last-child {
+				padding-bottom: 0;
+			}
+
+			:not(:last-child) .wp-block-latest-posts__post-excerpt {
+				padding-bottom: ( .5 * $size__spacing-unit );
+			}
+		}
+
+		&.is-grid li {
 			border-top: 2px solid $color__border;
 			padding-top: (1 * $size__spacing-unit);
 			margin-bottom: (2 * $size__spacing-unit);
Index: src/wp-content/themes/twentynineteen/style-editor.css
===================================================================
--- src/wp-content/themes/twentynineteen/style-editor.css	(revision 45371)
+++ src/wp-content/themes/twentynineteen/style-editor.css	(working copy)
@@ -1172,28 +1172,13 @@
   list-style-type: none;
 }
 
-ul.wp-block-archives li,
-.wp-block-categories li,
-.wp-block-latest-posts li {
-  color: #767676;
+ul.wp-block-archives li > a,
+.wp-block-categories li > a,
+.wp-block-latest-posts li > a {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
   font-size: calc(22px * 1.125);
   font-weight: bold;
   line-height: 1.2;
-  padding-bottom: 0.75rem;
-}
-
-ul.wp-block-archives li.menu-item-has-children, ul.wp-block-archives li:last-child,
-.wp-block-categories li.menu-item-has-children,
-.wp-block-categories li:last-child,
-.wp-block-latest-posts li.menu-item-has-children,
-.wp-block-latest-posts li:last-child {
-  padding-bottom: 0;
-}
-
-ul.wp-block-archives li a,
-.wp-block-categories li a,
-.wp-block-latest-posts li a {
   text-decoration: none;
 }
 
@@ -1224,7 +1209,37 @@
   margin-bottom: -0.75rem;
 }
 
-/** === Latest Posts grid view === */
+/** === Latest Posts === */
+.wp-block-latest-posts .wp-block-latest-posts__post-date {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+  font-size: 0.71111em;
+  color: #767676;
+  line-height: 1.2;
+}
+
+.wp-block-latest-posts .wp-block-latest-posts__post-full-content,
+.wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
+  margin-top: 22px;
+  margin-bottom: 22px;
+}
+
+.wp-block-latest-posts .wp-block-latest-posts__post-full-content > div > p:first-child,
+.wp-block-latest-posts .wp-block-latest-posts__post-excerpt > div > p:first-child {
+  margin-top: 22px;
+}
+
+.wp-block-latest-posts li {
+  padding-bottom: 0.5rem;
+}
+
+.wp-block-latest-posts li.menu-item-has-children, .wp-block-latest-posts li:last-child {
+  padding-bottom: 0;
+}
+
+.wp-block-latest-posts li :not(:last-child) .wp-block-latest-posts__post-excerpt {
+  padding-bottom: 0.5rem;
+}
+
 .wp-block-latest-posts.is-grid li {
   border-top: 2px solid #ccc;
   padding-top: 1rem;
Index: src/wp-content/themes/twentynineteen/style-editor.scss
===================================================================
--- src/wp-content/themes/twentynineteen/style-editor.scss	(revision 45371)
+++ src/wp-content/themes/twentynineteen/style-editor.scss	(working copy)
@@ -625,19 +625,12 @@
 	}
 
 	li {
-		color: $color__text-light;
-		@include font-family( $font__heading );
-		font-size: calc(#{$font__size_base} * #{$font__size-ratio});
-		font-weight: bold;
-		line-height: $font__line-height-heading;
-		padding-bottom: ( .75 * $size__spacing-unit );
 
-		&.menu-item-has-children,
-		&:last-child {
-			padding-bottom: 0;
-		}
-
-		a {
+		> a {
+			@include font-family( $font__heading );
+			font-size: calc(#{$font__size_base} * #{$font__size-ratio});
+			font-weight: bold;
+			line-height: $font__line-height-heading;
 			text-decoration: none;
 		}
 
@@ -662,8 +655,40 @@
 
 }
 
-/** === Latest Posts grid view === */
-.wp-block-latest-posts.is-grid {
+/** === Latest Posts === */
+.wp-block-latest-posts {
+
+	.wp-block-latest-posts__post-date {
+		@include font-family( $font__heading );
+		font-size: $font__size-xs;
+		color: $color__text-light;
+		line-height: 1.2;
+	}
+
+	.wp-block-latest-posts__post-full-content,
+	.wp-block-latest-posts__post-excerpt {
+		margin-top: $font__size_base;
+		margin-bottom: $font__size_base;
+
+		> div > p:first-child {
+			margin-top: $font__size_base;
+		}
+	}
+
+	li {
+		padding-bottom: ( .5 * $size__spacing-unit );
+
+		&.menu-item-has-children,
+		&:last-child {
+			padding-bottom: 0;
+		}
+
+		:not(:last-child) .wp-block-latest-posts__post-excerpt {
+			padding-bottom: ( .5 * $size__spacing-unit );
+		}
+	}
+
+	&.is-grid {
 		li {
 			border-top: 2px solid $color__border;
 			padding-top: (1 * $size__spacing-unit);
@@ -681,6 +706,7 @@
 			}
 		}
 	}
+}
 
 /** === Latest Comments === */
 
Index: src/wp-content/themes/twentynineteen/style-rtl.css
===================================================================
--- src/wp-content/themes/twentynineteen/style-rtl.css	(revision 45371)
+++ src/wp-content/themes/twentynineteen/style-rtl.css	(working copy)
@@ -5472,28 +5472,13 @@
   list-style: none;
 }
 
-.entry .entry-content .wp-block-archives li,
-.entry .entry-content .wp-block-categories li,
-.entry .entry-content .wp-block-latest-posts li {
-  color: #767676;
+.entry .entry-content .wp-block-archives li > a,
+.entry .entry-content .wp-block-categories li > a,
+.entry .entry-content .wp-block-latest-posts li > a {
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
   font-size: calc(22px * 1.125);
   font-weight: bold;
   line-height: 1.2;
-  padding-bottom: 0.75rem;
-}
-
-.entry .entry-content .wp-block-archives li.menu-item-has-children, .entry .entry-content .wp-block-archives li:last-child,
-.entry .entry-content .wp-block-categories li.menu-item-has-children,
-.entry .entry-content .wp-block-categories li:last-child,
-.entry .entry-content .wp-block-latest-posts li.menu-item-has-children,
-.entry .entry-content .wp-block-latest-posts li:last-child {
-  padding-bottom: 0;
-}
-
-.entry .entry-content .wp-block-archives li a,
-.entry .entry-content .wp-block-categories li a,
-.entry .entry-content .wp-block-latest-posts li a {
   text-decoration: none;
 }
 
@@ -5522,6 +5507,31 @@
   counter-increment: submenu;
 }
 
+.entry .entry-content .wp-block-latest-posts .wp-block-latest-posts__post-date {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
+  font-size: 0.71111em;
+  color: #767676;
+  line-height: 1.2;
+}
+
+.entry .entry-content .wp-block-latest-posts .wp-block-latest-posts__post-full-content,
+.entry .entry-content .wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
+  margin-top: 1rem;
+  margin-bottom: 1rem;
+}
+
+.entry .entry-content .wp-block-latest-posts li {
+  padding-bottom: 0.5rem;
+}
+
+.entry .entry-content .wp-block-latest-posts li.menu-item-has-children, .entry .entry-content .wp-block-latest-posts li:last-child {
+  padding-bottom: 0;
+}
+
+.entry .entry-content .wp-block-latest-posts li :not(:last-child) .wp-block-latest-posts__post-excerpt {
+  padding-bottom: 0.5rem;
+}
+
 .entry .entry-content .wp-block-latest-posts.is-grid li {
   border-top: 2px solid #ccc;
   padding-top: 1rem;
