/* =====================================================
   BUSINESS PAGES CLEANED + CONTAINER UPDATED CSS
   Bootstrap-style container system applied site-wide
===================================================== */

/* =====================================================
   BUSINESS PAGES GLOBAL BASE
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --bp-navy: #002b5c;
    --bp-dark-navy: #001f45;
    --bp-deep-navy: #001735;
    --bp-blue: #063f7a;
    --bp-gold: #d8a845;
    --bp-light-blue: #eef5fb;
    --bp-soft: #f4f7fb;
    --bp-border: #d8e1ec;
    --bp-text: #0b2341;
    --bp-muted: #65758b;
    --bp-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--bp-soft);
    color: var(--bp-text);
}

body {
    font-size: 14px;
    line-height: 1.5;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

a,
button,
input,
select,
textarea {
    font-family: 'Poppins', Arial, sans-serif;
}

a,
button {
    transition: 0.2s ease;
}

table {
    max-width: 100%;
}

/* Main site container */
.bp-container {
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

/* =====================================================
   BUSINESS PAGES HEADER
===================================================== */

.bp-site-header {
    position: relative;
    z-index: 50;
}

/* TOP BAR */

.bp-top-strip {
    background: var(--bp-deep-navy);
    color: #ffffff;
    min-height: 34px;
}

.bp-top-strip-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bp-top-left span {
    font-size: 12px;
    color: rgba(255,255,255,.82);
}

.bp-top-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.bp-top-links a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.bp-top-links a:hover {
    color: var(--bp-gold);
}

/* MAIN HEADER */

.bp-main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--bp-border);
    padding: 20px 0;
}

.bp-main-header-inner {
    display: grid;
    grid-template-columns: 330px 1fr auto;
    align-items: center;
    gap: 35px;
}

.bp-header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.bp-header-logo img {
    width: 280px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

/* SEARCH */

.bp-header-search {
    display: grid;
    grid-template-columns: 190px 1fr 150px;
    border: 1px solid var(--bp-border);
    height: 48px;
    background: #ffffff;
}

.bp-header-search select,
.bp-header-search input {
    border: 0;
    border-right: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-text);
    padding: 0 18px;
    outline: none;
    font-size: 14px;
    min-width: 0;
}

.bp-header-search select:focus,
.bp-header-search input:focus {
    background: #f8fbff;
}

.bp-header-search button {
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.bp-header-search button:hover {
    background: var(--bp-navy);
}

/* MOBILE BUTTON */

.bp-mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-dark-navy);
    font-size: 20px;
    cursor: pointer;
}

/* NAV */

.bp-nav-bar {
    background: var(--bp-dark-navy);
}

.bp-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.bp-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

.bp-nav-menu a:hover,
.bp-nav-menu a.active {
    background: rgba(255,255,255,.12);
}

/* =====================================================
   BUSINESS PAGES HOMEPAGE
===================================================== */

.bp-home-portal {
    background: var(--bp-soft);
    color: var(--bp-text);
}

.bp-home-main {
    padding: 14px 0 0;
}

/* TOP GRID */
.bp-home-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 245px;
    grid-template-areas:
        "sidebar hero guide"
        "sidebar tools tools"
        "sidebar featured featured";
    gap: 18px;
    align-items: start;
}

/* SIDEBAR */
.bp-category-sidebar {
    grid-area: sidebar;
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 13px;
    min-height: 690px;
}

.bp-category-sidebar h3 {
    margin: 0 0 10px;
    color: var(--bp-navy);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-category-sidebar a {
    min-height: 29px;
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 6px;
    color: var(--bp-text);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #edf2f8;
}

.bp-category-sidebar a i {
    color: var(--bp-dark-navy);
    font-size: 13px;
}

.bp-category-sidebar a span {
    color: var(--bp-muted);
}

.bp-category-sidebar a:hover {
    color: var(--bp-navy);
    font-weight: 800;
}

.bp-category-sidebar .bp-view-all-cats {
    margin-top: 12px;
    min-height: 36px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bp-border);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

/* HERO */
.bp-hero-banner {
    grid-area: hero;
    min-height: 335px;
    background:
        radial-gradient(circle at 72% 45%, rgba(216,168,69,.45), transparent 18%),
        linear-gradient(110deg, #050b13 0%, #001f45 55%, #062e62 100%);
    border: 1px solid var(--bp-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 52px 62px;
}

.bp-hero-banner::after {
    content: "★";
    position: absolute;
    right: 86px;
    top: 42px;
    color: var(--bp-gold);
    font-size: 138px;
    text-shadow: 0 18px 30px rgba(0,0,0,.35);
    transform: rotate(-8deg);
}

.bp-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.bp-hero-copy h1 {
    color: var(--bp-gold);
    font-size: 46px;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 18px;
    font-weight: 900;
}

.bp-hero-copy p {
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
    margin: 0 0 28px;
}

.bp-hero-copy a {
    display: inline-flex;
    min-width: 150px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-hero-copy a:hover {
    background: #ffffff;
    color: var(--bp-dark-navy);
}

.bp-hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.bp-hero-dots span {
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    opacity: .9;
}

.bp-hero-arrow {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.bp-hero-arrow.left {
    left: 12px;
}

.bp-hero-arrow.right {
    right: 12px;
}

/* RIGHT GUIDE */
.bp-buyers-guide-card {
    grid-area: guide;
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 13px;
    text-align: center;
}

.bp-buyers-cover {
    min-height: 240px;
    background:
        linear-gradient(150deg, rgba(0,23,53,.95), rgba(0,43,92,.75)),
        url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=700");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 24px 18px;
    text-align: left;
}

.bp-buyers-cover h3 {
    font-size: 21px;
    line-height: 1.15;
    margin: 0;
    text-transform: uppercase;
}

.bp-buyers-cover h3 strong {
    font-size: 33px;
}

.bp-buyers-cover span {
    display: block;
    margin-top: 8px;
    color: var(--bp-gold);
    font-size: 17px;
    font-weight: 900;
}

.bp-buyers-cover p {
    margin-top: 57px;
    font-size: 12px;
    line-height: 1.35;
}

.bp-buyers-guide-card > a {
    display: block;
    margin-top: 12px;
    color: var(--bp-dark-navy);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.bp-buyers-guide-card > a:hover {
    color: var(--bp-blue);
}

/* QUICK TOOLS */
.bp-quick-tools {
    grid-area: tools;
    background: #fff;
    border: 1px solid var(--bp-border);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.bp-quick-tools a {
    min-height: 96px;
    border-right: 1px solid var(--bp-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: var(--bp-dark-navy);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.bp-quick-tools a:last-child {
    border-right: 0;
}

.bp-quick-tools a:hover {
    background: var(--bp-light-blue);
}

.bp-quick-tools i {
    width: 38px;
    height: 38px;
    background: var(--bp-dark-navy);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* FEATURED CATEGORIES */
.bp-featured-categories {
    grid-area: featured;
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 14px;
}

.bp-section-head,
.bp-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.bp-section-head h2,
.bp-card-head h3 {
    margin: 0;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-section-head a,
.bp-card-head a {
    background: var(--bp-dark-navy);
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
}

.bp-section-head a:hover,
.bp-card-head a:hover {
    background: var(--bp-blue);
}

.bp-featured-cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.bp-featured-cat {
    background: #fff;
    border: 1px solid var(--bp-border);
    text-decoration: none;
    color: var(--bp-text);
    overflow: hidden;
}

.bp-featured-cat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,31,69,.08);
}

.bp-featured-cat img {
    width: 100%;
    height: 98px;
    object-fit: cover;
}

.bp-featured-cat span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

/* OPPORTUNITY CENTRE */
.bp-opportunity-centre {
    margin-top: 18px;
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 14px;
}

.bp-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.bp-opportunity-grid a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--bp-dark-navy);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.bp-opportunity-grid a:hover {
    background: var(--bp-light-blue);
}

.bp-opportunity-grid i {
    font-size: 25px;
}

/* CONTENT DASHBOARD */
.bp-content-dashboard {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.05fr 1.05fr .9fr 1.45fr;
    gap: 16px;
}

.bp-dash-card {
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 14px;
}

.bp-small-news {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    color: var(--bp-text);
    text-decoration: none;
    margin-bottom: 13px;
}

.bp-small-news img {
    width: 86px;
    height: 66px;
    object-fit: cover;
}

.bp-small-news strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
}

.bp-small-news span {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    margin-top: 5px;
}

.bp-small-news:hover strong {
    color: var(--bp-blue);
}

/* GUIDE MINI */
.bp-guide-cover-mini {
    min-height: 235px;
    background:
        linear-gradient(160deg, rgba(0,23,53,.95), rgba(0,43,92,.7)),
        url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=700");
    background-size: cover;
    color: #fff;
    padding: 24px;
}

.bp-guide-cover-mini h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1.15;
}

.bp-guide-cover-mini h4 strong {
    font-size: 30px;
}

.bp-guide-cover-mini span {
    display: block;
    color: var(--bp-gold);
    font-weight: 900;
    margin-top: 10px;
}

.bp-guide-mini > a {
    display: block;
    background: var(--bp-dark-navy);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    padding: 10px;
    margin-top: 8px;
}

.bp-guide-mini > a:hover {
    background: var(--bp-blue);
}

/* FEATURED LISTINGS */
.bp-featured-company {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--bp-border);
    padding: 13px 0;
    text-decoration: none;
    color: var(--bp-text);
}

.bp-company-logo-mini {
    height: 58px;
    border: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-company-logo-mini img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.bp-featured-company strong {
    display: block;
    font-size: 13px;
}

.bp-featured-company small {
    display: block;
    color: var(--bp-muted);
    margin-top: 3px;
}

.bp-featured-company em {
    display: inline-flex;
    background: #f3c85b;
    color: var(--bp-dark-navy);
    font-style: normal;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 6px;
    margin-top: 6px;
}

.bp-featured-company:hover strong {
    color: var(--bp-blue);
}

/* LOWER DASHBOARD */
.bp-lower-dashboard {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.45fr .75fr .75fr;
    gap: 16px;
    margin-bottom: 18px;
}

.bp-article-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.bp-article-row a {
    color: var(--bp-text);
    text-decoration: none;
}

.bp-article-row img {
    width: 100%;
    height: 105px;
    object-fit: cover;
}

.bp-article-row strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    margin-top: 8px;
}

.bp-article-row a:hover strong {
    color: var(--bp-blue);
}

/* EVENTS */
.bp-events-mini > a {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    text-decoration: none;
    color: var(--bp-text);
    margin-bottom: 13px;
}

.bp-events-mini > a > span {
    border: 1px solid var(--bp-border);
    text-align: center;
    color: var(--bp-dark-navy);
    font-size: 22px;
    font-weight: 900;
}

.bp-events-mini > a > span strong {
    display: block;
    background: var(--bp-dark-navy);
    color: #fff;
    font-size: 12px;
    padding: 3px;
}

.bp-events-mini strong,
.bp-classifieds-mini strong {
    display: block;
    font-size: 13px;
}

.bp-events-mini small,
.bp-classifieds-mini small {
    color: var(--bp-muted);
    font-size: 11px;
}

/* CLASSIFIEDS */
.bp-classifieds-mini > a:not(.bp-post-classified) {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    text-decoration: none;
    color: var(--bp-text);
    margin-bottom: 13px;
}

.bp-classifieds-mini img {
    width: 72px;
    height: 54px;
    object-fit: cover;
}

.bp-classifieds-mini a:hover strong {
    color: var(--bp-blue);
}

.bp-post-classified {
    display: block;
    background: var(--bp-dark-navy);
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.bp-post-classified:hover {
    background: var(--bp-blue);
}

.bp-empty-copy {
    color: var(--bp-muted);
    font-size: 13px;
}

/* =====================================================
   BUSINESS PAGES FOOTER
===================================================== */

.bp-site-footer {
    background: var(--bp-deep-navy);
    color: #ffffff;
}

.bp-footer-main {
    padding: 46px 0 34px;
    background:
        linear-gradient(135deg, #001735 0%, #002b5c 58%, #001f45 100%);
}

.bp-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr .9fr 1.25fr;
    gap: 42px;
}

.bp-footer-brand h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 900;
}

.bp-footer-brand p,
.bp-footer-newsletter p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.65;
}

.bp-footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.bp-footer-socials a {
    width: 32px;
    height: 32px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
}

.bp-footer-socials a:hover {
    color: var(--bp-gold);
}

.bp-footer-col h4,
.bp-footer-newsletter h4 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 900;
}

.bp-footer-col a {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 9px;
}

.bp-footer-col a:hover {
    color: #ffffff;
}

.bp-newsletter-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 100px;
    border: 1px solid rgba(255,255,255,.45);
    background: #ffffff;
    height: 42px;
}

.bp-newsletter-form input {
    border: 0;
    padding: 0 12px;
    outline: none;
    color: var(--bp-text);
    font-size: 13px;
    min-width: 0;
}

.bp-newsletter-form button {
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.bp-newsletter-form button:hover {
    background: var(--bp-navy);
}

.bp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    background: var(--bp-deep-navy);
    padding: 16px 0;
}

.bp-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bp-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.bp-footer-bottom div {
    display: flex;
    gap: 28px;
}

.bp-footer-bottom a {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    text-decoration: none;
}

.bp-footer-bottom a:hover {
    color: #ffffff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1400px) {
    .bp-container {
        max-width: 1240px;
    }

    .bp-home-grid {
        grid-template-columns: 240px minmax(0, 1fr) 230px;
        gap: 14px;
    }

    .bp-featured-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bp-content-dashboard,
    .bp-lower-dashboard {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1100px) {
    .bp-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bp-main-header-inner {
        grid-template-columns: 240px 1fr auto;
        gap: 18px;
    }

    .bp-header-logo img {
        width: 230px;
    }

    .bp-header-search {
        grid-template-columns: 150px 1fr 95px;
    }

    .bp-nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .bp-nav-menu a {
        padding-left: 18px;
        padding-right: 18px;
    }

    .bp-home-grid {
        grid-template-columns: 230px minmax(0, 1fr);
        grid-template-areas:
            "sidebar hero"
            "sidebar tools"
            "sidebar featured";
    }

    .bp-buyers-guide-card {
        display: none;
    }

    .bp-quick-tools {
        grid-template-columns: repeat(4, 1fr);
    }

    .bp-opportunity-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .bp-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bp-top-strip-inner {
        display: grid;
        gap: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .bp-top-left {
        display: none;
    }

    .bp-top-links {
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 2px;
    }

    .bp-main-header {
        padding: 14px 0;
    }

    .bp-main-header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .bp-header-logo img {
        width: 220px;
    }

    .bp-mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bp-header-search {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        height: auto;
        display: grid;
        margin-top: 10px;
    }

    .bp-header-search select,
    .bp-header-search input,
    .bp-header-search button {
        min-height: 46px;
        border-right: 0;
        border-bottom: 1px solid var(--bp-border);
    }

    .bp-header-search button {
        border-bottom: 0;
    }

    .bp-nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        overflow: visible;
    }

    .bp-nav-menu.active {
        display: flex;
    }

    .bp-nav-menu a {
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding: 14px 16px;
    }

    .bp-home-main {
        padding-top: 12px;
    }

    .bp-home-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "tools"
            "featured";
    }

    .bp-category-sidebar {
        display: none;
    }

    .bp-hero-banner {
        min-height: 300px;
        padding: 34px 26px;
    }

    .bp-hero-banner::after {
        opacity: 0.25;
        right: 30px;
        top: 40px;
        font-size: 110px;
    }

    .bp-hero-copy h1 {
        font-size: 34px;
        letter-spacing: 0;
    }

    .bp-hero-copy p {
        font-size: 17px;
    }

    .bp-quick-tools {
        grid-template-columns: repeat(4, 1fr);
    }

    .bp-featured-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-content-dashboard,
    .bp-lower-dashboard {
        grid-template-columns: 1fr;
    }

    .bp-article-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-footer-bottom-inner {
        display: grid;
        gap: 10px;
    }
}

@media (max-width: 620px) {
    .bp-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .bp-top-strip {
        min-height: auto;
    }

    .bp-top-links {
        gap: 14px;
    }

    .bp-top-links a {
        font-size: 12px;
    }

    .bp-header-logo img {
        width: 195px;
    }

    .bp-mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .bp-hero-banner {
        min-height: 280px;
        padding: 28px 20px;
    }

    .bp-hero-banner::after {
        font-size: 92px;
        right: 12px;
        top: 48px;
    }

    .bp-hero-copy h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .bp-hero-copy p {
        font-size: 15px;
    }

    .bp-hero-copy a {
        min-width: 130px;
        min-height: 38px;
        font-size: 11px;
    }

    .bp-hero-arrow {
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .bp-hero-dots {
        bottom: 12px;
    }

    .bp-hero-dots span {
        width: 8px;
        height: 8px;
    }

    .bp-quick-tools {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-quick-tools a {
        min-height: 86px;
        font-size: 12px;
    }

    .bp-featured-cat-grid,
    .bp-opportunity-grid,
    .bp-article-row {
        grid-template-columns: 1fr;
    }

    .bp-section-head,
    .bp-card-head {
        display: grid;
        gap: 8px;
        align-items: start;
    }

    .bp-section-head a,
    .bp-card-head a {
        width: fit-content;
    }

    .bp-small-news {
        grid-template-columns: 76px 1fr;
    }

    .bp-small-news img {
        width: 76px;
        height: 60px;
    }

    .bp-featured-company {
        grid-template-columns: 64px 1fr;
    }

    .bp-company-logo-mini {
        height: 54px;
    }

    .bp-events-mini > a,
    .bp-classifieds-mini > a:not(.bp-post-classified) {
        grid-template-columns: 62px 1fr;
    }

    .bp-footer-main {
        padding: 34px 0 28px;
    }

    .bp-footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bp-newsletter-form {
        grid-template-columns: 1fr;
        height: auto;
    }

    .bp-newsletter-form input,
    .bp-newsletter-form button {
        min-height: 42px;
    }

    .bp-footer-bottom div {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .bp-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .bp-header-logo img {
        width: 175px;
    }

    .bp-hero-copy h1 {
        font-size: 24px;
    }

    .bp-hero-copy p {
        font-size: 14px;
    }

    .bp-dash-card,
    .bp-opportunity-centre,
    .bp-category-sidebar,
    .bp-buyers-guide-card,
    .bp-featured-categories {
        padding: 11px;
    }

    .bp-main-header-inner {
        gap: 8px;
    }
}

/* =====================================================
   HEADER SEARCH FULL WIDTH ALIGNMENT FIX
   Search form stretches to the right edge of container
===================================================== */

.bp-main-header-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 36px;
}

/* Search must use full available width */
.bp-header-search {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 120px;
}

/* Hide the mobile button on desktop so it does not reserve space */
.bp-mobile-menu-btn {
    display: none;
}

/* Tablet */
@media (max-width: 1100px) {
    .bp-main-header-inner {
        grid-template-columns: 240px 1fr;
        gap: 22px;
    }

    .bp-header-search {
        grid-template-columns: 150px minmax(0, 1fr) 100px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .bp-main-header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .bp-mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bp-header-search {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 10px;
    }
}

/* =====================================================
   BUSINESS PAGES SOFT BORDER RADIUS
   Slightly rounded, not too round
===================================================== */

:root {
    --bp-radius-sm: 4px;
    --bp-radius-md: 6px;
}

/* Main outer blocks */
.bp-category-sidebar,
.bp-hero-banner,
.bp-buyers-guide-card,
.bp-quick-tools,
.bp-featured-categories,
.bp-opportunity-centre,
.bp-dash-card,
.bp-header-search,
.bp-newsletter-form,
.bp-featured-cat,
.bp-buyers-cover,
.bp-guide-cover-mini,
.bp-company-logo-mini {
    border-radius: var(--bp-radius-md);
}

/* Buttons and small controls */
.bp-section-head a,
.bp-card-head a,
.bp-hero-copy a,
.bp-view-all-cats,
.bp-post-classified,
.bp-guide-mini > a,
.bp-buyers-guide-card > a,
.bp-newsletter-form button,
.bp-header-search button {
    border-radius: var(--bp-radius-sm);
}

/* Images */
.bp-featured-cat img,
.bp-small-news img,
.bp-article-row img,
.bp-classifieds-mini img {
    border-radius: var(--bp-radius-sm);
}

/* Keep these perfectly round */
.bp-quick-tools i,
.bp-hero-arrow {
    border-radius: 50%;
}

/* Prevent children from breaking rounded containers */
.bp-header-search,
.bp-quick-tools,
.bp-featured-cat,
.bp-buyers-cover,
.bp-guide-cover-mini {
    overflow: hidden;
}

/* Search form should look like one clean rounded bar */
.bp-header-search select,
.bp-header-search input,
.bp-header-search button {
    border-radius: 0;
}

/* =====================================================
   QUICK TOOLS SHORT "|" SEPARATORS
===================================================== */

.bp-quick-tools a {
    position: relative;
    border-right: 0 !important;
}

.bp-quick-tools a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34px;
    background: #d8e1ec;
}

.bp-quick-tools a:last-child::after {
    display: none;
}

/* Tablet: 4 columns, remove line after every 4th item */
@media (max-width: 1100px) {
    .bp-quick-tools a:nth-child(4n)::after {
        display: none;
    }
}

/* Mobile: 2 columns, remove line after every 2nd item */
@media (max-width: 620px) {
    .bp-quick-tools a:nth-child(4n)::after {
        display: block;
    }

    .bp-quick-tools a:nth-child(2n)::after {
        display: none;
    }
}

/* =====================================================
   ADVERTISE PAGE
===================================================== */

.bp-advertise-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-advertise-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1600");
    background-size: cover;
    background-position: center;
    padding: 62px 0;
    color: #ffffff;
}

.bp-advertise-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.bp-advertise-hero-copy span,
.bp-ad-form-intro span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-advertise-hero-copy h1 {
    max-width: 780px;
    margin: 14px 0 16px;
    font-size: clamp(36px, 4.4vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-advertise-hero-copy p {
    max-width: 720px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.bp-advertise-hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bp-advertise-hero-actions a {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    border-radius: 4px;
}

.bp-advertise-hero-actions a:first-child {
    background: #ffffff;
    color: var(--bp-dark-navy);
}

.bp-advertise-hero-actions a:last-child {
    border: 1px solid rgba(255,255,255,.55);
    color: #ffffff;
}

.bp-advertise-hero-card {
    background: rgba(255,255,255,.96);
    color: var(--bp-text);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
}

.bp-advertise-hero-card h3 {
    margin: 0 0 14px;
    color: var(--bp-navy);
    font-size: 18px;
    font-weight: 900;
}

.bp-advertise-hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bp-advertise-hero-card li {
    position: relative;
    padding: 10px 0 10px 25px;
    border-top: 1px solid var(--bp-border);
    color: var(--bp-muted);
    font-size: 13px;
    font-weight: 650;
}

.bp-advertise-hero-card li:first-child {
    border-top: 0;
}

.bp-advertise-hero-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bp-dark-navy);
    font-weight: 900;
}

/* BENEFITS */

.bp-advertise-benefits {
    padding: 24px 0 0;
}

.bp-advertise-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-ad-benefit {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-ad-benefit i {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.bp-ad-benefit h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-ad-benefit p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* FORM SECTION */

.bp-ad-form-section {
    padding: 24px 0 76px;
}

.bp-ad-form-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bp-ad-form-intro {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 28px;
    position: sticky;
    top: 110px;
}

.bp-ad-form-intro h2 {
    margin: 12px 0 12px;
    color: var(--bp-navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 900;
}

.bp-ad-form-intro p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-ad-contact-card {
    margin-top: 22px;
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
}

.bp-ad-contact-card strong {
    display: block;
    color: var(--bp-navy);
    font-size: 14px;
    margin-bottom: 6px;
}

.bp-ad-form-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 24px;
}

.bp-ad-form {
    margin: 0;
}

.bp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bp-field {
    display: grid;
    gap: 7px;
}

.bp-field.full {
    grid-column: 1 / -1;
}

.bp-field label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-field input,
.bp-field select,
.bp-field textarea {
    width: 100%;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-text);
    border-radius: 4px;
    min-height: 46px;
    padding: 0 13px;
    outline: none;
    font-size: 14px;
}

.bp-field textarea {
    min-height: 135px;
    padding: 13px;
    resize: vertical;
}

.bp-field input:focus,
.bp-field select:focus,
.bp-field textarea:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-recaptcha-wrap {
    padding-top: 4px;
    overflow-x: auto;
}

.bp-ad-submit {
    margin-top: 16px;
    width: 100%;
    min-height: 48px;
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.bp-ad-submit:hover {
    background: var(--bp-navy);
}

/* SUCCESS + ERRORS */

.bp-success,
.bp-errors {
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.55;
}

.bp-success {
    background: #edf8f1;
    border: 1px solid #b9e6c8;
    color: #145c2d;
}

.bp-errors {
    background: #fff3f3;
    border: 1px solid #f1b9b9;
    color: #8a1f1f;
}

.bp-errors strong {
    display: block;
    margin-bottom: 6px;
}

.bp-errors ul {
    margin: 0;
    padding-left: 18px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .bp-advertise-hero-grid,
    .bp-ad-form-layout {
        grid-template-columns: 1fr;
    }

    .bp-ad-form-intro {
        position: static;
    }

    .bp-advertise-benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bp-advertise-hero {
        padding: 42px 0;
    }

    .bp-advertise-hero-copy h1 {
        font-size: 32px;
    }

    .bp-advertise-hero-actions {
        display: grid;
    }

    .bp-form-grid {
        grid-template-columns: 1fr;
    }

    .bp-ad-form-card,
    .bp-ad-form-intro {
        padding: 18px;
    }

    .bp-ad-form-intro h2 {
        font-size: 24px;
    }
}

/* =====================================================
   BUSINESS PAGES NEWS PAGE
===================================================== */

.bp-news-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-news-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.88)),
        url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=1600");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 56px 0;
}

.bp-news-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: center;
}

.bp-news-hero span,
.bp-news-label {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-news-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-news-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.75;
}

.bp-news-date-card {
    background: rgba(255,255,255,.96);
    border-radius: 6px;
    padding: 22px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-news-date-card strong {
    display: block;
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.bp-news-date-card span {
    display: block;
    color: var(--bp-navy);
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    margin-top: 8px;
}

.bp-news-date-card small {
    display: block;
    color: var(--bp-muted);
    margin-top: 8px;
    font-weight: 750;
}

/* STRIP */

.bp-news-strip {
    padding: 14px 0 0;
}

.bp-news-ticker {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 16px;
}

.bp-news-ticker strong {
    color: var(--bp-navy);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

.bp-news-ticker span {
    color: var(--bp-muted);
    font-size: 13px;
}

/* FRONT */

.bp-news-front {
    padding: 18px 0 0;
}

.bp-news-front-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
}

.bp-news-featured,
.bp-news-trending {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
}

.bp-news-featured {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
}

.bp-news-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.bp-news-featured-content {
    padding: 28px;
}

.bp-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 700;
}

.bp-news-featured-content h2 {
    margin: 14px 0 12px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 900;
}

.bp-news-featured-content h2 a {
    color: var(--bp-navy);
    text-decoration: none;
}

.bp-news-featured-content h2 a:hover {
    color: var(--bp-blue);
}

.bp-news-featured-content p {
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.bp-news-read,
.bp-news-card-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--bp-dark-navy);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.bp-news-read:hover,
.bp-news-card-link:hover {
    color: var(--bp-blue);
}

/* TRENDING */

.bp-news-trending {
    padding: 14px;
}

.bp-news-trend-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 11px;
    padding: 12px 0;
    border-top: 1px solid #edf2f8;
    text-decoration: none;
    color: var(--bp-text);
}

.bp-news-trend-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-news-trend-item img {
    width: 82px;
    height: 62px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-news-trend-item strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.35;
}

.bp-news-trend-item small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
}

.bp-news-trend-item:hover strong {
    color: var(--bp-blue);
}

/* REPORTS */

.bp-news-reports {
    padding: 18px 0 70px;
}

.bp-news-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bp-news-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
}

