/*
 * Overrides for the JazzHR careers embed.
 *
 * iframemanager is built for fixed-aspect-ratio embeds (videos): it wraps the
 * iframe in a 16:9 box and pins the iframe to height:100%. The JazzHR
 * application form is instead variable-height and reports its own pixel height
 * via window.resizeResumatorIframe (see cookieconsent-config.js), which sizes
 * the container. Here we make the container full-width and, once the iframe is
 * loaded (.c-h-b), drop the aspect-ratio spacer so the container's explicit
 * height takes over.
 *
 * Must be loaded AFTER iframemanager.css so these win on equal specificity.
 */
div[data-service="jazzhr"] {
    display: block;
    width: 100%;
}

div[data-service="jazzhr"].c-h-b {
    overflow: visible;
}

div[data-service="jazzhr"].c-h-b::before {
    display: none;
}
