/**
 * 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: 31px;
}

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