.bp-news-card-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.bp-news-card-body {
    padding: 16px;
}

.bp-news-card h3 {
    margin: 10px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.bp-news-card h3 a {
    color: var(--bp-navy);
    text-decoration: none;
}

.bp-news-card h3 a:hover {
    color: var(--bp-blue);
}

.bp-news-card p {
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.bp-news-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}

.bp-news-empty h3 {
    color: var(--bp-navy);
    margin: 0 0 8px;
}

.bp-news-empty p {
    color: var(--bp-muted);
    margin: 0;
}

.bp-news-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .bp-news-front-grid,
    .bp-news-featured {
        grid-template-columns: 1fr;
    }

    .bp-news-featured-image img {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .bp-news-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-news-date-card {
        max-width: 220px;
    }

    .bp-news-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-news-front-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bp-news-hero {
        padding: 42px 0;
    }

    .bp-news-hero h1 {
        font-size: 34px;
    }

    .bp-news-ticker {
        display: grid;
        padding: 12px 14px;
    }

    .bp-news-card-grid {
        grid-template-columns: 1fr;
    }

    .bp-news-featured-content {
        padding: 20px;
    }

    .bp-news-featured-image img {
        min-height: 230px;
    }
}

/* =====================================================
   BUSINESS PAGES PAGINATION
===================================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0;
    padding: 0;
}

.pagination li a,
.pagination li span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
}

.pagination li a:hover {
    background: var(--bp-light-blue);
    border-color: var(--bp-dark-navy);
    color: var(--bp-dark-navy);
}

.pagination li.active span,
.pagination li.active a {
    background: var(--bp-dark-navy);
    border-color: var(--bp-dark-navy);
    color: #ffffff;
}

.pagination li.disabled span {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f4f7fb;
}

/* Fix Laravel SVG arrows */
.pagination svg {
    width: 15px !important;
    height: 15px !important;
}

/* Pagination wrappers used across pages */
.bp-news-pagination,
.bp-press-pagination,
.bp-etenders-pagination,
.bp-dir-pagination,
.bp-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* Remove Tailwind default oversized pagination text/layout */
nav[role="navigation"] {
    width: 100%;
}

nav[role="navigation"] > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav[role="navigation"] p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
}

/* Hide the "Showing 1 to..." text if it looks messy */
nav[role="navigation"] > div:first-child {
    display: none;
}

/* Keep the actual links clean */
nav[role="navigation"] > div:last-child {
    display: flex;
    justify-content: center;
}

/* =====================================================
   BUSINESS PAGES SINGLE NEWS PAGE
   Consolidated: right sidebar + magazine image wrap + drop cap
===================================================== */

.bp-news-single-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* Hero */
.bp-news-single-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1495020689067-958852a7765e?q=80&w=1600");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 52px 0 46px;
}

.bp-news-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.bp-news-back:hover {
    color: #ffffff;
}

.bp-news-single-label {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-news-single-hero h1 {
    max-width: 1050px;
    margin: 14px 0 0;
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-news-single-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 700;
}

.bp-news-single-meta span {
    display: inline-flex;
    align-items: center;
}

.bp-news-single-meta span + span::before {
    content: "•";
    margin-right: 10px;
    color: rgba(255,255,255,.55);
}

/* Layout */
.bp-news-single-body-section {
    padding: 28px 0 76px;
}

.bp-news-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.bp-news-single-content {
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
}

.bp-news-single-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
    align-self: start;
}

