/**
 * footer-fix.css — fix: footer credits text clipped below the orange bar. (2026-06-24)
 *
 * The Theme Builder footer text module ships Design > Spacing > Bottom Margin = -36px
 * (Divi inline CSS: .et-db #et-boc .et-l .et_pb_text_0_tb_footer{margin-bottom:-36px}).
 * That negative margin collapses the footer column to its 1px min-height, so the orange
 * row shrinks to padding-only and the ~27px text spills ~11px below the bar.
 * This higher-specificity (1,4,0) !important rule neutralises it.
 *
 * Why a dedicated file (not style.css): assets here are served with a 10-year cache and
 * FlyingPress strips the ?ver query, so edits to style.css don't reach RETURNING visitors
 * until their browser cache refreshes. A brand-new filename has never been cached by
 * anyone, so EVERY visitor (new or returning) gets this fix on their next page view.
 */
.et-db #et-boc .et-l .et_pb_text.et_pb_text_0_tb_footer {
    margin-bottom: 0 !important;
}
