
/* Custom MaxMag child theme CSS */

/* Typography Fix */
body {
    font-size: 17px;
    line-height: 1.7;
}

/* Remove space below <p> that only contains an <img> (modern browsers) */
p:has(img:only-child) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Firefox fallback */
p > img:only-child {
    display: block;
    margin-bottom: 0 !important;
}

/* Remove space for empty WordPress image captions */
.wp-caption .wp-caption-text:empty {
    display: none;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove bottom margin from figure if there's no caption */
figure.wp-caption:not(:has(figcaption)) {
    margin-bottom: 0 !important;
}

/* Force override in content area if needed */
.entry-content p:has(img:only-child) {
    margin-bottom: 0 !important;
}
