/* ── Industry Page Overrides ──
   Overrides for the 24 industry pages.
   Never edit style.css directly — all overrides go here.
   ─────────────────────────────────────────────────── */

/* Logo — set explicit height so navbar height is predictable.
   Natural logo is 247x70px. At 50px height the navbar totals ~66px. */
.navbar-brand img {
    height: 50px !important;
    width: auto !important;
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 40px !important;
        width: auto !important;
    }
}

/* Breadcrumb offset is handled by JavaScript (see inline script in HTML).
   This just ensures it never renders at y:0 as a fallback. */
.breadcrumb-nav {
    padding-top: 70px;
    font-size: 12px;
    padding-bottom: 6px;
    background: #fff;
}
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    padding: 4px 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumb-nav .breadcrumb-item {
    font-size: 12px;
    color: #555;
}
.breadcrumb-nav .breadcrumb-item a {
    color: #4ba29f;
    text-decoration: none;
}
.breadcrumb-nav .breadcrumb-item.active {
    color: #888;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .breadcrumb-nav .breadcrumb {
        flex-wrap: wrap;
        white-space: normal;
    }
    .breadcrumb-nav .breadcrumb-item.active {
        max-width: 100%;
    }
}

/* Hero section */
.page-banner,
section.page-banner {
    padding-top: 2rem !important;
    min-height: 440px !important;
    background-color: transparent !important;
    align-items: center !important;
    display: flex !important;
    background-size: cover;
    background-position: center;
    padding-bottom: 0 !important;
}

@media (max-width: 767px) {
    .page-banner,
    section.page-banner {
        padding-top: 1.5rem !important;
        min-height: 300px !important;
        align-items: center !important;
        padding-bottom: 0 !important;
    }
}
