/*
 * Cloudzat Unified Page Spacing
 * One vertical rhythm for normal Astra/Cloudzat singular posts and pages.
 */

body.czups-unified-spacing .site-content,
body.czups-unified-spacing #content.site-content {
    padding-top: 0 !important;
}

body.czups-unified-spacing .site-content > .ast-container {
    padding-top: 0 !important;
}

body.czups-unified-spacing #primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.czups-unified-spacing main.site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Preserve horizontal and bottom article padding while making the top gap deterministic. */
body.czups-unified-spacing main.site-main > article.ast-article-single,
body.czups-unified-spacing main.site-main > article.page,
body.czups-unified-spacing main.site-main > article.post {
    margin-top: 0 !important;
    padding-top: var(--czups-top-gap, 26px) !important;
}

/* WordPress/Astra owns the visible title and optional byline. */
body.czups-unified-spacing .entry-header {
    margin-top: 0 !important;
    margin-bottom: var(--czups-header-gap, 18px) !important;
    padding-top: 0 !important;
}

body.czups-unified-spacing .entry-header .entry-title,
body.czups-unified-spacing .entry-title {
    margin-top: 0 !important;
}

body.czups-unified-spacing .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Blackcedar Stats Lite inserts this as the first node in entry-content. */
body.czups-unified-spacing .entry-content > .bcs-social-share:first-child {
    margin-top: 0 !important;
    margin-bottom: var(--czups-share-gap, 24px) !important;
}

/* Do not let the following plugin/content wrapper add another top margin. */
body.czups-unified-spacing .entry-content > .bcs-social-share:first-child + * {
    margin-top: 0 !important;
}

body.czups-unified-spacing .entry-content > .bcs-social-share:first-child + * > :first-child {
    margin-top: 0 !important;
}

/* Pages where the share bar is disabled should still start consistently. */
body.czups-unified-spacing .entry-content > :first-child:not(.bcs-social-share) {
    margin-top: 0 !important;
}

body.czups-unified-spacing .entry-content > :first-child:not(.bcs-social-share) > :first-child {
    margin-top: 0 !important;
}

/* Prevent site-header minimum-height rules from leaking into an article's first semantic header. */
body.czups-unified-spacing .entry-content > header:first-child,
body.czups-unified-spacing .entry-content > * > header:first-child {
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    body.czups-unified-spacing main.site-main > article.ast-article-single,
    body.czups-unified-spacing main.site-main > article.page,
    body.czups-unified-spacing main.site-main > article.post {
        padding-top: var(--czups-top-gap, 18px) !important;
    }
}
