/*
 * burg-bentheim.de — static clone
 *
 * The only stylesheet written for this clone. Every other rule on the site is the
 * original's own, self-hosted and unchanged.
 *
 * WordPress rendered a run of hidden fields after the last row of every Forminator form
 * (forminator_nonce, _wp_http_referer, form_id, page_id, form_type, current_url,
 * render_id, action). They are CMS wiring and carry the old host, so they are gone — and
 * with them the reason `.forminator-row-last` was never `:last-child`. Forminator's own
 * grid stylesheet gives a row a bottom margin only while it is NOT the last child:
 *
 *   .forminator-ui.forminator-custom-form[data-grid=open] .forminator-row:not(:last-child)
 *       { margin-bottom: 20px }
 *   @media (min-width: 783px) { … { margin-bottom: 30px } }
 *
 * so removing them silently dropped 30 px (20 px below 783 px) from the bottom of every
 * form. Measured on /en/job-advertisements/: the form's widget container came out 925.88 px
 * against the original's 955.88 px. The two declarations below restore exactly the values
 * Forminator's own rule produces on the original, and nothing else.
 */
.forminator-ui.forminator-custom-form[data-grid="open"] .forminator-row.forminator-row-last {
    margin-bottom: 20px;
}

@media (min-width: 783px) {
    .forminator-ui.forminator-custom-form[data-grid="open"] .forminator-row.forminator-row-last {
        margin-bottom: 30px;
    }
}
