/*
Theme Name: Astra Child
Template: astra
Description: Child theme of Astra with targeted CSS fixes
Version: 1.0
*/

/* Only target problematic elements that need spacing fixes */

/* Reset heading spacing if inconsistent */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Reset paragraph spacing if inconsistent */
.entry-content p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Reset list spacing */
.entry-content ul,
.entry-content ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Remove excessive spacing from specific problem elements */
.wp-block-group {
    margin-bottom: 1.5rem;
}

/* Ensure last elements don't have bottom margin */
.entry-content > *:last-child,
.wp-block-group > *:last-child {
    margin-bottom: 0;
}

/* Quote styling with italic serif font */
blockquote,
.wp-block-quote,
.wp-block-pullquote {
    font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

