/**
 * Single-post title size.
 *
 * Renders the post <h1> a bit smaller than the raw theme size. Loaded on
 * is_single(); the Customizer "Post title font size" option overrides it
 * with !important when set.
 */
.entry-title {
    font-size: 29px;
}

@media (min-width: 1024px) {
    .entry-title {
        font-size: 38px;
    }
}
