/* header-lp.css
 *
 * This is deliberately small. Colors, fonts, button styles, and logo
 * sizing all come from header-v2.css (.hv2-header, .hv2-logo, .hv2-btn,
 * .hv2-btn-primary) which is already loaded site-wide - reused as-is so
 * this never visually drifts from the main site's brand.
 *
 * The only genuinely new thing here is the layout container. header-v2's
 * own .hv2-header-container uses a 3-column grid (logo / nav / actions)
 * built for a nav that doesn't exist on this page, so it isn't reused -
 * a plain flex row is simpler and has zero cascade risk against the
 * original rule.
 */

.hv2-body.lp-hf-body { padding-top: 80px; }

.lp-hf-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1100;
    background: #fff;
    padding: 10px 16px;
}
.lp-hf-skip-link:focus {
    left: 10px;
}

.lp-hf-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-hf-header-inner .hv2-logo img {
    height: 28px;
    width: auto;
    display: block;
}

@media (max-width: 968px) {
    .hv2-body.lp-hf-body { padding-top: 70px; }
    .lp-hf-header-inner {
        height: 70px;
        padding: 0 16px 0 24px;
    }
    .lp-hf-header-inner .hv2-logo img {
        height: 26px;
    }
    .lp-hf-header-inner .hv2-btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .lp-hf-header-inner {
        padding: 0 12px 0 16px;
    }
}
