/*
Theme Name: INCITE Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Official child theme for INCITE Online. Use this for site-specific CSS and PHP — do not edit the Divi parent theme.
Author: INCITE
Template: Divi
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: incite-divi-child
Requires at least: 6.0
Requires PHP: 7.4
*/

/* Blog module excerpt: Divi can output multiple <p> inside .post-content-inner (wpautop).
   Markup: article.et_pb_post > … > .post-content > .post-content-inner > p + p + …
   Hide every direct <p> after the first. */
html body .et_pb_blog .et_pb_post .post-content .post-content-inner > p:not(:first-of-type),
html body .et_pb_posts .et_pb_post .post-content .post-content-inner > p:not(:first-of-type) {
	display: none !important;
}

html body .et_pb_blog .et_pb_post .post-content .post-content-inner > p:first-of-type,
html body .et_pb_posts .et_pb_post .post-content .post-content-inner > p:first-of-type {
	padding-bottom: 0px;
}