/* Magazine text wrap */
.bp-news-single-image {
    display: none;
}

.bp-news-single-text {
    padding: 30px;
    color: var(--bp-text);
    font-size: 15px;
    line-height: 1.9;
    overflow: hidden;
}

.bp-news-float-image {
    float: left;
    width: min(390px, 48%);
    margin: 0 26px 18px 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 8px;
}

.bp-news-float-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-news-float-image figcaption {
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-news-single-text::after {
    content: "";
    display: block;
    clear: both;
}

.bp-news-single-text p {
    margin: 0 0 18px;
}

.bp-news-single-text p:first-of-type::first-letter {
    float: left;
    color: var(--bp-navy);
    font-size: 76px;
    line-height: 62px;
    padding-right: 12px;
    padding-top: 5px;
    font-weight: 900;
}

.bp-news-single-text h1,
.bp-news-single-text h2,
.bp-news-single-text h3,
.bp-news-single-text h4 {
    color: var(--bp-navy);
    line-height: 1.2;
    margin: 28px 0 12px;
    font-weight: 900;
}

.bp-news-single-text h2 {
    font-size: 26px;
}

.bp-news-single-text h3 {
    font-size: 21px;
}

.bp-news-single-text ul,
.bp-news-single-text ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.bp-news-single-text li {
    margin-bottom: 8px;
}

.bp-news-single-text strong,
.bp-news-single-text b {
    color: var(--bp-navy);
    font-weight: 900;
}

.bp-news-single-text a {
    color: var(--bp-dark-navy);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.bp-news-single-text img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Share */
.bp-news-share {
    border-top: 1px solid var(--bp-border);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.bp-news-share > span {
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.bp-share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bp-share-icons a {
    width: 38px;
    height: 38px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
}

.bp-share-icons a:hover {
    background: var(--bp-blue);
    transform: translateY(-2px);
}

/* Sidebar cards */
.bp-news-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
}

.bp-news-sidebar-card h3 {
    margin: 0 0 14px;
    color: var(--bp-navy);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-news-related-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 11px;
    padding: 12px 0;
    border-top: 1px solid #edf2f8;
    color: inherit;
    text-decoration: none;
}

.bp-news-related-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-news-related-item img {
    width: 76px;
    height: 62px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-news-related-item strong {
    display: block;
    color: var(--bp-navy);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
}

.bp-news-related-item small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 700;
}

.bp-news-related-item:hover strong {
    color: var(--bp-blue);
}

.bp-news-most-read a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #edf2f8;
    color: inherit;
    text-decoration: none;
}

.bp-news-most-read a:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-news-most-read a > span {
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 900;
}

.bp-news-most-read strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
}

.bp-news-most-read small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
}

.bp-news-most-read a:hover strong {
    color: var(--bp-blue);
}

.bp-news-directory-cta {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-news-directory-cta h3 {
    color: #ffffff;
}

.bp-news-directory-cta p {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.bp-news-directory-cta a {
    display: inline-flex;
    margin-top: 14px;
    background: #ffffff;
    color: var(--bp-dark-navy);
    padding: 9px 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    border-radius: 4px;
}

.bp-news-directory-cta a:hover {
    background: var(--bp-gold);
}

.bp-sidebar-empty {
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .bp-news-single-grid {
        grid-template-columns: 1fr;
    }

    .bp-news-single-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .bp-news-single-hero {
        padding: 40px 0 34px;
    }

    .bp-news-single-hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .bp-news-single-text {
        padding: 22px;
        font-size: 14px;
    }

    .bp-news-float-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .bp-news-single-text p:first-of-type::first-letter {
        font-size: 54px;
        line-height: 46px;
    }

    .bp-news-share {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 460px) {
    .bp-news-related-item {
        grid-template-columns: 68px 1fr;
    }

    .bp-news-related-item img {
        width: 68px;
        height: 56px;
    }
}

/* =====================================================
   DIRECTORY PAGE FINAL PORTAL POLISH
===================================================== */

/* Make search card feel like the main site search */
.bp-dir-modern-search {
    padding: 14px;
    box-shadow: 0 8px 22px rgba(0, 31, 69, 0.04);
}

/* Cleaner hero, less oversized */
.bp-dir-modern-hero {
    padding: 46px 0;
}

.bp-dir-modern-copy h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 54px);
}

.bp-dir-modern-copy p {
    font-size: 15px;
}

/* Result cards more compact and aligned */
.bp-dir-result-modern {
    align-items: center;
    padding: 14px;
}

.bp-dir-result-logo {
    height: 86px;
}

.bp-dir-result-title h3 {
    font-size: 18px;
}

/* Featured cards cleaner */
.bp-dir-featured-logo {
    height: 118px;
}

.bp-dir-featured-info h3 {
    font-size: 16px;
}

/* Search buttons same height */
.bp-dir-search-buttons button,
.bp-dir-search-buttons a {
    min-height: 48px;
}

/* Better mobile spacing */
@media (max-width: 760px) {
    .bp-dir-modern-hero {
        padding: 38px 0;
    }

    .bp-dir-modern-copy h1 {
        font-size: 30px;
    }

    .bp-dir-result-modern {
        padding: 13px;
    }

    .bp-dir-profile-btn {
        width: fit-content;
    }
}


/* =====================================================
   BUSINESS PAGES COMPANY PROFILE PAGE
===================================================== */

.bp-company-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-company-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600");
    background-size: cover;
    background-position: center;
    padding: 34px 0 44px;
    color: #ffffff;
}

.bp-company-top-banner {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 18px;
}

.bp-company-top-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.bp-company-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.bp-company-back:hover {
    color: #ffffff;
}

.bp-company-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 20px;
    align-items: stretch;
}

.bp-company-main-card,
.bp-company-contact-panel {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 6px;
    color: var(--bp-text);
}

.bp-company-main-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 26px;
}

.bp-company-logo-large {
    width: 150px;
    height: 130px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-company-logo-large img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.bp-company-logo-large span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bp-dark-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
}

.bp-company-title-block > span,
.bp-company-contact-panel > span,
.bp-company-card > span,
.bp-company-side-card > span,
.bp-company-side-card-featured > span {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.bp-company-title-block h1 {
    margin: 10px 0 12px;
    color: var(--bp-navy);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.bp-company-location-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bp-company-location-line small {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 5px 9px;
    color: var(--bp-navy);
    font-size: 11px;
    font-weight: 750;
}

/* CONTACT PANEL */

.bp-company-contact-panel {
    padding: 20px;
}

.bp-company-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.bp-company-contact-list a,
.bp-company-contact-list div {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--bp-text);
    text-decoration: none;
}

.bp-company-contact-list small {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.bp-company-contact-list strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.bp-company-contact-list a:hover {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

/* BODY LAYOUT */

.bp-company-body {
    padding: 26px 0 76px;
}

.bp-company-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    align-items: start;
}

.bp-company-content {
    display: grid;
    gap: 18px;
}

.bp-company-card,
.bp-company-side-card,
.bp-company-side-card-featured {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-company-card h2,
.bp-company-side-card h3 {
    margin: 10px 0 12px;
    color: var(--bp-navy);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.bp-company-card p,
.bp-company-copy {
    color: var(--bp-text);
    font-size: 14px;
    line-height: 1.85;
}

.bp-company-copy p {
    margin: 0 0 16px;
}

.bp-company-copy strong,
.bp-company-copy b {
    color: var(--bp-navy);
    font-weight: 900;
}

.bp-company-copy ul,
.bp-company-copy ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

/* HOURS */

.bp-hours-list {
    display: grid;
    gap: 8px;
}

.bp-hours-list div {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 10px 12px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 700;
}

/* SOCIAL ICONS */

.bp-company-social-icons {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white !important;
}

.bp-company-social-icons a {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}

.bp-company-social-icons a:hover {
    background: var(--bp-blue);
    transform: translateY(-2px);
}

/* ADVERTS / VIDEO / MAP */

.bp-advert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bp-advert-grid a {
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
}

.bp-advert-grid img {
    width: 100%;
    height: auto;
}

.bp-company-video,
.bp-company-map {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--bp-border);
    background: #ffffff;
}

.bp-company-video iframe {
    width: 100%;
    height: 420px;
    display: block;
}

.bp-company-map iframe {
    width: 100%;
    height: 360px;
    display: block;
}

/* FORM */

.bp-company-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bp-company-form div {
    display: grid;
    gap: 7px;
}

.bp-company-form .full {
    grid-column: 1 / -1;
}

.bp-company-form label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-company-form input,
.bp-company-form textarea {
    width: 100%;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    background: #ffffff;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
    padding: 0 13px;
}

.bp-company-form input {
    min-height: 46px;
}

.bp-company-form textarea {
    min-height: 135px;
    padding: 13px;
    resize: vertical;
}

.bp-company-form input:focus,
.bp-company-form textarea:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-company-form button {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.bp-company-form button:hover {
    background: var(--bp-blue);
}

/* ALERTS */

.bp-alert-success,
.bp-alert-error {
    border-radius: 6px;
    padding: 14px 16px;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.55;
}

.bp-alert-success {
    background: #edf8f1;
    border: 1px solid #b9e6c8;
    color: #145c2d;
}

.bp-alert-error {
    background: #fff3f3;
    border: 1px solid #f1b9b9;
    color: #8a1f1f;
}

.bp-alert-error ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

/* SIDEBAR */

.bp-company-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.bp-classified-banner {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}

.bp-classified-banner img {
    width: 100%;
    height: auto;
}

.bp-company-dark-card {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-company-dark-card span,
.bp-company-dark-card h3 {
    color: #ffffff;
}

.bp-company-dark-card p {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
}

.bp-company-dark-card a {
    display: inline-flex;
    margin-top: 12px;
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-radius: 4px;
    padding: 10px 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.bp-company-dark-card a:hover {
    background: var(--bp-gold);
}

/* RELATED COMPANIES */

.bp-related-company-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.bp-related-company-list a {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    align-items: center;
    color: var(--bp-text);
    text-decoration: none;
    border-top: 1px solid #edf2f8;
    padding-top: 12px;
}

.bp-related-company-list a:first-child {
    border-top: 0;
    padding-top: 0;
}

.bp-related-company-list a > div {
    width: 58px;
    height: 46px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.bp-related-company-list img {
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
}

.bp-related-company-list span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bp-dark-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.bp-related-company-list strong {
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 850;
}

.bp-related-company-list a:hover strong {
    color: var(--bp-blue);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-company-hero-grid,
    .bp-company-layout {
        grid-template-columns: 1fr;
    }

    .bp-company-sidebar {
        position: static;
    }

    .bp-company-contact-panel {
        order: 2;
    }
}

@media (max-width: 760px) {
    .bp-company-hero {
        padding: 28px 0 36px;
    }

    .bp-company-main-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .bp-company-logo-large {
        width: 130px;
        height: 110px;
    }

    .bp-company-title-block h1 {
        font-size: 30px;
    }

    .bp-company-form,
    .bp-advert-grid {
        grid-template-columns: 1fr;
    }

    .bp-company-video iframe {
        height: 280px;
    }

    .bp-company-map iframe {
        height: 280px;
    }
}

@media (max-width: 460px) {
    .bp-company-card,
    .bp-company-side-card,
    .bp-company-side-card-featured {
        padding: 16px;
    }

    .bp-company-contact-list strong {
        font-size: 12px;
    }
}

/* =====================================================
   DIRECTORY PAGE — FINAL BUSINESS PAGES PORTAL RESTYLE
===================================================== */

.bp-directory-modern {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */
.bp-dir-modern-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-dir-modern-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-dir-modern-copy span,
.bp-dir-modern-head span,
.bp-dir-modern-empty span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-dir-modern-copy h1 {
    max-width: 850px;
    margin: 14px 0 14px;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-dir-modern-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-dir-modern-stat {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-dir-modern-stat span {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.bp-dir-modern-stat strong {
    display: block;
    margin-top: 8px;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-dir-modern-stat small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH PANEL */
.bp-dir-modern-search-section {
    padding: 18px 0 0;
}

.bp-dir-modern-search {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    box-shadow: 0 10px 24px rgba(0,31,69,.05);
}

.bp-dir-search-field {
    display: grid;
    gap: 7px;
}

.bp-dir-search-field label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-dir-search-field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 15px;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
}

.bp-dir-search-field input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-dir-search-buttons {
    display: flex;
    gap: 8px;
}

.bp-dir-search-buttons button,
.bp-dir-search-buttons a {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border: 1px solid var(--bp-dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
}

.bp-dir-search-buttons a {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-color: var(--bp-border);
}

.bp-dir-search-buttons button:hover {
    background: var(--bp-blue);
}

.bp-dir-search-buttons a:hover {
    border-color: var(--bp-dark-navy);
    background: var(--bp-light-blue);
}

.bp-search-summary {
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 12px 16px;
}

.bp-search-summary p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
}

.bp-search-summary strong {
    color: var(--bp-navy);
}

/* BODY */
.bp-dir-modern-body {
    padding: 24px 0 76px;
}

.bp-dir-modern-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

.bp-dir-modern-head span {
    color: var(--bp-muted);
}

.bp-dir-modern-head h2 {
    margin: 8px 0 0;
    color: var(--bp-navy);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.7px;
    font-weight: 900;
}

.bp-dir-modern-head p {
    max-width: 460px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

/* FILTER BOX */
.bp-results-filter-box {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 16px;
    display: grid;
    gap: 7px;
}

.bp-results-filter-box label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-results-filter-box input {
    min-height: 46px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 13px;
    outline: none;
}

.bp-results-filter-box input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-results-filter-box small {
    color: var(--bp-muted);
    font-size: 11px;
}

/* RESULT LIST */
.bp-dir-results-grid {
    display: grid;
    gap: 14px;
}

.bp-dir-result-modern {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    transition: .2s ease;
}

.bp-dir-result-modern:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-1px);
}

.bp-dir-result-logo {
    height: 96px;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.bp-dir-result-logo img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
}

.bp-dir-result-logo span {
    width: 46px;
    height: 46px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.bp-dir-result-info {
    min-width: 0;
}

.bp-dir-result-title {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.bp-dir-result-title small,
.bp-dir-featured-info small {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-dir-result-title h3 {
    margin: 4px 0 0;
    color: var(--bp-navy);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.bp-dir-profile-btn,
.bp-dir-featured-info a,
.bp-dir-modern-empty a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-dir-profile-btn:hover,
.bp-dir-featured-info a:hover,
.bp-dir-modern-empty a:hover {
    background: var(--bp-blue);
}

.bp-dir-result-info p {
    margin: 12px 0 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bp-dir-result-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bp-dir-result-meta span {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 5px 8px;
    color: var(--bp-navy);
    font-size: 11px;
    font-weight: 750;
}

/* FEATURED GRID */
.bp-dir-featured-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bp-dir-featured-modern {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    transition: .2s ease;
}

.bp-dir-featured-modern:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-2px);
}

.bp-dir-featured-logo {
    height: 128px;
    border-bottom: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.bp-dir-featured-logo img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
}

.bp-dir-featured-logo span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--bp-dark-navy);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.bp-dir-featured-info {
    padding: 16px;
}

.bp-dir-featured-info h3 {
    margin: 6px 0 8px;
    color: var(--bp-navy);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.bp-dir-featured-info p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.6;
}

.bp-dir-featured-location {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bp-dir-featured-location span {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 4px 7px;
    color: var(--bp-navy);
    font-size: 11px;
    font-weight: 750;
}

.bp-dir-featured-info a {
    margin-top: 14px;
}

/* EMPTY STATES */
.bp-dir-modern-empty,
.bp-results-no-match {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}

.bp-dir-modern-empty h3,
.bp-results-no-match h3 {
    margin: 8px 0;
    color: var(--bp-navy);
    font-size: 22px;
    font-weight: 900;
}

.bp-dir-modern-empty p,
.bp-results-no-match p {
    color: var(--bp-muted);
    margin: 0 0 16px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .bp-dir-featured-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-dir-modern-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-dir-modern-stat {
        max-width: 280px;
    }
}

@media (max-width: 760px) {
    .bp-dir-modern-hero {
        padding: 42px 0;
    }

    .bp-dir-modern-search {
        grid-template-columns: 1fr;
    }

    .bp-dir-search-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bp-dir-modern-head {
        display: grid;
        align-items: start;
    }

    .bp-dir-modern-head p {
        text-align: left;
    }

    .bp-dir-result-modern {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .bp-dir-result-logo {
        height: 112px;
    }

    .bp-dir-result-title {
        display: grid;
    }

    .bp-dir-profile-btn {
        width: fit-content;
    }

    .bp-dir-featured-modern-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .bp-dir-search-buttons {
        grid-template-columns: 1fr;
    }

    .bp-dir-modern-copy h1 {
        font-size: 32px;
    }
}

/* =====================================================
   BUSINESS PAGES ARTICLES PAGE
===================================================== */

.bp-articles-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-articles-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-articles-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-articles-hero span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-articles-hero h1 {
    max-width: 880px;
    margin: 14px 0;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-articles-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-articles-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-articles-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-articles-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-articles-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH */

.bp-articles-search-section {
    padding: 18px 0 0;
}

.bp-articles-search {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px auto;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(0,31,69,.05);
}

.bp-articles-search input {
    min-height: 48px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 14px;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
}

.bp-articles-search input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-articles-search button,
.bp-articles-search a {
    min-height: 48px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border: 1px solid var(--bp-dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.bp-articles-search a {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-color: var(--bp-border);
}

/* MAIN */

.bp-articles-main-section {
    padding: 24px 0 76px;
}

.bp-articles-featured {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    margin-bottom: 18px;
}

.bp-articles-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.bp-articles-featured-content {
    padding: 28px;
}

.bp-articles-featured-content > span,
.bp-article-card-body > span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bp-articles-featured-content small {
    display: block;
    margin-top: 10px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 750;
}

.bp-articles-featured-content h2 {
    margin: 12px 0;
    color: var(--bp-navy);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 900;
}

.bp-articles-featured-content h2 a,
.bp-article-card h3 a {
    color: var(--bp-navy);
    text-decoration: none;
}

.bp-articles-featured-content h2 a:hover,
.bp-article-card h3 a:hover {
    color: var(--bp-blue);
}

.bp-articles-featured-content p {
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-article-read,
.bp-article-card-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--bp-dark-navy);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.bp-article-read:hover,
.bp-article-card-link:hover {
    color: var(--bp-blue);
}

.bp-articles-heading {
    margin-top: 18px;
}

.bp-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bp-article-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    transition: .2s ease;
}

.bp-article-card:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-2px);
}

.bp-article-card-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.bp-article-card-body {
    padding: 16px;
}

.bp-article-card h3 {
    margin: 9px 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
}

.bp-article-card p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bp-articles-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}

.bp-articles-empty h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-weight: 900;
}

.bp-articles-empty p {
    margin: 0;
    color: var(--bp-muted);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-articles-featured {
        grid-template-columns: 1fr;
    }

    .bp-articles-featured-image img {
        min-height: 280px;
    }

    .bp-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-articles-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-articles-stat-card {
        max-width: 280px;
    }
}

@media (max-width: 700px) {
    .bp-articles-hero {
        padding: 42px 0;
    }

    .bp-articles-hero h1 {
        font-size: 32px;
    }

    .bp-articles-search {
        grid-template-columns: 1fr;
    }

    .bp-articles-grid {
        grid-template-columns: 1fr;
    }

    .bp-articles-featured-content {
        padding: 20px;
    }
}

/* =====================================================
   ARTICLES META / VIEWS
===================================================== */

.bp-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 750;
}

.bp-article-meta span,
.bp-article-meta small {
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 750;
}

.bp-article-meta span + span::before,
.bp-article-meta small + small::before {
    content: "•";
    margin-right: 10px;
    color: var(--bp-muted);
}

/* =====================================================
   NEWS / ARTICLE SINGLE MAGAZINE WRAP
===================================================== */

.bp-news-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.bp-news-single-content {
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
}

.bp-news-single-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
    align-self: start;
}

.bp-news-single-text {
    padding: 30px;
    color: var(--bp-text);
    font-size: 15px;
    line-height: 1.9;
    overflow: hidden;
}

.bp-news-float-image {
    float: left;
    width: min(390px, 48%);
    margin: 0 26px 18px 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 8px;
}

.bp-news-float-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-news-float-image figcaption {
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-news-single-text::after {
    content: "";
    display: block;
    clear: both;
}

.bp-news-single-text p {
    margin: 0 0 18px;
}

.bp-news-single-text p:first-of-type::first-letter {
    float: left;
    color: var(--bp-navy);
    font-size: 76px;
    line-height: 62px;
    padding-right: 12px;
    padding-top: 5px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .bp-news-single-grid {
        grid-template-columns: 1fr;
    }

    .bp-news-single-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .bp-news-single-text {
        padding: 22px;
        font-size: 14px;
    }

    .bp-news-float-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .bp-news-single-text p:first-of-type::first-letter {
        font-size: 54px;
        line-height: 46px;
    }
}


/* =====================================================
   BUSINESS PAGES PRESS RELEASES PAGE
===================================================== */

.bp-press-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-press-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-press-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-press-hero-copy span,
.bp-press-head span,
.bp-press-featured-content > span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-press-hero-copy h1 {
    max-width: 860px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-press-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-press-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-press-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-press-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-press-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH */

.bp-press-search-section {
    padding: 18px 0 0;
}

.bp-press-search {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px auto;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(0,31,69,.05);
}

.bp-press-search input {
    min-height: 48px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 14px;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
}

.bp-press-search input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-press-search button,
.bp-press-search a {
    min-height: 48px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border: 1px solid var(--bp-dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.bp-press-search a {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-color: var(--bp-border);
}

.bp-press-search button:hover {
    background: var(--bp-blue);
}

.bp-press-search a:hover {
    background: var(--bp-light-blue);
    border-color: var(--bp-dark-navy);
}

/* FEATURED */

.bp-press-featured-section {
    padding: 24px 0 0;
}

.bp-press-featured {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
}

.bp-press-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.bp-press-featured-content {
    padding: 28px;
}

.bp-press-featured-content small {
    display: block;
    margin-top: 10px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 750;
}

.bp-press-featured-content h2 {
    margin: 12px 0;
    color: var(--bp-navy);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 900;
}

.bp-press-featured-content h2 a {
    color: var(--bp-navy);
    text-decoration: none;
}

.bp-press-featured-content h2 a:hover {
    color: var(--bp-blue);
}

.bp-press-featured-content p {
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-press-featured-link,
.bp-press-read {
    display: inline-flex;
    margin-top: 12px;
    color: var(--bp-dark-navy);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.bp-press-featured-link:hover,
.bp-press-read:hover {
    color: var(--bp-blue);
}

/* LIST */

.bp-press-list-section {
    padding: 24px 0 76px;
}

.bp-press-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

.bp-press-head h2 {
    margin: 8px 0 0;
    color: var(--bp-navy);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.7px;
    font-weight: 900;
}

.bp-press-head p {
    max-width: 460px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

.bp-press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bp-press-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    transition: .2s ease;
}

.bp-press-card:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-2px);
}

.bp-press-image img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.bp-press-content {
    padding: 16px;
}

.bp-press-content span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bp-press-content h3 {
    margin: 9px 0 8px;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 900;
}

.bp-press-content h3 a {
    color: var(--bp-navy);
    text-decoration: none;
}

.bp-press-content h3 a:hover {
    color: var(--bp-blue);
}

.bp-press-content p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* EMPTY */

.bp-press-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
}

.bp-press-empty h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-weight: 900;
}

.bp-press-empty p {
    margin: 0 0 16px;
    color: var(--bp-muted);
}

.bp-press-empty a {
    display: inline-flex;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

/* PAGINATION */

.bp-press-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-press-featured {
        grid-template-columns: 1fr;
    }

    .bp-press-featured-image img {
        min-height: 280px;
    }

    .bp-press-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-press-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-press-stat-card {
        max-width: 280px;
    }
}

@media (max-width: 700px) {
    .bp-press-hero {
        padding: 42px 0;
    }

    .bp-press-hero-copy h1 {
        font-size: 32px;
    }

    .bp-press-search {
        grid-template-columns: 1fr;
    }

    .bp-press-grid {
        grid-template-columns: 1fr;
    }

    .bp-press-featured-content {
        padding: 20px;
    }

    .bp-press-head {
        display: grid;
        align-items: start;
    }

    .bp-press-head p {
        text-align: left;
    }
}


/* =====================================================
   PRESS RELEASE VIEWS / META
===================================================== */

.bp-press-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 750;
}

.bp-press-meta span,
.bp-press-meta small {
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 750;
}

.bp-press-meta span + span::before,
.bp-press-meta small + small::before {
    content: "•";
    margin-right: 10px;
    color: var(--bp-muted);
}


/* =====================================================
   SINGLE PRESS RELEASE PAGE
===================================================== */

.bp-press-single-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-press-single-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 52px 0 46px;
}

.bp-press-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.bp-press-back:hover {
    color: #ffffff;
}

.bp-press-single-label {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-press-single-hero h1 {
    max-width: 1050px;
    margin: 14px 0 0;
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-press-single-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 700;
}

.bp-press-single-meta span + span::before {
    content: "•";
    margin-right: 10px;
    color: rgba(255,255,255,.55);
}

/* BODY */

.bp-press-single-body-section {
    padding: 28px 0 76px;
}

.bp-press-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.bp-press-single-content {
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
}

/* ARTICLE TEXT WITH FLOAT IMAGE */

.bp-press-article-text {
    padding: 30px;
    color: var(--bp-text);
    font-size: 15px;
    line-height: 1.9;
    overflow: hidden;
}

.bp-press-float-image {
    float: left;
    width: min(390px, 48%);
    margin: 0 26px 18px 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 8px;
}

.bp-press-float-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-press-float-image figcaption {
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-press-article-text::after {
    content: "";
    display: block;
    clear: both;
}

.bp-press-article-text p {
    margin: 0 0 18px;
}

.bp-press-article-text p:first-of-type::first-letter {
    float: left;
    color: var(--bp-navy);
    font-size: 76px;
    line-height: 62px;
    padding-right: 12px;
    padding-top: 5px;
    font-weight: 900;
}

.bp-press-article-text h1,
.bp-press-article-text h2,
.bp-press-article-text h3,
.bp-press-article-text h4 {
    color: var(--bp-navy);
    line-height: 1.2;
    margin: 28px 0 12px;
    font-weight: 900;
}

.bp-press-article-text a {
    color: var(--bp-dark-navy);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* SHARE */

.bp-press-share {
    border-top: 1px solid var(--bp-border);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.bp-press-share > span {
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* SIDEBAR */

.bp-press-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
    align-self: start;
}

.bp-press-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
}

.bp-press-sidebar-card h3 {
    margin: 0 0 14px;
    color: var(--bp-navy);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.bp-related-press {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 11px;
    padding: 12px 0;
    border-top: 1px solid #edf2f8;
    color: inherit;
    text-decoration: none;
}

.bp-related-press:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-related-press img {
    width: 76px;
    height: 62px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-related-press strong {
    display: block;
    color: var(--bp-navy);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
}

.bp-related-press small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 700;
}

.bp-related-press:hover strong {
    color: var(--bp-blue);
}

/* CTA */

.bp-press-cta-card {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-press-cta-card h3 {
    color: #ffffff;
}

.bp-press-cta-card p {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.bp-press-cta-card a {
    display: inline-flex;
    margin-top: 14px;
    background: #ffffff;
    color: var(--bp-dark-navy);
    padding: 9px 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    border-radius: 4px;
}

.bp-press-cta-card a:hover {
    background: var(--bp-gold);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-press-single-grid {
        grid-template-columns: 1fr;
    }

    .bp-press-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .bp-press-single-hero {
        padding: 40px 0 34px;
    }

    .bp-press-single-hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .bp-press-article-text {
        padding: 22px;
        font-size: 14px;
    }

    .bp-press-float-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .bp-press-article-text p:first-of-type::first-letter {
        font-size: 54px;
        line-height: 46px;
    }

    .bp-press-share {
        display: grid;
        align-items: start;
    }
}

/* =====================================================
   BUSINESS PAGES TENDERS PAGE
===================================================== */

.bp-etenders-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-etenders-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-etenders-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-etenders-label,
.bp-etenders-results-head span,
.bp-etenders-search-input label {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-etenders-hero h1 {
    max-width: 880px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-etenders-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-etenders-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-etenders-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-etenders-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-etenders-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH */

.bp-etenders-search-panel {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(0,31,69,.05);
}

.bp-etenders-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.bp-etenders-search-input {
    display: grid;
    gap: 7px;
}

.bp-etenders-search-input label {
    color: var(--bp-navy);
}

.bp-etenders-search-input input {
    min-height: 48px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 14px;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
}

.bp-etenders-search-input input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-etenders-search-actions {
    display: flex;
    gap: 8px;
}

.bp-etenders-search-actions button,
.bp-etenders-search-actions a {
    min-height: 48px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border: 1px solid var(--bp-dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    white-space: nowrap;
}

.bp-etenders-search-actions a {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-color: var(--bp-border);
}

.bp-etenders-search-actions button:hover {
    background: var(--bp-blue);
}

.bp-etenders-search-actions a:hover {
    background: var(--bp-light-blue);
    border-color: var(--bp-dark-navy);
}

/* TABS */

.bp-etenders-tabs-section {
    background: #ffffff;
    border-bottom: 1px solid var(--bp-border);
}

.bp-etenders-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.bp-etenders-tabs a {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border-left: 1px solid var(--bp-border);
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.bp-etenders-tabs a:last-child {
    border-right: 1px solid var(--bp-border);
}

.bp-etenders-tabs a.active,
.bp-etenders-tabs a:hover {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

/* RESULTS */

.bp-etenders-results {
    padding: 24px 0 76px;
}

.bp-etenders-results-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

.bp-etenders-results-head span {
    color: var(--bp-muted);
}

.bp-etenders-results-head h2 {
    margin: 8px 0 0;
    color: var(--bp-navy);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.7px;
    font-weight: 900;
}

.bp-etenders-results-head p {
    max-width: 460px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

/* TABLE */

.bp-etenders-table-wrap {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow-x: auto;
}

.bp-etenders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
    font-size: 13px;
}

.bp-etenders-table thead {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-etenders-table th {
    padding: 14px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bp-etenders-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #edf2f8;
    color: var(--bp-muted);
    vertical-align: top;
}

.bp-etenders-table tbody tr:hover {
    background: #f8fbff;
}

.bp-etender-number strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.35;
}

.bp-etender-number small {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    margin-top: 4px;
}

/* STATUS */

.bp-etenders-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 9px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-etenders-status.warning {
    background: #b66a00;
}

.bp-etenders-status.closed {
    background: var(--bp-muted);
}

/* VIEW BUTTON */

.bp-etenders-open {
    min-height: 32px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.bp-etenders-open:hover {
    background: var(--bp-blue);
}

.bp-etenders-empty {
    text-align: center;
    padding: 34px !important;
    color: var(--bp-muted);
}

/* PAGINATION */

.bp-etenders-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-etenders-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-etenders-stat-card {
        max-width: 280px;
    }
}

@media (max-width: 760px) {
    .bp-etenders-hero {
        padding: 42px 0;
    }

    .bp-etenders-hero h1 {
        font-size: 32px;
    }

    .bp-etenders-search-form {
        grid-template-columns: 1fr;
    }

    .bp-etenders-search-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bp-etenders-results-head {
        display: grid;
        align-items: start;
    }

    .bp-etenders-results-head p {
        text-align: left;
    }

    .bp-etenders-tabs a {
        flex: 1 1 50%;
        justify-content: center;
        border-bottom: 1px solid var(--bp-border);
    }
}

@media (max-width: 520px) {
    .bp-etenders-search-actions {
        grid-template-columns: 1fr;
    }

    .bp-etenders-tabs a {
        flex-basis: 100%;
    }
}


/* =====================================================
   BUSINESS PAGES SINGLE TENDER PAGE
===================================================== */

.bp-tender-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-tender-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 48px 0 44px;
}

.bp-tender-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.bp-tender-back:hover {
    color: #ffffff;
}

.bp-tender-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
}

.bp-tender-title > span,
.bp-tender-card-head > span,
.bp-tender-side-card > span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-tender-title h1 {
    margin: 14px 0 14px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.6px;
    font-weight: 900;
}

.bp-tender-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bp-tender-hero-meta small {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    color: rgba(255,255,255,.9);
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 750;
}

/* STATUS CARD */

.bp-tender-status-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
}

.bp-tender-status-card span {
    display: block;
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bp-tender-status-card strong {
    display: inline-flex;
    margin-top: 10px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 900;
}

.bp-tender-status-card strong.warning {
    background: #b66a00;
}

.bp-tender-status-card strong.closed {
    background: var(--bp-muted);
}

.bp-tender-status-card small {
    display: block;
    margin-top: 12px;
    color: var(--bp-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* BODY */

.bp-tender-body {
    padding: 28px 0 76px;
}

.bp-tender-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    align-items: start;
}

.bp-tender-main {
    display: grid;
    gap: 18px;
}

/* CARDS */

.bp-tender-card,
.bp-tender-side-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-tender-card-head h2 {
    margin: 10px 0 0;
    color: var(--bp-navy);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.bp-tender-copy {
    margin-top: 14px;
}

.bp-tender-copy p {
    margin: 0;
    color: var(--bp-text);
    font-size: 14px;
    line-height: 1.8;
}

/* INFO GRID */

.bp-tender-info-grid,
.bp-tender-contact-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bp-tender-info-grid div,
.bp-tender-contact-grid div,
.bp-tender-contact-grid a {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 12px;
    color: var(--bp-text);
    text-decoration: none;
}

.bp-tender-info-grid .wide {
    grid-column: 1 / -1;
}

.bp-tender-info-grid span,
.bp-tender-contact-grid span {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.bp-tender-info-grid strong,
.bp-tender-contact-grid strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 850;
}

.bp-tender-contact-grid a:hover {
    border-color: var(--bp-dark-navy);
    background: #ffffff;
}

/* DOCUMENTS */

.bp-tender-docs {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.bp-tender-docs a {
    min-height: 44px;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    background: #ffffff;
    color: var(--bp-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 850;
}

.bp-tender-docs a i {
    color: var(--bp-dark-navy);
}

.bp-tender-docs a:hover {
    background: var(--bp-light-blue);
    border-color: var(--bp-dark-navy);
}

.bp-tender-docs p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
}

/* SIDEBAR */

.bp-tender-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.bp-tender-side-card.sticky {
    position: sticky;
    top: 110px;
}

.bp-tender-side-card h3 {
    margin: 10px 0 14px;
    color: var(--bp-navy);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.bp-tender-summary-list {
    display: grid;
    gap: 10px;
}

.bp-tender-summary-list div {
    border-top: 1px solid #edf2f8;
    padding-top: 10px;
}

.bp-tender-summary-list div:first-child {
    border-top: 0;
    padding-top: 0;
}

.bp-tender-summary-list small {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.bp-tender-summary-list strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 850;
}

.bp-tender-summary-list strong.warning {
    color: #b66a00;
}

.bp-tender-summary-list strong.closed {
    color: var(--bp-muted);
}

.bp-tender-submit-btn,
.bp-tender-help-card a {
    display: inline-flex;
    margin-top: 16px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    padding: 0 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.bp-tender-submit-btn:hover,
.bp-tender-help-card a:hover {
    background: var(--bp-blue);
}

/* HELP CARD */

.bp-tender-help-card {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-tender-help-card h3 {
    color: #ffffff;
}

.bp-tender-help-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
}

.bp-tender-help-card a {
    background: #ffffff;
    color: var(--bp-dark-navy);
}

.bp-tender-help-card a:hover {
    background: var(--bp-gold);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-tender-hero-grid,
    .bp-tender-grid {
        grid-template-columns: 1fr;
    }

    .bp-tender-sidebar,
    .bp-tender-side-card.sticky {
        position: static;
    }

    .bp-tender-status-card {
        max-width: 360px;
    }
}

@media (max-width: 700px) {
    .bp-tender-hero {
        padding: 40px 0 34px;
    }

    .bp-tender-title h1 {
        font-size: 30px;
    }

    .bp-tender-card,
    .bp-tender-side-card {
        padding: 16px;
    }

    .bp-tender-info-grid,
    .bp-tender-contact-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   LIST YOUR BUSINESS PAGE
===================================================== */

.bp-list-business-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-list-business-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-list-business-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-list-business-hero span,
.bp-list-form-intro span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-list-business-hero h1 {
    max-width: 850px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-list-business-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-list-business-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-list-business-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-list-business-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-list-business-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* BENEFITS */

.bp-list-benefits-section {
    padding: 24px 0 0;
}

.bp-list-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-list-benefit {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-list-benefit i {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.bp-list-benefit h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-list-benefit p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* FORM */

.bp-list-form-section {
    padding: 24px 0 76px;
}

.bp-list-form-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bp-list-form-intro {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 28px;
    position: sticky;
    top: 110px;
}

.bp-list-form-intro h2 {
    margin: 12px 0 12px;
    color: var(--bp-navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 900;
}

.bp-list-form-intro p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-list-note {
    margin-top: 22px;
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
}

.bp-list-note strong {
    display: block;
    color: var(--bp-navy);
    font-size: 14px;
    margin-bottom: 6px;
}

.bp-list-form-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 24px;
}

.bp-list-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bp-field {
    display: grid;
    gap: 7px;
}

.bp-field.full {
    grid-column: 1 / -1;
}

.bp-field label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-field input,
.bp-field select,
.bp-field textarea {
    width: 100%;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-text);
    border-radius: 4px;
    min-height: 46px;
    padding: 0 13px;
    outline: none;
    font-size: 14px;
}

.bp-field textarea {
    min-height: 135px;
    padding: 13px;
    resize: vertical;
}

.bp-field input:focus,
.bp-field select:focus,
.bp-field textarea:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-honeypot-field {
    position: absolute !important;
    left: -99999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bp-list-submit {
    margin-top: 16px;
    width: 100%;
    min-height: 48px;
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.bp-list-submit:hover {
    background: var(--bp-navy);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .bp-list-business-hero-grid,
    .bp-list-form-layout {
        grid-template-columns: 1fr;
    }

    .bp-list-form-intro {
        position: static;
    }

    .bp-list-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bp-list-business-hero {
        padding: 42px 0;
    }

    .bp-list-business-hero h1 {
        font-size: 32px;
    }

    .bp-list-form-grid {
        grid-template-columns: 1fr;
    }

    .bp-list-form-card,
    .bp-list-form-intro {
        padding: 18px;
    }

    .bp-list-form-intro h2 {
        font-size: 24px;
    }
}

/* =====================================================
   FOOTER NEWSLETTER FORM STATES
===================================================== */

.bp-newsletter-success,
.bp-newsletter-error {
    margin-top: 12px;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
}

.bp-newsletter-success {
    background: rgba(237, 248, 241, .14);
    border: 1px solid rgba(185, 230, 200, .45);
    color: #ffffff;
}

.bp-newsletter-error {
    background: rgba(255, 243, 243, .12);
    border: 1px solid rgba(241, 185, 185, .45);
    color: #ffffff;
}


/* =====================================================
   ABOUT US PAGE
===================================================== */

.bp-about-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-about-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-about-hero span,
.bp-about-intro-card span,
.bp-about-section-head span,
.bp-about-mission-card span,
.bp-about-cta span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-about-hero h1 {
    max-width: 950px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-about-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-about-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-about-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-about-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-about-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* INTRO */

.bp-about-intro-section {
    padding: 28px 0 0;
}

.bp-about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    align-items: stretch;
}

.bp-about-intro-card,
.bp-about-image-card,
.bp-about-value,
.bp-about-mission-card,
.bp-about-cta {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
}

.bp-about-intro-card {
    padding: 28px;
}

.bp-about-intro-card h2,
.bp-about-section-head h2,
.bp-about-mission-card h2,
.bp-about-cta h2 {
    margin: 12px 0 12px;
    color: var(--bp-navy);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.bp-about-intro-card h2 {
    font-size: 34px;
}

.bp-about-intro-card p {
    margin: 0 0 16px;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.8;
}

.bp-about-intro-card p:last-child {
    margin-bottom: 0;
}

.bp-about-image-card {
    overflow: hidden;
    min-height: 360px;
}

.bp-about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* VALUES */

.bp-about-values-section {
    padding: 28px 0 0;
}

.bp-about-section-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 16px;
}

.bp-about-section-head h2 {
    font-size: 30px;
}

.bp-about-section-head p {
    max-width: 720px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-about-value {
    padding: 20px;
}

.bp-about-value i {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.bp-about-value h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-about-value p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* MISSION */

.bp-about-mission-section {
    padding: 28px 0 0;
}

.bp-about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bp-about-mission-card {
    padding: 26px;
}

.bp-about-mission-card h2 {
    font-size: 28px;
}

.bp-about-mission-card p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-about-mission-card.dark {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-about-mission-card.dark h2 {
    color: #ffffff;
}

.bp-about-mission-card.dark p {
    color: rgba(255,255,255,.78);
}

/* CTA */

.bp-about-cta-section {
    padding: 28px 0 76px;
}

.bp-about-cta {
    padding: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.bp-about-cta h2 {
    font-size: 30px;
}

.bp-about-cta p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-about-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-about-cta-actions a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-about-cta-actions a:last-child {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-about-cta-actions a:hover {
    background: var(--bp-blue);
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .bp-about-hero-grid,
    .bp-about-intro-grid,
    .bp-about-mission-grid {
        grid-template-columns: 1fr;
    }

    .bp-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-about-image-card {
        min-height: 280px;
    }

    .bp-about-cta {
        display: grid;
    }
}

@media (max-width: 620px) {
    .bp-about-hero {
        padding: 42px 0;
    }

    .bp-about-hero h1 {
        font-size: 32px;
    }

    .bp-about-intro-card,
    .bp-about-section-head,
    .bp-about-mission-card,
    .bp-about-cta {
        padding: 18px;
    }

    .bp-about-intro-card h2,
    .bp-about-section-head h2,
    .bp-about-mission-card h2,
    .bp-about-cta h2 {
        font-size: 24px;
    }

    .bp-about-values-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   CONTACT US PAGE
===================================================== */

.bp-contact-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

.bp-contact-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-contact-hero span,
.bp-contact-info-card > span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-contact-hero h1 {
    max-width: 850px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-contact-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-contact-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-contact-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-contact-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-contact-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

.bp-contact-options-section {
    padding: 24px 0 0;
}

.bp-contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-contact-option {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-contact-option i {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.bp-contact-option h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-contact-option p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bp-contact-form-section {
    padding: 24px 0 76px;
}

.bp-contact-form-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bp-contact-info-card,
.bp-contact-form-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 28px;
}

.bp-contact-info-card {
    position: sticky;
    top: 110px;
}

.bp-contact-info-card h2 {
    margin: 12px 0 12px;
    color: var(--bp-navy);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 900;
}

.bp-contact-info-card p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-contact-info-list {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.bp-contact-info-list div,
.bp-contact-note {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
}

.bp-contact-info-list small {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 5px;
}

.bp-contact-info-list strong {
    display: block;
    color: var(--bp-navy);
    font-size: 13px;
    line-height: 1.4;
}

.bp-contact-note {
    margin-top: 18px;
}

.bp-contact-note strong {
    display: block;
    color: var(--bp-navy);
    font-size: 14px;
    margin-bottom: 6px;
}

.bp-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bp-field.full {
    grid-column: 1 / -1;
}

.bp-field {
    display: grid;
    gap: 7px;
}

.bp-field label {
    color: var(--bp-navy);
    font-size: 12px;
    font-weight: 850;
}

.bp-field input,
.bp-field textarea {
    width: 100%;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    color: var(--bp-text);
    border-radius: 4px;
    min-height: 46px;
    padding: 0 13px;
    outline: none;
    font-size: 14px;
}

.bp-field textarea {
    min-height: 135px;
    padding: 13px;
    resize: vertical;
}

.bp-field input:focus,
.bp-field textarea:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-honeypot-field {
    position: absolute !important;
    left: -99999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bp-contact-submit {
    margin-top: 16px;
    width: 100%;
    min-height: 48px;
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.bp-contact-submit:hover {
    background: var(--bp-navy);
}

@media (max-width: 1000px) {
    .bp-contact-hero-grid,
    .bp-contact-form-layout {
        grid-template-columns: 1fr;
    }

    .bp-contact-info-card {
        position: static;
    }

    .bp-contact-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .bp-contact-hero {
        padding: 42px 0;
    }

    .bp-contact-hero h1 {
        font-size: 32px;
    }

    .bp-contact-form-grid {
        grid-template-columns: 1fr;
    }

    .bp-contact-info-card,
    .bp-contact-form-card {
        padding: 18px;
    }

    .bp-contact-info-card h2 {
        font-size: 24px;
    }
}

/* =====================================================
   HELP CENTER PAGE
===================================================== */

.bp-help-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-help-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-help-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-help-hero span,
.bp-help-search-card span,
.bp-help-section-head span,
.bp-help-faq-intro span,
.bp-help-cta span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-help-hero h1 {
    max-width: 850px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-help-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-help-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-help-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-help-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-help-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH */

.bp-help-search-section {
    padding: 24px 0 0;
}

.bp-help-search-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 22px;
}

.bp-help-search-card h2,
.bp-help-section-head h2,
.bp-help-faq-intro h2,
.bp-help-cta h2 {
    margin: 10px 0 12px;
    color: var(--bp-navy);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.bp-help-search-card h2 {
    font-size: 28px;
}

.bp-help-search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    max-width: 760px;
}

.bp-help-search-box input {
    min-height: 52px;
    border: 0;
    padding: 0 15px;
    outline: none;
    color: var(--bp-text);
    font-size: 14px;
}

.bp-help-search-box button {
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    cursor: pointer;
}

/* CATEGORIES */

.bp-help-categories-section {
    padding: 24px 0 0;
}

.bp-help-section-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 16px;
}

.bp-help-section-head h2 {
    font-size: 30px;
}

.bp-help-section-head p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bp-help-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

.bp-help-card:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-2px);
}

.bp-help-card i {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.bp-help-card h3 {
    margin: 0 0 8px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-help-card p {
    margin: 0 0 14px;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
}

.bp-help-card strong {
    color: var(--bp-dark-navy);
    font-size: 12px;
    font-weight: 900;
}

/* FAQ */

.bp-help-faq-section {
    padding: 24px 0 0;
}

.bp-help-faq-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bp-help-faq-intro,
.bp-help-faq-list details,
.bp-help-cta {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
}

.bp-help-faq-intro {
    padding: 26px;
    position: sticky;
    top: 110px;
}

.bp-help-faq-intro h2 {
    font-size: 30px;
}

.bp-help-faq-intro p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-help-faq-list {
    display: grid;
    gap: 12px;
}

.bp-help-faq-list details {
    padding: 0;
    overflow: hidden;
}

.bp-help-faq-list summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--bp-navy);
    font-size: 14px;
    font-weight: 900;
    list-style: none;
}

.bp-help-faq-list summary::-webkit-details-marker {
    display: none;
}

.bp-help-faq-list summary::after {
    content: "+";
    float: right;
    color: var(--bp-dark-navy);
    font-weight: 900;
}

.bp-help-faq-list details[open] summary::after {
    content: "−";
}

.bp-help-faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* CTA */

.bp-help-cta-section {
    padding: 24px 0 76px;
}

.bp-help-cta {
    padding: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.bp-help-cta h2 {
    font-size: 30px;
}

.bp-help-cta p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-help-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-help-cta-actions a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-help-cta-actions a:last-child {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-help-cta-actions a:hover {
    background: var(--bp-blue);
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .bp-help-hero-grid,
    .bp-help-faq-layout {
        grid-template-columns: 1fr;
    }

    .bp-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-help-faq-intro {
        position: static;
    }

    .bp-help-cta {
        display: grid;
    }
}

@media (max-width: 620px) {
    .bp-help-hero {
        padding: 42px 0;
    }

    .bp-help-hero h1 {
        font-size: 32px;
    }

    .bp-help-grid {
        grid-template-columns: 1fr;
    }

    .bp-help-search-card,
    .bp-help-section-head,
    .bp-help-faq-intro,
    .bp-help-cta {
        padding: 18px;
    }

    .bp-help-search-card h2,
    .bp-help-section-head h2,
    .bp-help-faq-intro h2,
    .bp-help-cta h2 {
        font-size: 24px;
    }
}


/* =====================================================
   SITE MAP PAGE
===================================================== */

.bp-sitemap-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

.bp-sitemap-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-sitemap-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-sitemap-hero span,
.bp-sitemap-head span,
.bp-sitemap-cta span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-sitemap-hero h1 {
    max-width: 850px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-sitemap-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-sitemap-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-sitemap-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-sitemap-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-sitemap-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* BODY */

.bp-sitemap-section {
    padding: 28px 0 0;
}

.bp-sitemap-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 16px;
}

.bp-sitemap-head h2,
.bp-sitemap-cta h2 {
    margin: 10px 0 12px;
    color: var(--bp-navy);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.bp-sitemap-head p,
.bp-sitemap-cta p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bp-sitemap-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
}

.bp-sitemap-card h3 {
    margin: 0 0 14px;
    color: var(--bp-navy);
    font-size: 16px;
    font-weight: 900;
}

.bp-sitemap-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.bp-sitemap-card a {
    color: var(--bp-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
}

.bp-sitemap-card a:hover {
    color: var(--bp-dark-navy);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* CTA */

.bp-sitemap-cta-section {
    padding: 28px 0 76px;
}

.bp-sitemap-cta {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.bp-sitemap-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-sitemap-cta-actions a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-sitemap-cta-actions a:last-child {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-sitemap-cta-actions a:hover {
    background: var(--bp-blue);
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-sitemap-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-sitemap-cta {
        display: grid;
    }
}

@media (max-width: 620px) {
    .bp-sitemap-hero {
        padding: 42px 0;
    }

    .bp-sitemap-hero h1 {
        font-size: 32px;
    }

    .bp-sitemap-grid {
        grid-template-columns: 1fr;
    }

    .bp-sitemap-head,
    .bp-sitemap-card,
    .bp-sitemap-cta {
        padding: 18px;
    }

    .bp-sitemap-head h2,
    .bp-sitemap-cta h2 {
        font-size: 24px;
    }
}

/* =====================================================
   BUSINESS PAGES ERROR PAGES
===================================================== */

.bp-error-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

.bp-error-hero {
    min-height: 68vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

.bp-error-card {
    max-width: 760px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 6px;
    padding: 42px;
    box-shadow: 0 18px 40px rgba(0,23,53,.18);
}

.bp-error-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bp-error-card h1 {
    margin: 18px 0 12px;
    color: var(--bp-navy);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.bp-error-card p {
    max-width: 620px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 15px;
    line-height: 1.75;
}

.bp-error-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bp-error-actions a {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 850;
}

.bp-error-actions a:nth-child(2) {
    background: var(--bp-blue);
}

.bp-error-actions a:nth-child(3) {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-error-actions a:hover {
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

@media (max-width: 700px) {
    .bp-error-hero {
        min-height: 60vh;
        padding: 46px 0;
    }

    .bp-error-card {
        padding: 24px;
    }

    .bp-error-actions {
        display: grid;
    }

    .bp-error-actions a {
        width: 100%;
    }
}

/* =====================================================
   BUSINESS PAGES CATEGORIES PAGE
===================================================== */

.bp-categories-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

/* HERO */

.bp-categories-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?q=80&w=1800");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 54px 0 46px;
}

.bp-categories-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: center;
}

.bp-categories-hero span,
.bp-categories-search-input label,
.bp-categories-results-head span,
.bp-categories-cta span,
.bp-categories-empty span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-categories-hero h1 {
    max-width: 900px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 900;
}

.bp-categories-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}

.bp-categories-stat-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 6px;
    padding: 24px;
    color: var(--bp-navy);
    text-align: center;
}

.bp-categories-stat-card strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
}

.bp-categories-stat-card span {
    display: block;
    margin-top: 8px;
    color: var(--bp-navy);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-categories-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

/* SEARCH */

.bp-categories-search-panel {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(0,31,69,.05);
}

.bp-categories-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.bp-categories-search-input {
    display: grid;
    gap: 7px;
}

.bp-categories-search-input label {
    color: var(--bp-navy);
}

.bp-categories-search-input input {
    min-height: 48px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 14px;
    color: var(--bp-text);
    outline: none;
    font-size: 14px;
}

.bp-categories-search-input input:focus {
    border-color: var(--bp-dark-navy);
    background: #f8fbff;
}

.bp-categories-search-actions {
    display: flex;
    gap: 8px;
}

.bp-categories-search-actions button,
.bp-categories-search-actions a {
    min-height: 48px;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border: 1px solid var(--bp-dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    white-space: nowrap;
}

.bp-categories-search-actions a {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-color: var(--bp-border);
}

.bp-categories-search-actions button:hover {
    background: var(--bp-blue);
}

/* SHORTCUTS */

.bp-categories-shortcuts-section {
    background: #ffffff;
    border-bottom: 1px solid var(--bp-border);
}

.bp-categories-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bp-categories-shortcuts a {
    min-height: 64px;
    padding: 0 18px;
    border-left: 1px solid var(--bp-border);
    color: var(--bp-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 850;
}

.bp-categories-shortcuts a:last-child {
    border-right: 1px solid var(--bp-border);
}

.bp-categories-shortcuts i {
    color: var(--bp-dark-navy);
}

.bp-categories-shortcuts a:hover {
    background: var(--bp-light-blue);
}

/* RESULTS */

.bp-categories-results-section {
    padding: 24px 0 0;
}

.bp-categories-results-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

.bp-categories-results-head span {
    color: var(--bp-muted);
}

.bp-categories-results-head h2 {
    margin: 8px 0 0;
    color: var(--bp-navy);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.7px;
    font-weight: 900;
}

.bp-categories-results-head p {
    max-width: 460px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

/* CATEGORY GRID */

.bp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bp-category-card {
    min-height: 104px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
}

.bp-category-card:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.06);
    transform: translateY(-2px);
}

.bp-category-icon {
    width: 42px;
    height: 42px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-category-info {
    min-width: 0;
}

.bp-category-info h3 {
    margin: 0 0 6px;
    color: var(--bp-navy);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.bp-category-info p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 12px;
    font-weight: 700;
}

.bp-category-arrow {
    color: var(--bp-dark-navy);
    font-size: 18px;
    font-weight: 900;
}

/* EMPTY */

.bp-categories-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 34px;
    text-align: center;
}

.bp-categories-empty h3 {
    margin: 10px 0 8px;
    color: var(--bp-navy);
    font-size: 24px;
    font-weight: 900;
}

.bp-categories-empty p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.7;
}

.bp-categories-empty a {
    margin-top: 16px;
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

/* CTA */

.bp-categories-cta-section {
    padding: 28px 0 76px;
}

.bp-categories-cta {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.bp-categories-cta h2 {
    margin: 10px 0 12px;
    color: var(--bp-navy);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.bp-categories-cta p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bp-categories-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-categories-cta-actions a {
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.bp-categories-cta-actions a:last-child {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-categories-cta-actions a:hover {
    background: var(--bp-blue);
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .bp-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .bp-categories-hero-grid {
        grid-template-columns: 1fr;
    }

    .bp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-categories-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-categories-cta {
        display: grid;
    }
}

@media (max-width: 700px) {
    .bp-categories-hero {
        padding: 42px 0;
    }

    .bp-categories-hero h1 {
        font-size: 32px;
    }

    .bp-categories-search-form {
        grid-template-columns: 1fr;
    }

    .bp-categories-search-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bp-categories-results-head {
        display: grid;
        align-items: start;
    }

    .bp-categories-results-head p {
        text-align: left;
    }

    .bp-categories-grid {
        grid-template-columns: 1fr;
    }

    .bp-categories-shortcuts {
        grid-template-columns: 1fr;
    }

    .bp-categories-shortcuts a {
        border-right: 1px solid var(--bp-border);
        border-bottom: 1px solid var(--bp-border);
    }
}

/* =====================================================
   ARTICLE SINGLE PAGE - PREMIUM FIX
===================================================== */

.bp-news-single-body-section {
    padding: 34px 0 80px;
    background: var(--bp-soft);
}

.bp-news-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

/* MAIN ARTICLE CARD */

.bp-news-single-content {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,31,69,.04);
}

.bp-news-single-text {
    padding: 34px;
    color: var(--bp-text);
    font-size: 15px;
    line-height: 1.95;
    overflow: hidden;
}

.bp-news-single-text p {
    margin: 0 0 20px;
}

/* BIGGER ARTICLE IMAGE */

.bp-news-float-image {
    float: left;
    width: min(430px, 50%);
    margin: 0 28px 20px 0;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 8px;
}

.bp-news-float-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.bp-news-float-image figcaption {
    margin-top: 8px;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bp-news-single-text::after {
    content: "";
    display: block;
    clear: both;
}

/* Remove huge first-letter if it is making text awkward */
.bp-news-single-text p:first-of-type::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
    font-weight: inherit;
    color: inherit;
}

/* SHARE BAR */

.bp-news-share {
    border-top: 1px solid var(--bp-border);
    padding: 18px 22px;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.bp-news-share > span {
    color: var(--bp-muted);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.bp-share-icons {
    display: flex;
    gap: 8px;
}

.bp-share-icons a {
    width: 34px;
    height: 34px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
}

.bp-share-icons a:hover {
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

/* SIDEBAR */

.bp-news-single-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.bp-news-side-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0,31,69,.035);
}

.bp-news-side-card h3 {
    margin: 0 0 14px;
    color: var(--bp-navy);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.bp-news-side-link {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 11px;
    padding: 12px 0;
    border-top: 1px solid #edf2f8;
    color: inherit;
    text-decoration: none;
}

.bp-news-side-link:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-news-side-link img {
    width: 88px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
}

.bp-news-side-link strong {
    display: block;
    color: var(--bp-navy);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 850;
}

.bp-news-side-link small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 700;
}

.bp-news-side-link:hover strong {
    color: var(--bp-blue);
}

/* MOST READ */

.bp-news-most-read {
    display: block;
    padding: 10px 0;
    border-top: 1px solid #edf2f8;
    text-decoration: none;
}

.bp-news-most-read:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.bp-news-most-read strong {
    display: block;
    color: var(--bp-navy);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 850;
}

.bp-news-most-read small {
    display: block;
    margin-top: 5px;
    color: var(--bp-muted);
    font-size: 10px;
    font-weight: 700;
}

.bp-news-most-read:hover strong {
    color: var(--bp-blue);
}

/* CTA CARD */

.bp-news-cta-card {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-news-cta-card h3 {
    color: #ffffff;
}

.bp-news-cta-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.65;
}

.bp-news-cta-card a {
    display: inline-flex;
    margin-top: 14px;
    min-height: 38px;
    padding: 0 13px;
    background: #ffffff;
    color: var(--bp-dark-navy);
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
}

.bp-news-cta-card a:hover {
    background: var(--bp-gold);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .bp-news-single-grid {
        grid-template-columns: 1fr;
    }

    .bp-news-single-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .bp-news-single-text {
        padding: 22px;
    }

    .bp-news-float-image {
        float: none;
        width: 100%;
        margin: 0 0 22px;
    }

    .bp-news-float-image img {
        height: auto;
        max-height: 320px;
    }

    .bp-news-share {
        display: grid;
        align-items: start;
    }
}

/* =====================================================
   HOME PUBLICATIONS NETWORK - A4 COVER STYLE
===================================================== */

.bp-publications-section {
    padding: 28px 0 0;
    background: var(--bp-soft);
}

.bp-publications-head {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
}

.bp-publications-head span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-publications-head h2 {
    margin: 8px 0 0;
    color: var(--bp-navy);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.8px;
    font-weight: 900;
}

.bp-publications-head p {
    max-width: 520px;
    margin: 0;
    color: var(--bp-muted);
    font-size: 13px;
    line-height: 1.65;
    text-align: right;
}

/* GRID */

.bp-publications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: stretch;
}

.bp-publication-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: .2s ease;
    display: flex;
    flex-direction: column;
}

.bp-publication-card:hover {
    border-color: rgba(0,43,92,.35);
    box-shadow: 0 10px 24px rgba(0,31,69,.07);
    transform: translateY(-2px);
}

/* A4 THUMBNAIL */

.bp-publication-thumb {
    height: 255px;
    background:
        linear-gradient(180deg, #f8fbff 0%, var(--bp-light-blue) 100%);
    border-bottom: 1px solid var(--bp-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.bp-publication-thumb img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(0,31,69,.16);
    transition: .25s ease;
}

.bp-publication-card:hover .bp-publication-thumb img {
    transform: scale(1.035);
}

/* INFO */

.bp-publication-info {
    padding: 14px;
    flex: 1;
}

.bp-publication-info span {
    display: block;
    color: var(--bp-gold);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px;
}

.bp-publication-info h3 {
    margin: 0 0 7px;
    color: var(--bp-navy);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.bp-publication-info p {
    margin: 0;
    color: var(--bp-muted);
    font-size: 12px;
    line-height: 1.55;
}

/* RESPONSIVE */

@media (max-width: 1400px) {
    .bp-publications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-publication-thumb {
        height: 330px;
    }
}

@media (max-width: 900px) {
    .bp-publications-head {
        display: grid;
        align-items: start;
    }

    .bp-publications-head p {
        text-align: left;
    }

    .bp-publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-publication-thumb {
        height: 340px;
    }
}

@media (max-width: 520px) {
    .bp-publications-grid {
        grid-template-columns: 1fr;
    }

    .bp-publication-thumb {
        height: 430px;
    }
}

/* =====================================================
   BUSINESS EXCELLENCE AWARDS PAGE
===================================================== */

.bp-excellence-page {
    background: var(--bp-soft);
    color: var(--bp-text);
}

.bp-excellence-hero {
    background:
        linear-gradient(135deg, rgba(0,23,53,.96), rgba(0,43,92,.9)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1800");
    background-size: cover;
    background-position: center;
    padding: 58px 0;
    color: #ffffff;
}

.bp-excellence-hero-card {
    max-width: 860px;
}

.bp-excellence-hero-card span,
.bp-excellence-side > span,
.bp-ex-card-head span {
    display: block;
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bp-excellence-hero-card h1 {
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
}

.bp-excellence-hero-card p {
    max-width: 700px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.75;
}

.bp-excellence-price {
    margin-top: 24px;
    display: inline-grid;
    background: rgba(255,255,255,.96);
    color: var(--bp-navy);
    border-radius: 6px;
    padding: 16px 20px;
}

.bp-excellence-price strong {
    font-size: 13px;
    text-transform: uppercase;
}

.bp-excellence-price span {
    color: var(--bp-navy);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

/* LAYOUT */

.bp-excellence-wizard-section {
    padding: 28px 0 76px;
}

.bp-excellence-layout {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.bp-excellence-side,
.bp-excellence-wizard {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 6px;
}

.bp-excellence-side {
    padding: 26px;
    position: sticky;
    top: 110px;
}

.bp-excellence-side h2 {
    margin: 12px 0 16px;
    color: var(--bp-navy);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.bp-excellence-benefits {
    display: grid;
    gap: 10px;
}

.bp-excellence-benefits div {
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bp-excellence-benefits i {
    color: var(--bp-dark-navy);
    font-size: 18px;
}

.bp-excellence-benefits strong {
    color: var(--bp-navy);
    font-size: 13px;
}

/* WIZARD */

.bp-excellence-wizard {
    overflow: hidden;
}

.bp-ex-progress {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 20px;
    background: var(--bp-dark-navy);
}

.bp-ex-progress-line {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 40px;
    height: 2px;
    background: rgba(255,255,255,.18);
}

.bp-ex-progress-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--bp-gold);
    transition: .35s ease;
}

.bp-ex-step {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
}

.bp-ex-step b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bp-navy);
    border: 2px solid rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
}

.bp-ex-step.active b,
.bp-ex-step.done b {
    border-color: var(--bp-gold);
    color: var(--bp-gold);
}

.bp-ex-step.done b {
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

.bp-ex-card.hidden,
.hidden {
    display: none !important;
}

.bp-ex-card-head {
    background: var(--bp-navy);
    padding: 20px 24px;
}

.bp-ex-card-head h2 {
    margin: 8px 0 4px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.bp-ex-card-head p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}

.bp-ex-card-body {
    padding: 24px;
}

.bp-ex-question {
    margin-bottom: 22px;
}

.bp-ex-question h3 {
    margin: 0 0 10px;
    color: var(--bp-navy);
    font-size: 15px;
    font-weight: 900;
}

.bp-ex-question button {
    width: 100%;
    min-height: 42px;
    margin-bottom: 7px;
    border: 1px solid var(--bp-border);
    background: var(--bp-light-blue);
    color: var(--bp-text);
    border-radius: 4px;
    text-align: left;
    padding: 0 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}

.bp-ex-question button:hover {
    border-color: var(--bp-gold);
}

.bp-ex-question button.selected {
    background: var(--bp-dark-navy);
    color: var(--bp-gold);
    border-color: var(--bp-dark-navy);
}

.bp-ex-bonus {
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 6px;
    padding: 14px;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.bp-ex-bonus i {
    color: var(--bp-gold);
    font-size: 22px;
}

.bp-ex-bonus strong {
    display: block;
    color: var(--bp-gold);
}

.bp-ex-bonus small {
    color: rgba(255,255,255,.7);
}

.bp-ex-nav {
    border-top: 1px solid var(--bp-border);
    background: #f7f9fc;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.bp-ex-nav button,
.bp-ex-result button,
.bp-ex-pay-btn {
    min-height: 42px;
    border: 0;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bp-ex-nav button:hover,
.bp-ex-result button:hover,
.bp-ex-pay-btn:hover {
    background: var(--bp-blue);
}

/* RESULT */

.bp-ex-result {
    text-align: center;
    padding: 46px 26px;
}

.bp-ex-result i {
    color: var(--bp-gold);
    font-size: 46px;
}

.bp-ex-result h2 {
    color: var(--bp-navy);
    font-size: 32px;
    margin: 12px 0;
}

.bp-ex-result p {
    color: var(--bp-muted);
    font-size: 14px;
}

.bp-ex-score {
    max-width: 420px;
    margin: 22px auto;
}

.bp-ex-score span {
    display: block;
    color: var(--bp-navy);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.bp-ex-score div {
    height: 16px;
    background: var(--bp-light-blue);
    border-radius: 20px;
    overflow: hidden;
}

.bp-ex-score b {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--bp-dark-navy), var(--bp-gold));
    transition: 1s ease;
}

.bp-ex-result input {
    max-width: 420px;
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--bp-border);
    border-radius: 4px;
    padding: 0 14px;
    margin-bottom: 12px;
}

/* CHECKOUT */

.bp-ex-checkout {
    padding: 24px;
}

.bp-ex-invoice-row,
.bp-ex-total {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--bp-border);
    padding: 12px 0;
}

.bp-ex-checkout ul {
    margin: 16px 0;
    padding-left: 20px;
    color: var(--bp-muted);
    line-height: 1.8;
}

.bp-ex-addon {
    display: flex;
    gap: 10px;
    background: var(--bp-light-blue);
    border: 1px solid var(--bp-border);
    border-radius: 6px;
    padding: 14px;
    cursor: pointer;
}

.bp-ex-total {
    margin-top: 18px;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 6px;
    padding: 18px;
    border: 0;
}

.bp-ex-total small {
    color: rgba(255,255,255,.65);
}

.bp-ex-total strong {
    color: var(--bp-gold);
    font-size: 24px;
}

.bp-ex-pay-btn {
    width: 100%;
    margin-top: 16px;
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .bp-excellence-layout {
        grid-template-columns: 1fr;
    }

    .bp-excellence-side {
        position: static;
    }
}

@media (max-width: 620px) {
    .bp-excellence-hero {
        padding: 42px 0;
    }

    .bp-excellence-hero-card h1 {
        font-size: 34px;
    }

    .bp-ex-progress {
        overflow-x: auto;
    }

    .bp-ex-card-body,
    .bp-ex-checkout {
        padding: 18px;
    }

    .bp-ex-nav {
        display: grid;
    }
}

/* =====================================================
   HOME HERO CAROUSEL + BUYERS GUIDE FINAL CLEAN FIX
   Keeps sidebar + makes hero and Buyers Guide same height
===================================================== */

/* Keep the original 3-column homepage structure */
.bp-home-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 245px;
    grid-template-areas:
        "sidebar hero guide"
        "sidebar tools tools"
        "sidebar featured featured";
    gap: 18px;
    align-items: stretch;
}

/* Sidebar must stay in place */
.bp-category-sidebar {
    grid-area: sidebar;
}

/* Hero carousel */
.bp-hero-banner {
    grid-area: hero;
    position: relative;
    width: 100%;
    height: 360px;
    min-height: 360px;
    padding: 0 !important;
    display: block !important;
    align-items: unset !important;
    border-radius: 14px;
    overflow: hidden;
    background: #001f45;
    border: 1px solid var(--bp-border);
    box-shadow: 0 14px 34px rgba(0, 31, 69, 0.14);
}

/* Remove old decorative star from previous hero */
.bp-hero-banner::after {
    display: none !important;
    content: none !important;
}

/* Full-image slides */
.bp-image-carousel .bp-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 6s ease;
    transform: scale(1);
}

/* Active slide */
.bp-image-carousel .bp-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1.018);
}

/* No overlay because text is already inside the image */
.bp-image-carousel .bp-hero-slide::before {
    display: none !important;
    content: none !important;
}

/* Remove old text overlay if it still exists somewhere */
.bp-image-carousel .bp-hero-copy {
    display: none !important;
}

/* Carousel dots */
.bp-hero-dots {
    position: absolute;
    left: 34px;
    bottom: 17px;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: none !important;
}

.bp-hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    cursor: pointer;
    opacity: 1;
    transition: all 0.25s ease;
}

.bp-hero-dots span.active {
    width: 26px;
    background: var(--bp-gold);
}

/* Carousel arrows */
.bp-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.48);
    background: rgba(0, 23, 53, 0.52);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-hero-arrow.left {
    left: 14px;
}

.bp-hero-arrow.right {
    right: 14px;
}

.bp-hero-arrow:hover {
    background: var(--bp-gold);
    color: var(--bp-deep-navy);
    border-color: var(--bp-gold);
}

/* Buyers Guide card */
.bp-buyers-guide-card {
    grid-area: guide;
    height: 360px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 34px rgba(0, 31, 69, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Buyers Guide cover image */
.bp-buyers-cover-img {
    flex: 1;
    width: 100%;
    min-height: 0;
    border-radius: 11px;
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid rgba(0,0,0,0.08);
}

.bp-buyers-cover-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Buyers Guide action buttons */
.bp-buyers-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    flex-shrink: 0;
}

.bp-buyers-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-buyers-btn.view {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-buyers-btn.download {
    background: var(--bp-gold);
    color: var(--bp-deep-navy);
}

.bp-buyers-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

/* Responsive homepage grid */
@media (max-width: 1400px) {
    .bp-home-grid {
        grid-template-columns: 240px minmax(0, 1fr) 230px;
        gap: 14px;
    }
}

@media (max-width: 1100px) {
    .bp-home-grid {
        grid-template-columns: 230px minmax(0, 1fr);
        grid-template-areas:
            "sidebar hero"
            "sidebar tools"
            "sidebar featured";
    }

    .bp-buyers-guide-card {
        display: none;
    }
}

@media (max-width: 900px) {
    .bp-home-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "tools"
            "featured";
    }

    .bp-category-sidebar {
        display: none;
    }

    .bp-hero-banner {
        height: 300px;
        min-height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 620px) {
    .bp-hero-banner {
        height: 230px;
        min-height: 230px;
    }

    .bp-hero-dots {
        left: 20px;
        bottom: 14px;
    }

    .bp-hero-arrow {
        width: 31px;
        height: 31px;
        font-size: 23px;
    }

    .bp-hero-arrow.left {
        left: 10px;
    }

    .bp-hero-arrow.right {
        right: 10px;
    }
}

@media (max-width: 420px) {
    .bp-hero-banner {
        height: 195px;
        min-height: 195px;
    }
}
/* =====================================================
   HOMEPAGE MINI BUYERS GUIDE CARD IMAGE VERSION
===================================================== */

.bp-guide-mini {
    display: flex;
    flex-direction: column;
}

.bp-guide-cover-mini-img {
    width: 100%;
    height: 310px;
    border-radius: 6px;
    overflow: hidden;
    background: #f4f7fb;
    border: 1px solid var(--bp-border);
}

.bp-guide-cover-mini-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.bp-guide-mini-btn,
.bp-guide-mini > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 8px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.bp-guide-mini-btn.view {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-guide-mini-btn.download {
    background: var(--bp-gold);
    color: var(--bp-deep-navy);
}

.bp-guide-mini-btn.advertise {
    background: #ffffff;
    color: var(--bp-dark-navy);
    border: 1px solid var(--bp-border);
}

.bp-guide-mini-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* =====================================================
   FIXED HEADER - RELIABLE VERSION
===================================================== */

.bp-site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 31, 69, 0.10);
}

/* Push page content down so header does not cover it */
body {
    padding-top: 168px;
}

/* Header layers */
.bp-top-strip,
.bp-main-header,
.bp-nav-bar {
    position: relative;
    z-index: 99999;
}

/* Mobile spacing */
@media (max-width: 900px) {
    body {
        padding-top: 220px;
    }
}

@media (max-width: 620px) {
    body {
        padding-top: 235px;
    }
}

/* ===============================
   SHOP - BUSINESS PAGES MODULE
=============================== */

.bp-shop-page {
    background: var(--bp-soft);
    padding-bottom: 60px;
}

/* HERO */
.bp-shop-hero {
    background: linear-gradient(135deg, var(--bp-dark-navy), var(--bp-navy));
    color: #fff;
    padding: 60px 0;
}

.bp-shop-hero span {
    color: var(--bp-gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.bp-shop-hero h1 {
    font-size: 38px;
    margin: 10px 0;
    font-weight: 900;
}

.bp-shop-hero p {
    color: rgba(255,255,255,.75);
    max-width: 600px;
}

/* TOOLBAR */
.bp-shop-toolbar {
    background: #fff;
    border-bottom: 1px solid var(--bp-border);
    padding: 16px 0;
}

.bp-shop-toolbar form {
    display: grid;
    grid-template-columns: 1fr 220px 140px 120px;
    gap: 10px;
}

.bp-shop-toolbar input,
.bp-shop-toolbar select {
    border: 1px solid var(--bp-border);
    padding: 10px;
    border-radius: 6px;
    outline: none;
}

/* GRID */
.bp-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

/* CARD */
.bp-shop-card {
    background: #fff;
    border: 1px solid var(--bp-border);
    border-radius: 10px;
    overflow: hidden;
    transition: .25s;
}

.bp-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
    border-color: var(--bp-gold);
}

.bp-shop-thumb {
    height: 180px;
    overflow: hidden;
    background: #f4f7fb;
}

.bp-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-shop-info {
    padding: 14px;
}

.bp-shop-info span {
    font-size: 11px;
    color: var(--bp-gold);
    font-weight: 800;
}

.bp-shop-info h3 {
    margin: 6px 0;
    font-size: 16px;
    color: var(--bp-navy);
}

.bp-shop-info p {
    font-size: 12px;
    color: var(--bp-muted);
}

/* ACTIONS */
.bp-shop-actions {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
}

.bp-shop-actions a {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
}

.bp-shop-actions a:first-child {
    background: var(--bp-dark-navy);
    color: #fff;
}

.bp-shop-actions a:last-child {
    border: 1px solid var(--bp-border);
    color: var(--bp-dark-navy);
}

/* EMPTY */
.bp-empty {
    text-align: center;
    padding: 40px;
    color: var(--bp-muted);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .bp-shop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .bp-shop-grid { grid-template-columns: repeat(2, 1fr); }

    .bp-shop-toolbar form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .bp-shop-grid { grid-template-columns: 1fr; }
}

/* ===============================
   SHOP BANNER STRIP (NO CROPPING FIX)
=============================== */

.bp-shop-banner-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 0;
}

.bp-shop-banner-item {
    flex: 0 0 auto;
    width: 250px;
    height: 300px;
    background: #fff;
    border: 1px solid var(--bp-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bp-shop-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ KEY FIX - NO CROPPING */
    padding: 10px;
    background: #fff;
}

/* SHOP GRID IMAGE FIX */
.bp-shop-thumb {
    height: 300px;
    width: 100%;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bp-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ FIXED */
    padding: 10px;
    background: #fff;
}


/* =====================================================
   BUSINESS PAGES - CATALOGUE MODULE
===================================================== */

.bp-catalogue-page {
    background: var(--bp-soft);
    padding-bottom: 60px;
}

/* HERO */
.bp-catalogue-hero {
    background: linear-gradient(135deg, var(--bp-dark-navy), var(--bp-navy));
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 20px;
}

.bp-catalogue-hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.bp-catalogue-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* GRID */
.bp-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* CARD */
.bp-catalogue-card {
    background: #fff;
    border: 1px solid var(--bp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.bp-catalogue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border-color: var(--bp-gold);
}

/* IMAGE AREA */
.bp-catalogue-thumb {
    height: 270px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid var(--bp-border);
}

.bp-catalogue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* IMPORTANT: no cropping */
    background: #fff;
}

/* INFO */
.bp-catalogue-info {
    padding: 12px 14px;
    text-align: center;
}

.bp-catalogue-info h3 {
    font-size: 13px;
    font-weight: 800;
    color: var(--bp-navy);
    margin: 0;
    line-height: 1.3;
}

/* EMPTY STATE */
.bp-catalogue-empty {
    text-align: center;
    padding: 40px;
    color: var(--bp-muted);
}

/* ERROR */
.bp-catalogue-error {
    text-align: center;
    padding: 15px;
    color: #b00020;
    font-weight: 600;
}

/* PAGINATION (if you add later) */
.bp-catalogue-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
}

.bp-catalogue-pagination button {
    background: #fff;
    border: 1px solid var(--bp-border);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.bp-catalogue-pagination button.active {
    background: var(--bp-dark-navy);
    color: #fff;
    border-color: var(--bp-dark-navy);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .bp-catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .bp-catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bp-catalogue-thumb {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .bp-catalogue-grid {
        grid-template-columns: 1fr;
    }

    .bp-catalogue-thumb {
        height: 320px;
    }

    .bp-catalogue-hero h1 {
        font-size: 26px;
    }
}


/* =====================================================
   BUSINESS PAGES HOME SPLIT / CATALOGUES / MARKETPLACE
   FINAL CLEAN VERSION
   Replace all old duplicate versions with this block only
===================================================== */

/* Main wrapper */
.bp-home-split {
    width: 100%;
    margin-top: 18px;
    overflow: hidden;
}

/* 
   IMPORTANT:
   This section sits inside the existing homepage grid.
   It should use only 2 columns:
   LEFT = Catalogues
   RIGHT = Marketplace
*/
.bp-home-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    width: 100%;
}

/* Shared panel styling */
.bp-home-panel {
    min-width: 0;
    height: 100%;
    min-height: 100%;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Left catalogue panel */
.bp-home-panel-light {
    background: #ffffff;
    border: 1px solid var(--bp-border);
}

/* Right marketplace panel */
.bp-home-panel-dark {
    background: linear-gradient(135deg, #061a33, #0b2a52);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Panel headings */
.bp-panel-head {
    margin-bottom: 14px;
    flex-shrink: 0;
}

.bp-panel-head h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--bp-navy);
}

.bp-home-panel-dark .bp-panel-head h2 {
    color: #ffffff;
}

.bp-panel-head p {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--bp-muted);
}

.bp-home-panel-dark .bp-panel-head p {
    color: rgba(255,255,255,0.72);
}

/* =====================================================
   LEFT: CATALOGUE MINI GRID
===================================================== */

.bp-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
    flex: 1;
    width: 100%;
}

.bp-mini-card {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #ffffff;
}

/* =====================================================
   RIGHT: MARKETPLACE SHOP GRID
===================================================== */

.bp-market-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-content: start;
    flex: 1;
    width: 100%;
}

/* Marketplace card */
.bp-market-shop-card {
    min-width: 0;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.25s ease;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
}

.bp-market-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}

/* Marketplace image */
.bp-market-shop-thumb {
    height: 135px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.bp-market-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #ffffff;
}

/* Marketplace info */
.bp-market-shop-info {
    padding: 10px;
    color: #ffffff;
    flex: 1;
}

.bp-market-shop-info span,
.bp-market-cat {
    display: block;
    color: var(--bp-gold);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.bp-market-shop-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 850;
}

.bp-market-shop-info small {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    line-height: 1.35;
}

/* =====================================================
   BUTTONS
===================================================== */

.bp-panel-btn,
.bp-panel-btn-dark {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.bp-panel-btn {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-panel-btn:hover {
    background: var(--bp-blue);
    color: #ffffff;
}

.bp-panel-btn-dark {
    background: var(--bp-gold);
    color: var(--bp-deep-navy);
}

.bp-panel-btn-dark:hover {
    background: #f1c76a;
    color: var(--bp-deep-navy);
}

/* Empty states */
.bp-home-panel .bp-empty {
    padding: 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--bp-muted);
    background: #f8fbff;
    border: 1px dashed var(--bp-border);
}

.bp-home-panel-dark .bp-empty {
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.14);
}

/* =====================================================
   SHOP PAGE IMAGE FIX
   Keeps 250 x 300 banners/catalogue-style images visible
===================================================== */

.bp-shop-thumb {
    height: 300px;
    width: 100%;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bp-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #ffffff;
}

.bp-shop-banner-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 0;
}

.bp-shop-banner-item {
    flex: 0 0 auto;
    width: 250px;
    height: 300px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bp-shop-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #ffffff;
}

/* =====================================================
   CATALOGUE PAGE IMAGE FIX
===================================================== */

.bp-catalogue-thumb {
    height: 270px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid var(--bp-border);
}

.bp-catalogue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .bp-home-split-grid {
        grid-template-columns: 1fr;
    }

    .bp-mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bp-market-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bp-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-market-shop-grid {
        grid-template-columns: 1fr;
    }

    .bp-mini-card {
        height: 170px;
    }

    .bp-market-shop-thumb {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .bp-home-panel {
        padding: 14px;
    }

    .bp-mini-grid {
        grid-template-columns: 1fr;
    }

    .bp-mini-card {
        height: 220px;
    }
}

/* =====================================================
   HOME SPLIT FULL WIDTH FIX
   Makes Catalogues + Marketplace cover the full content row
===================================================== */

/* Because this section sits inside .bp-home-grid */
.bp-home-split {
    grid-column: 2 / 4;
    width: 100%;
    min-width: 0;
}

/* Two equal columns */
.bp-home-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    width: 100%;
}

/* Equal panel height */
.bp-home-panel {
    min-width: 0;
    height: 100%;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

/* Catalogue panel */
.bp-home-panel-light {
    background: #ffffff;
    border: 1px solid var(--bp-border);
}

/* Marketplace panel */
.bp-home-panel-dark {
    background: linear-gradient(135deg, #061a33, #0b2a52);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Headings */
.bp-panel-head {
    margin-bottom: 14px;
}

.bp-panel-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.bp-panel-head p {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--bp-muted);
}

.bp-home-panel-dark .bp-panel-head p {
    color: rgba(255,255,255,0.75);
}

/* More catalogues to fill white space */
.bp-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    flex: 1;
    align-content: start;
}

.bp-mini-card {
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

/* Marketplace grid */
.bp-market-shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    flex: 1;
    align-content: start;
}

.bp-market-shop-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    transition: 0.25s ease;
}

.bp-market-shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.bp-market-shop-thumb {
    height: 125px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-market-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.bp-market-shop-info {
    padding: 10px;
}

.bp-market-shop-info span {
    display: block;
    color: var(--bp-gold);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
}

.bp-market-shop-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 850;
}

/* Buttons */
.bp-panel-btn,
.bp-panel-btn-dark {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.bp-panel-btn {
    background: var(--bp-dark-navy);
    color: #ffffff;
}

.bp-panel-btn-dark {
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

/* Responsive */
@media (max-width: 1100px) {
    .bp-home-split {
        grid-column: 1 / -1;
    }

    .bp-home-split-grid {
        grid-template-columns: 1fr;
    }

    .bp-mini-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bp-mini-grid,
    .bp-market-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bp-mini-grid,
    .bp-market-shop-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   HOMEPAGE CATALOGUES - 12 ITEM GRID
===================================================== */

.bp-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    flex: 1;
    align-content: start;
}

.bp-mini-card {
    height: 125px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bp-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .bp-mini-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bp-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .bp-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   HOMEPAGE CATALOGUES - BIGGER / MORE VISIBLE
===================================================== */

.bp-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 across gives bigger images */
    gap: 14px;
    flex: 1;
    align-content: start;
}

.bp-mini-card {
    height: 215px !important; /* increased from 120/125 */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--bp-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bp-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #ffffff;
}

/* Tablet */
@media (max-width: 1200px) {
    .bp-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-mini-card {
        height: 210px !important;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .bp-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-mini-card {
        height: 190px !important;
    }
}

@media (max-width: 520px) {
    .bp-mini-grid {
        grid-template-columns: 1fr;
    }

    .bp-mini-card {
        height: 260px !important;
    }
}

/* ==================================
   DIRECTORY SEARCH SIDEBAR
================================== */


.bp-directory-layout {

    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:20px;
    align-items:start;

}


.bp-directory-results {

    min-width:0;

}


/* RIGHT SIDEBAR */

.bp-search-sidebar {

    position:sticky;
    top:100px;

}


/* SIDEBAR BOX */

.bp-sidebar-card {

    background:#fff;
    border:1px solid var(--bp-border);
    border-radius:12px;
    padding:16px;
    margin-bottom:18px;
    overflow:hidden;

}


.bp-sidebar-card h3 {

    font-size:16px;
    font-weight:900;
    color:var(--bp-navy);
    margin:0 0 15px;
    text-transform:uppercase;

}


/* ==================================
   RELATED COMPANIES
================================== */


.bp-sidebar-company {

    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid #eee;
    text-decoration:none;

}


.bp-sidebar-company:last-child {

    border-bottom:0;

}


.bp-sidebar-company img {

    width:55px;
    height:55px;
    object-fit:contain;
    background:#fff;
    border:1px solid var(--bp-border);
    border-radius:6px;
    padding:5px;

}


.bp-sidebar-company span {

    color:#111;
    font-size:13px;
    font-weight:800;

}


/* ==================================
   SEARCH PROMOTION BANNERS
================================== */


.bp-search-banner {

    width:100%;
    height:260px;

    display:block;

    object-fit:cover;

    background:#fff;

    border:1px solid var(--bp-border);

    border-radius:8px;

    margin-bottom:14px;

}


/* Remove last banner spacing */

.bp-search-banner:last-child {

    margin-bottom:0;

}


/* Banner hover effect */

.bp-search-banner:hover {

    border-color:var(--bp-gold);

    transform:translateY(-2px);

    transition:.25s ease;

}


/* ==================================
   EMPTY STATE
================================== */


.bp-empty-copy {

    color:var(--bp-muted);
    font-size:13px;
    margin:0;

}


/* ==================================
   MOBILE
================================== */


@media(max-width:1000px){

    .bp-directory-layout {

        grid-template-columns:1fr;

    }


    .bp-search-sidebar {

        position:relative;
        top:auto;

    }


    .bp-search-banner {

        height:220px;

    }

}


/* =====================================================
   BUSINESS EXCELLENCE QR - HERO RIGHT SIDE VERSION
===================================================== */

.bp-company-main-card {
    grid-template-columns: 150px minmax(0, 1fr) !important;
}

.bp-company-title-with-qr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 28px;
    align-items: center;
    width: 100%;
}

.bp-company-title-content {
    min-width: 0;
}

.bp-be-hero-qr-card {
    width: 180px;
    justify-self: end;
    align-self: center;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 31, 69, 0.08);
}

.bp-be-hero-qr-copy span {
    display: block;
    color: var(--bp-gold);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.bp-be-hero-qr-copy strong {
    display: block;
    color: var(--bp-navy);
    font-size: 16px;
    line-height: 1.1;
    margin: 3px 0 3px;
}

.bp-be-hero-qr-copy small {
    display: block;
    color: var(--bp-muted);
    font-size: 10px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bp-be-hero-qr {
    width: 118px;
    height: 118px;
    margin: 0 auto 8px;
    background: #ffffff;
    border: 1px solid var(--bp-border);
    border-radius: 8px;
    padding: 5px;
}

.bp-be-hero-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bp-be-hero-qr-card a {
    min-height: 30px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bp-dark-navy);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-be-hero-qr-card a:hover {
    background: var(--bp-gold);
    color: var(--bp-dark-navy);
}

/* Mobile */
@media (max-width: 900px) {
    .bp-company-title-with-qr {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bp-be-hero-qr-card {
        justify-self: start;
        width: 190px;
    }
}

@media (max-width: 620px) {
    .bp-be-hero-qr-card {
        width: 100%;
        max-width: 240px;
    }

    .bp-be-hero-qr {
        width: 130px;
        height: 130px;
    }
}
/* =====================================================
   BUSINESS EXCELLENCE VIDEO PAGE
===================================================== */

.bp-video-page {
    background: #f4f7fb;
    color: var(--bp-text);
}

.bp-video-section {
    padding: 22px 0 34px;
}

.bp-video-card {
    background: #ffffff;
    border: 1px solid var(--bp-border);
    padding: 18px;
}

.bp-video-header {
    text-align: center;
    margin-bottom: 16px;
}

.bp-video-header span {
    display: block;
    color: var(--bp-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.bp-video-header h1 {
    margin: 0;
    color: var(--bp-navy);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
}

.bp-video-header p {
    margin: 8px 0 0;
    color: var(--bp-muted);
    font-size: 14px;
}

.bp-video-frame {
    background: #000;
    border: 1px solid var(--bp-border);
    overflow: hidden;
}

.bp-video-frame video {
    width: 100%;
    height: auto;
    display: block;
    max-height: calc(100vh - 230px);
    background: #000;
}

@media (max-width: 768px) {
    .bp-video-section {
        padding: 14px 0 24px;
    }

    .bp-video-card {
        padding: 10px;
    }

    .bp-video-header h1 {
        font-size: 26px;
    }

    .bp-video-frame video {
        max-height: none;
    }
}

/* =====================================================
   FINAL GLOBAL CONTAINER NORMALISATION
   Bootstrap-style container sizing for the whole website.
   This block is intentionally last so it overrides older
   duplicate .bp-container rules above.
===================================================== */

.container,
.bp-container {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
}

/* Bootstrap-like breakpoints */
@media (max-width: 1399.98px) {
    .container,
    .bp-container {
        max-width: 1140px !important;
    }
}

@media (max-width: 1199.98px) {
    .container,
    .bp-container {
        max-width: 960px !important;
    }
}

@media (max-width: 991.98px) {
    .container,
    .bp-container {
        max-width: 720px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 767.98px) {
    .container,
    .bp-container {
        max-width: 540px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

@media (max-width: 575.98px) {
    .container,
    .bp-container {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Full-width sections stay full width, but their inner content must use .bp-container */
.bp-top-strip,
.bp-main-header,
.bp-nav-bar,
.bp-footer-main,
.bp-footer-bottom,
.bp-home-main,
.bp-advertise-hero,
.bp-news-hero,
.bp-news-single-hero,
.bp-press-hero,
.bp-press-single-hero,
.bp-etenders-hero,
.bp-tender-hero,
.bp-list-business-hero,
.bp-about-hero,
.bp-contact-hero,
.bp-help-hero,
.bp-sitemap-hero,
.bp-categories-hero,
.bp-error-hero,
.bp-shop-hero,
.bp-catalogue-hero,
.bp-excellence-hero,
.bp-video-section {
    width: 100%;
}

/* Prevent oversized rows from escaping the container */
.bp-home-grid,
.bp-content-dashboard,
.bp-lower-dashboard,
.bp-footer-grid,
.bp-news-front-grid,
.bp-news-single-grid,
.bp-press-single-grid,
.bp-company-hero-grid,
.bp-company-layout,
.bp-dir-modern-hero-grid,
.bp-directory-layout,
.bp-tender-grid,
.bp-tender-hero-grid,
.bp-ad-form-layout,
.bp-list-form-layout,
.bp-contact-form-layout,
.bp-about-intro-grid,
.bp-help-faq-layout,
.bp-home-split-grid {
    max-width: 100%;
    min-width: 0;
}

/* Safer responsive header spacing with the fixed header */
@media (max-width: 900px) {
    body {
        padding-top: 220px;
    }
}

@media (max-width: 620px) {
    body {
        padding-top: 235px;
    }
}

/* Utility classes for pages that need either contained or full-bleed sections */
.bp-full-bleed {
    width: 100%;
}

.bp-contained {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

@media (max-width: 575.98px) {
    .bp-contained {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* =====================================================
   HOMEPAGE CAROUSEL - FULL IMAGE VISIBLE, LESS BLUE SPACE
===================================================== */

/* Reduce hero height so the full image fits better */
.bp-hero-banner {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 5 !important;
    background: transparent !important;
}

/* Keep the full image visible */
.bp-image-carousel .bp-hero-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

/* Remove extra blue background from carousel wrapper */
.bp-image-carousel,
.bp-hero-banner {
    background-color: transparent !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .bp-hero-banner {
        aspect-ratio: 16 / 6 !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .bp-hero-banner {
        aspect-ratio: 16 / 7 !important;
    }
}

/* Small mobile */
@media (max-width: 620px) {
    .bp-hero-banner {
        aspect-ratio: 16 / 8 !important;
    }
}

/* Very small mobile */
@media (max-width: 420px) {
    .bp-hero-banner {
        aspect-ratio: 16 / 9 !important;
    }
}