
.bhhs{
    width:min(640px,100%);
    color:#fff;
    font-family:inherit;
    position:relative;
    z-index:30;
}

.bhhs-launch{
    width:100%;
    min-height:62px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#1E3A5F;
    padding:0 24px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    text-align:left;
}
.bhhs-search-icon{font-size:23px;opacity:.55}
.bhhs-launch-label{font-size:15px;opacity:.62}
.bhhs-rotating{font-size:16px;font-weight:800}
.bhhs-panel{
    display:none;
    position:absolute;
    left:0;
    top:calc(100% + 12px);
    width:min(760px,calc(100vw - 32px));
    background:#fff;
    color:#172033;
    border-radius:22px;
    padding:26px;
    box-shadow:0 26px 70px rgba(8,31,56,.30);
    z-index:99999;
}
.bhhs.open .bhhs-panel{display:block}
.bhhs-close{
    position:absolute;right:18px;top:14px;
    border:0;background:transparent;font-size:30px;cursor:pointer;color:#334155;
}
.bhhs-tabs{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    padding-right:42px;
}
.bhhs-tabs button{
    border:0;border-radius:999px;
    padding:10px 28px;
    background:#1E3A5F;color:#fff;font-weight:800;
}
.bhhs-tabs span{font-weight:700;color:#64748b}
.bhhs-fields{
    display:grid;
    grid-template-columns:1.2fr 1fr .7fr;
    gap:12px;
    align-items:end;
}
.bhhs-field{position:relative}
.bhhs-field label{
    display:block;font-size:13px;font-weight:800;margin:0 0 7px;color:#334155;
}
.bhhs-field input{
    width:100%;
    height:52px;
    border:1px solid #d8e1eb;
    border-radius:13px;
    padding:0 14px;
    font-size:15px;
    outline:none;
}
.bhhs-field input:focus{border-color:#1E3A5F;box-shadow:0 0 0 3px rgba(30,58,95,.10)}
.bhhs-countbox{
    height:74px;
    border-radius:14px;
    background:#eef5ff;
    color:#1E3A5F;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:8px;
}
.bhhs-count{font-size:28px;font-weight:900;line-height:1}
.bhhs-count-label{font-size:11px;font-weight:800;margin-top:5px}
.bhhs-suggestions{
    display:none;
    position:absolute;
    left:0;right:0;top:78px;
    background:#fff;
    border:1px solid #dde6ef;
    border-radius:12px;
    box-shadow:0 14px 34px rgba(15,23,42,.14);
    max-height:230px;
    overflow:auto;
    z-index:100002;
}
.bhhs-suggestions.show{display:block}
.bhhs-suggestion{
    width:100%;
    border:0;
    background:#fff;
    text-align:left;
    padding:11px 13px;
    cursor:pointer;
    font-size:14px;
}
.bhhs-suggestion:hover{background:#f4f7fb}
.bhhs-popular{margin-top:22px}
.bhhs-popular-title{font-size:13px;font-weight:900;margin-bottom:10px;color:#475569}
.bhhs-popular-items{display:flex;flex-wrap:wrap;gap:8px}
.bhhs-popular-chip{
    border:1px solid #d9e2ec;
    background:#fff;
    color:#1E3A5F;
    border-radius:999px;
    padding:8px 12px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}
@media(max-width:760px){
    
    .bhhs-panel{position:fixed;left:16px;right:16px;top:90px;width:auto;max-height:calc(100vh - 120px);overflow:auto}
    .bhhs-fields{grid-template-columns:1fr}
    .bhhs-countbox{height:64px}
}


/* v1.0.1 tabs + company search */
.bhhs-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
    background:#f3f6fa;
    border-radius:999px;
    padding:4px;
    margin-bottom:24px;
}
.bhhs-tabs .bhhs-tab{
    border:0;
    border-radius:999px;
    padding:11px 18px;
    background:transparent;
    color:#475569;
    font-weight:800;
    cursor:pointer;
}
.bhhs-tabs .bhhs-tab.active{
    background:#1E3A5F;
    color:#fff;
}
.bhhs-tabpanel{display:none}
.bhhs-tabpanel.active{display:block}

.bhhs-company-title{
    font-size:22px;
    font-weight:900;
    color:#1f2937;
    margin-bottom:4px;
}
.bhhs-company-subtitle{
    font-size:14px;
    color:#64748b;
    margin-bottom:18px;
}
.bhhs-company-search{
    height:58px;
    border:1px solid #cfd8e3;
    border-radius:999px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 20px;
    background:#fff;
}
.bhhs-company-search input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    font-size:16px;
    color:#172033;
}
.bhhs-company-results{
    margin-top:14px;
    max-height:300px;
    overflow:auto;
}
.bhhs-company-item{
    width:100%;
    border:0;
    border-bottom:1px solid #eef2f7;
    background:#fff;
    padding:13px 8px;
    text-align:left;
    cursor:pointer;
    font-size:15px;
    font-weight:700;
    color:#1E3A5F;
}
.bhhs-company-item:hover{
    background:#f7f9fc;
}
.bhhs-company-empty{
    padding:18px 6px;
    color:#64748b;
    font-size:14px;
}


/* v1.0.2 - fit cleanly inside homepage left hero column */
.bhhs{
    width:min(520px,100%);
    max-width:100%;
    margin:0;
}

.bhhs-launch{
    width:100%;
    min-height:56px;
    padding:0 20px;
}
.bhhs-launch-label{
    font-size:14px;
}
.bhhs-rotating{
    font-size:15px;
}
.bhhs-panel{
    width:min(680px,calc(100vw - 32px));
}
@media(max-width:900px){
    .bhhs{
        width:100%;
        max-width:100%;
    }
    
}


/* v1.0.3 hard-fit fallback */
.bhhs{
    width:430px!important;
    max-width:100%!important;
}

.bhhs-launch{
    width:430px!important;
    max-width:100%!important;
    min-height:50px!important;
}
@media(max-width:640px){
    .bhhs,.bhhs-launch{width:100%!important}
    
}


/* v1.0.4 - center Hero Search inside its Gutenberg column */
.bhhs{
    margin-left:auto!important;
    margin-right:auto!important;
    text-align:center!important;
}

.bhhs-launch{
    margin-left:auto!important;
    margin-right:auto!important;
    text-align:left!important;
}
.bhhs-panel{
    text-align:left!important;
}


/* v1.1.3 - one-step larger, same centered position */
.bhhs{
    width:470px!important;
    max-width:100%!important;
    margin-left:auto!important;
    margin-right:auto!important;
    transform:none!important;
}

.bhhs-launch{
    width:470px!important;
    max-width:100%!important;
    min-height:54px!important;
    margin-left:auto!important;
    margin-right:auto!important;
}
@media(max-width:640px){
    .bhhs,.bhhs-launch{width:100%!important}
    
}


/* v1.1.5 - search-only mode; page owns its hero heading */
.bhhs{
    margin-top:0!important;
}


/* v1.1.6 - plugin outputs SEARCH ONLY. No hero heading. */
.bhhs-title{display:none!important;}


/* v1.1.7 - full suggestion lists with clear scrolling */
.bhhs-suggestions{
    max-height:360px!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain!important;
    scrollbar-width:auto!important;
    scrollbar-color:#1E3A5F #eef2f7!important;
}
.bhhs-suggestions::-webkit-scrollbar{
    width:10px!important;
}
.bhhs-suggestions::-webkit-scrollbar-track{
    background:#eef2f7!important;
    border-radius:10px!important;
}
.bhhs-suggestions::-webkit-scrollbar-thumb{
    background:#1E3A5F!important;
    border-radius:10px!important;
}
.bhhs-suggestion{
    min-height:44px!important;
    display:flex!important;
    align-items:center!important;
}


/* v1.2.0 — same desktop hero identity, stacked responsively like Checkatrade */
@media (max-width:820px){
    .wp-block-columns:has(.bhhs){
        display:flex!important;
        flex-direction:column!important;
        align-items:stretch!important;
        gap:22px!important;
        margin-top:0!important;
        margin-bottom:0!important;
    }
    .wp-block-columns:has(.bhhs) > .wp-block-column{
        width:100%!important;
        max-width:100%!important;
        flex-basis:auto!important;
        margin:0!important;
        box-sizing:border-box!important;
    }

    .wp-block-column:has(.bhhs){
        order:1!important;
        padding:24px 24px 0!important;
        text-align:left!important;
        overflow:visible!important;
    }
    .wp-block-column:has(.bhhs) h1,
    .wp-block-column:has(.bhhs) h2,
    .wp-block-column:has(.bhhs) h3,
    .wp-block-column:has(.bhhs) .wp-block-heading{
        width:auto!important;
        max-width:100%!important;
        margin:0 0 12px!important;
        padding:0!important;
        font-size:clamp(30px,8vw,40px)!important;
        line-height:1.06!important;
        letter-spacing:-.55px!important;
        text-align:left!important;
        white-space:normal!important;
        overflow:visible!important;
    }
    .wp-block-column:has(.bhhs) p{
        width:auto!important;
        max-width:100%!important;
        margin:0 0 18px!important;
        padding:0!important;
        font-size:clamp(17px,4.8vw,22px)!important;
        line-height:1.35!important;
        text-align:left!important;
        white-space:normal!important;
    }

    .bhhs{
        width:100%!important;
        max-width:100%!important;
        margin:0!important;
        padding:0!important;
        transform:none!important;
        text-align:left!important;
    }
    .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:58px!important;
        margin:0!important;
        padding:0 20px!important;
        border:0!important;
        border-radius:999px!important;
        background:#fff!important;
        color:#1E3A5F!important;
        box-shadow:0 6px 18px rgba(0,0,0,.08)!important;
        text-align:left!important;
    }
    .bhhs-launch-label{
        font-size:15px!important;
        opacity:.62!important;
    }
    .bhhs-rotating{
        font-size:16px!important;
        font-weight:900!important;
    }

    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        order:2!important;
        width:100%!important;
        padding:0 24px 28px!important;
        display:flex!important;
        justify-content:center!important;
    }
    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)) img{
        width:100%!important;
        max-width:660px!important;
        height:auto!important;
        max-height:none!important;
        object-fit:cover!important;
        object-position:center!important;
        display:block!important;
        margin:0 auto!important;
        border-radius:18px!important;
    }

    .wp-block-group:has(.wp-block-columns .bhhs){
        min-height:auto!important;
        margin-top:0!important;
        margin-bottom:0!important;
        padding-top:0!important;
        padding-bottom:0!important;
        overflow:visible!important;
    }

    .bhhs-panel{
        position:fixed!important;
        left:12px!important;
        right:12px!important;
        top:78px!important;
        width:auto!important;
        max-width:none!important;
        max-height:calc(100dvh - 98px)!important;
        overflow-y:auto!important;
        padding:20px 16px!important;
        border-radius:18px!important;
        z-index:1000000!important;
    }
    .bhhs-fields{
        grid-template-columns:1fr!important;
        gap:12px!important;
    }
    .bhhs-field input{
        height:52px!important;
        font-size:16px!important;
    }
    .bhhs-suggestions{
        position:relative!important;
        top:auto!important;
        left:auto!important;
        right:auto!important;
        max-height:280px!important;
        margin-top:6px!important;
        box-shadow:none!important;
    }
}

@media (max-width:430px){
    .wp-block-column:has(.bhhs){
        padding-left:18px!important;
        padding-right:18px!important;
    }
    .wp-block-column:has(.bhhs) h1,
    .wp-block-column:has(.bhhs) h2,
    .wp-block-column:has(.bhhs) h3,
    .wp-block-column:has(.bhhs) .wp-block-heading{
        font-size:30px!important;
    }
    .wp-block-column:has(.bhhs) p{
        font-size:17px!important;
    }
    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        padding-left:18px!important;
        padding-right:18px!important;
    }
}


/* v1.2.1 - MOBILE LANDING HERO TEXT + PADDING FIX ONLY */
@media (max-width:820px){

    /* Give the hero a clean breathing zone under the mobile header */
    .wp-block-group:has(.wp-block-columns .bhhs){
        min-height:auto!important;
        padding-top:26px!important;
        padding-bottom:22px!important;
        margin-top:0!important;
        margin-bottom:0!important;
        overflow:visible!important;
    }

    .wp-block-columns:has(.bhhs){
        gap:18px!important;
    }

    /* Text/search column */
    .wp-block-column:has(.bhhs){
        padding:0 20px!important;
        overflow:visible!important;
        text-align:center!important;
    }

    /* Manual heading on the landing page */
    .wp-block-column:has(.bhhs) h1,
    .wp-block-column:has(.bhhs) h2,
    .wp-block-column:has(.bhhs) h3,
    .wp-block-column:has(.bhhs) .wp-block-heading{
        width:100%!important;
        max-width:100%!important;
        margin:0 auto 10px!important;
        padding:0!important;
        font-size:28px!important;
        line-height:1.08!important;
        letter-spacing:-.35px!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
        word-break:normal!important;
        overflow-wrap:normal!important;
    }

    /* Manual subtitle */
    .wp-block-column:has(.bhhs) p{
        width:100%!important;
        max-width:100%!important;
        margin:0 auto 16px!important;
        padding:0!important;
        font-size:16px!important;
        line-height:1.35!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
        word-break:normal!important;
        overflow-wrap:normal!important;
    }

    /* Search stays fully visible and aligned */
    .bhhs{
        width:100%!important;
        max-width:100%!important;
        margin:0 auto!important;
        padding:0!important;
        transform:none!important;
    }

    .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:54px!important;
        margin:0 auto!important;
        padding:0 18px!important;
        border-radius:999px!important;
    }

    /* Image comes closer to the search */
    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        padding:0 20px 12px!important;
        margin-top:0!important;
    }

    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)) img{
        width:100%!important;
        max-width:520px!important;
        height:auto!important;
        max-height:300px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin:0 auto!important;
        border-radius:16px!important;
    }
}

@media (max-width:430px){

    .wp-block-group:has(.wp-block-columns .bhhs){
        padding-top:22px!important;
        padding-bottom:18px!important;
    }

    .wp-block-column:has(.bhhs){
        padding-left:16px!important;
        padding-right:16px!important;
    }

    .wp-block-column:has(.bhhs) h1,
    .wp-block-column:has(.bhhs) h2,
    .wp-block-column:has(.bhhs) h3,
    .wp-block-column:has(.bhhs) .wp-block-heading{
        font-size:25px!important;
        line-height:1.1!important;
        margin-bottom:9px!important;
    }

    .wp-block-column:has(.bhhs) p{
        font-size:15px!important;
        line-height:1.35!important;
        margin-bottom:14px!important;
    }

    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        padding-left:16px!important;
        padding-right:16px!important;
    }

    .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)) img{
        max-height:270px!important;
    }
}


/* v1.2.2 - DIRECT MOBILE FIX FOR LANDING PAGE 753 */
@media (max-width:820px){

    body.page-id-753 main,
    body.page-id-753 .wp-site-blocks,
    body.page-id-753 .site-content{
        margin-top:0!important;
        padding-top:0!important;
    }

    /* Hero container: remove desktop height/offsets and let content define height. */
    body.page-id-753 .wp-block-group:has(.bhhs),
    body.page-id-753 .wp-block-group:has(.wp-block-columns .bhhs),
    body.page-id-753 .wp-block-columns:has(.bhhs){
        min-height:0!important;
        height:auto!important;
        max-height:none!important;
        margin-top:0!important;
        margin-bottom:0!important;
        padding-top:16px!important;
        padding-bottom:16px!important;
        transform:none!important;
        overflow:visible!important;
    }

    body.page-id-753 .wp-block-columns:has(.bhhs){
        display:flex!important;
        flex-direction:column!important;
        gap:14px!important;
    }

    body.page-id-753 .wp-block-column:has(.bhhs){
        width:100%!important;
        max-width:100%!important;
        margin:0!important;
        padding:0 18px!important;
        transform:none!important;
        overflow:visible!important;
        text-align:center!important;
    }

    /* Force manual hero title smaller even if Gutenberg inline styles are large. */
    body.page-id-753 .wp-block-column:has(.bhhs) h1,
    body.page-id-753 .wp-block-column:has(.bhhs) h2,
    body.page-id-753 .wp-block-column:has(.bhhs) h3,
    body.page-id-753 .wp-block-column:has(.bhhs) .wp-block-heading,
    body.page-id-753 .wp-block-column:has(.bhhs) [style*="font-size"]{
        font-size:22px!important;
        line-height:1.12!important;
        letter-spacing:-.2px!important;
        width:100%!important;
        max-width:100%!important;
        margin:0 auto 8px!important;
        padding:0!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
        transform:none!important;
    }

    /* Subtitle */
    body.page-id-753 .wp-block-column:has(.bhhs) p{
        font-size:14px!important;
        line-height:1.35!important;
        width:100%!important;
        max-width:100%!important;
        margin:0 auto 10px!important;
        padding:0!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
    }

    /* Search field */
    body.page-id-753 .bhhs{
        width:100%!important;
        max-width:100%!important;
        margin:0 auto!important;
        padding:0!important;
        transform:none!important;
    }

    body.page-id-753 .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:50px!important;
        margin:0 auto!important;
        padding:0 16px!important;
    }

    /* Image column: remove huge empty blue height around it. */
    body.page-id-753 .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        width:100%!important;
        margin:0!important;
        padding:6px 18px 12px!important;
        min-height:0!important;
        height:auto!important;
        display:flex!important;
        justify-content:center!important;
        align-items:center!important;
        transform:none!important;
    }

    body.page-id-753 .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)) img{
        width:100%!important;
        max-width:420px!important;
        height:auto!important;
        max-height:240px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin:0 auto!important;
        border-radius:14px!important;
        display:block!important;
    }

    /* Kill inherited spacer/gap immediately below hero if present. */
    body.page-id-753 .wp-block-columns:has(.bhhs) + .wp-block-spacer{
        height:0!important;
        min-height:0!important;
        margin:0!important;
        padding:0!important;
    }
}

@media (max-width:430px){
    body.page-id-753 .wp-block-group:has(.bhhs),
    body.page-id-753 .wp-block-group:has(.wp-block-columns .bhhs),
    body.page-id-753 .wp-block-columns:has(.bhhs){
        padding-top:12px!important;
        padding-bottom:12px!important;
    }

    body.page-id-753 .wp-block-column:has(.bhhs){
        padding-left:14px!important;
        padding-right:14px!important;
    }

    body.page-id-753 .wp-block-column:has(.bhhs) h1,
    body.page-id-753 .wp-block-column:has(.bhhs) h2,
    body.page-id-753 .wp-block-column:has(.bhhs) h3,
    body.page-id-753 .wp-block-column:has(.bhhs) .wp-block-heading,
    body.page-id-753 .wp-block-column:has(.bhhs) [style*="font-size"]{
        font-size:20px!important;
        line-height:1.14!important;
        margin-bottom:7px!important;
    }

    body.page-id-753 .wp-block-column:has(.bhhs) p{
        font-size:13px!important;
        line-height:1.32!important;
        margin-bottom:9px!important;
    }

    body.page-id-753 .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)){
        padding-left:14px!important;
        padding-right:14px!important;
        padding-bottom:8px!important;
    }

    body.page-id-753 .wp-block-columns:has(.bhhs) > .wp-block-column:not(:has(.bhhs)) img{
        max-width:380px!important;
        max-height:220px!important;
    }
}


/* v1.2.3 — runtime-detected mobile hero: fixes real DOM, not assumed Gutenberg nesting */
@media (max-width:820px){

    html, body{
        max-width:100%!important;
        overflow-x:clip!important;
    }

    .bhhs-mobile-hero-runtime{
        min-height:0!important;
        height:auto!important;
        max-height:none!important;
        overflow:visible!important;
        margin-top:0!important;
        margin-bottom:0!important;
        padding-top:20px!important;
        padding-bottom:18px!important;
        transform:none!important;
        box-sizing:border-box!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-mobile-text-runtime{
        min-height:0!important;
        height:auto!important;
        max-height:none!important;
        overflow:visible!important;
        margin:0!important;
        padding:0 18px!important;
        transform:none!important;
        box-sizing:border-box!important;
        text-align:center!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        display:block!important;
        position:static!important;
        width:100%!important;
        max-width:100%!important;
        height:auto!important;
        min-height:0!important;
        max-height:none!important;
        margin:0 auto 8px!important;
        padding:0!important;
        transform:none!important;
        font-size:24px!important;
        line-height:1.12!important;
        letter-spacing:-.25px!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
        clip:auto!important;
        word-break:normal!important;
        overflow-wrap:normal!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        display:block!important;
        position:static!important;
        width:100%!important;
        max-width:100%!important;
        height:auto!important;
        min-height:0!important;
        max-height:none!important;
        margin:0 auto 12px!important;
        padding:0!important;
        transform:none!important;
        font-size:14px!important;
        line-height:1.35!important;
        text-align:center!important;
        white-space:normal!important;
        overflow:visible!important;
        clip:auto!important;
    }

    .bhhs-mobile-hero-runtime .bhhs{
        width:100%!important;
        max-width:100%!important;
        margin:0 auto!important;
        padding:0!important;
        transform:none!important;
        overflow:visible!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:50px!important;
        margin:0 auto!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image{
        display:block!important;
        position:static!important;
        width:min(100%,420px)!important;
        max-width:420px!important;
        height:auto!important;
        max-height:240px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin:18px auto 0!important;
        transform:none!important;
        border-radius:14px!important;
    }
}

@media (max-width:430px){
    .bhhs-mobile-hero-runtime{
        padding-top:14px!important;
        padding-bottom:14px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-mobile-text-runtime{
        padding-left:14px!important;
        padding-right:14px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        font-size:21px!important;
        line-height:1.14!important;
        margin-bottom:7px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        font-size:13px!important;
        line-height:1.32!important;
        margin-bottom:10px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image{
        width:min(100%,360px)!important;
        max-width:360px!important;
        max-height:210px!important;
        margin-top:14px!important;
    }
}


/* v1.2.4 - mobile horizontal overflow fix across narrow devices */
@media (max-width:820px){
    html, body{
        width:100%!important;
        max-width:100%!important;
        overflow-x:clip!important;
    }

    body *,
    body *::before,
    body *::after{
        box-sizing:border-box;
    }

    .bhhs-mobile-hero-runtime,
    .bhhs-mobile-hero-runtime *,
    .wp-block-columns:has(.bhhs),
    .wp-block-columns:has(.bhhs) > .wp-block-column{
        min-width:0!important;
        max-width:100%!important;
        box-sizing:border-box!important;
    }

    .bhhs-mobile-hero-runtime{
        width:100%!important;
        max-width:100vw!important;
        overflow-x:clip!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-mobile-text-runtime{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading,
    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        overflow-wrap:anywhere!important;
    }

    .bhhs-mobile-hero-runtime .bhhs{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
    }

    .bhhs-panel{
        left:10px!important;
        right:10px!important;
        width:auto!important;
        max-width:calc(100vw - 20px)!important;
        min-width:0!important;
        overflow-x:hidden!important;
    }

    .bhhs-fields,
    .bhhs-field,
    .bhhs-field input,
    .bhhs-suggestions,
    .bhhs-company-search,
    .bhhs-company-search input{
        min-width:0!important;
        max-width:100%!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image{
        width:min(100%,360px)!important;
        max-width:100%!important;
        height:auto!important;
    }
}


/* v1.2.5 — final mobile visual polish */
@media (max-width:820px){
    html,body{
        overflow-x:clip!important;
    }

    .bhhs{
        width:calc(100% - 28px)!important;
        max-width:520px!important;
        margin-left:auto!important;
        margin-right:auto!important;
        transform:none!important;
    }

    .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:54px!important;
        margin:0 auto!important;
        border-radius:999px!important;
        background:#fff!important;
        box-shadow:0 5px 16px rgba(0,0,0,.08)!important;
    }

    .bhhs-launch-label{
        font-size:13px!important;
    }

    .bhhs-rotating{
        font-size:14px!important;
        font-weight:900!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        max-width:520px!important;
        width:calc(100% - 36px)!important;
        height:auto!important;
        max-height:300px!important;
        object-fit:cover!important;
        margin-left:auto!important;
        margin-right:auto!important;
        border-radius:18px!important;
    }
}

@media (max-width:430px){
    .bhhs{
        width:calc(100% - 24px)!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 28px)!important;
        max-height:260px!important;
    }
}


/* v1.2.6 — compact, unmistakable mobile search + tighter hero rhythm */
@media (max-width:820px){
    .bhhs{
        width:calc(100% - 48px)!important;
        max-width:500px!important;
        margin:0 auto!important;
    }

    .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:50px!important;
        height:50px!important;
        padding:0 18px!important;
        border:1px solid rgba(30,58,95,.14)!important;
        border-radius:28px!important;
        background:#fff!important;
        box-shadow:0 3px 12px rgba(0,0,0,.10)!important;
        display:flex!important;
        align-items:center!important;
        overflow:hidden!important;
    }

    .bhhs-launch svg,
    .bhhs-launch .bhhs-icon,
    .bhhs-launch [class*="icon"]{
        flex:0 0 auto!important;
        width:18px!important;
        height:18px!important;
        margin-right:11px!important;
    }

    .bhhs-launch-label{
        font-size:13px!important;
        line-height:1!important;
        white-space:nowrap!important;
    }
    .bhhs-rotating{
        font-size:14px!important;
        line-height:1!important;
        white-space:nowrap!important;
    }

    .bhhs-mobile-hero-runtime{
        padding-bottom:14px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 52px)!important;
        max-width:430px!important;
        max-height:245px!important;
        margin-top:28px!important;
        margin-bottom:14px!important;
        object-fit:cover!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        width:calc(100% - 44px)!important;
        max-width:560px!important;
        font-size:21px!important;
        line-height:1.16!important;
    }
    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        width:calc(100% - 48px)!important;
        max-width:560px!important;
        font-size:13px!important;
        line-height:1.35!important;
    }
}

@media (max-width:430px){
    .bhhs{ width:calc(100% - 40px)!important; }
    .bhhs-launch{
        min-height:48px!important;
        height:48px!important;
        padding-left:15px!important;
        padding-right:15px!important;
    }
    .bhhs-launch-label{ font-size:12px!important; }
    .bhhs-rotating{ font-size:13px!important; }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 44px)!important;
        max-height:220px!important;
        margin-top:24px!important;
    }
}


/* v1.2.7 — narrower mobile search with stronger side breathing room */
@media (max-width:820px){
    .bhhs{
        width:calc(100% - 72px)!important;
        max-width:470px!important;
        margin-left:auto!important;
        margin-right:auto!important;
    }

    .bhhs-launch{
        min-height:46px!important;
        height:46px!important;
        padding-left:16px!important;
        padding-right:16px!important;
        border-radius:24px!important;
        box-shadow:0 2px 10px rgba(0,0,0,.09)!important;
    }

    .bhhs-launch svg,
    .bhhs-launch .bhhs-icon,
    .bhhs-launch [class*="icon"]{
        width:16px!important;
        height:16px!important;
        margin-right:10px!important;
    }

    .bhhs-launch-label{
        font-size:12px!important;
    }

    .bhhs-rotating{
        font-size:13px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 68px)!important;
        max-width:410px!important;
        margin-top:24px!important;
        margin-bottom:12px!important;
    }
}

@media (max-width:430px){
    .bhhs{
        width:calc(100% - 56px)!important;
    }

    .bhhs-launch{
        min-height:44px!important;
        height:44px!important;
        padding-left:14px!important;
        padding-right:14px!important;
    }

    .bhhs-launch-label{
        font-size:11.5px!important;
    }

    .bhhs-rotating{
        font-size:12.5px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 58px)!important;
        max-height:215px!important;
        margin-top:22px!important;
    }
}


/* v1.2.8 — restore natural spacing between mobile text lines */
@media (max-width:820px){

    /* Hero title */
    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        line-height:1.28!important;
        margin-bottom:12px!important;
    }

    /* Hero subtitle */
    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        line-height:1.5!important;
        margin-bottom:16px!important;
    }

    /* Manual Gutenberg headings/text in the same hero area */
    .wp-block-columns:has(.bhhs) h1,
    .wp-block-columns:has(.bhhs) h2,
    .wp-block-columns:has(.bhhs) h3,
    .wp-block-columns:has(.bhhs) .wp-block-heading{
        line-height:1.28!important;
    }

    .wp-block-columns:has(.bhhs) p{
        line-height:1.5!important;
    }

    /* The first heading directly after the hero ("Διάλεξε...") */
    .bhhs-mobile-hero-runtime + * h1,
    .bhhs-mobile-hero-runtime + * h2,
    .bhhs-mobile-hero-runtime + * h3,
    .bhhs-mobile-hero-runtime + * .wp-block-heading{
        line-height:1.25!important;
        margin-bottom:14px!important;
    }
}

@media (max-width:430px){
    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        line-height:1.3!important;
        margin-bottom:11px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        line-height:1.48!important;
        margin-bottom:15px!important;
    }

    .wp-block-columns:has(.bhhs) h1,
    .wp-block-columns:has(.bhhs) h2,
    .wp-block-columns:has(.bhhs) h3,
    .wp-block-columns:has(.bhhs) .wp-block-heading{
        line-height:1.3!important;
    }

    .wp-block-columns:has(.bhhs) p{
        line-height:1.48!important;
    }
}


/* v1.2.9 — slightly narrower mobile search + true vertical centering + subtle text spacing */
@media (max-width:820px){
    .bhhs{
        width:calc(100% - 88px)!important;
        max-width:450px!important;
        margin-left:auto!important;
        margin-right:auto!important;
    }

    .bhhs-launch{
        min-height:42px!important;
        height:42px!important;
        padding:0 14px!important;
        border-radius:23px!important;
        display:flex!important;
        align-items:center!important;
        justify-content:flex-start!important;
        box-sizing:border-box!important;
    }

    .bhhs-launch > *,
    .bhhs-launch svg,
    .bhhs-launch .bhhs-icon,
    .bhhs-launch [class*="icon"]{
        align-self:center!important;
        vertical-align:middle!important;
    }

    .bhhs-launch svg,
    .bhhs-launch .bhhs-icon,
    .bhhs-launch [class*="icon"]{
        width:15px!important;
        height:15px!important;
        margin-top:0!important;
        margin-bottom:0!important;
        margin-right:9px!important;
        flex:0 0 15px!important;
    }

    .bhhs-launch-label,
    .bhhs-rotating{
        display:inline-flex!important;
        align-items:center!important;
        min-height:42px!important;
        line-height:1.12!important;
        margin-top:0!important;
        margin-bottom:0!important;
    }

    .bhhs-launch-label{
        font-size:11.5px!important;
    }

    .bhhs-rotating{
        font-size:12.5px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        line-height:1.31!important;
        margin-bottom:13px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        line-height:1.53!important;
        margin-bottom:16px!important;
    }

    .wp-block-columns:has(.bhhs) h1,
    .wp-block-columns:has(.bhhs) h2,
    .wp-block-columns:has(.bhhs) h3,
    .wp-block-columns:has(.bhhs) .wp-block-heading{
        line-height:1.31!important;
    }

    .wp-block-columns:has(.bhhs) p{
        line-height:1.53!important;
    }
}

@media (max-width:430px){
    .bhhs{
        width:calc(100% - 68px)!important;
    }

    .bhhs-launch{
        min-height:40px!important;
        height:40px!important;
        padding-left:12px!important;
        padding-right:12px!important;
    }

    .bhhs-launch-label,
    .bhhs-rotating{
        min-height:40px!important;
    }

    .bhhs-launch-label{
        font-size:11px!important;
    }

    .bhhs-rotating{
        font-size:12px!important;
    }
}

/* Very small extra line spacing on laptop/desktop too */
@media (min-width:821px){
    .wp-block-columns:has(.bhhs) h1,
    .wp-block-columns:has(.bhhs) h2,
    .wp-block-columns:has(.bhhs) h3,
    .wp-block-columns:has(.bhhs) .wp-block-heading{
        line-height:1.22!important;
    }

    .wp-block-columns:has(.bhhs) p{
        line-height:1.46!important;
    }
}


/* v1.3.0 — cosmetic spacing pass: mobile search centering + tighter section rhythm */

/* Search content: true vertical centre on phone */
@media (max-width:820px){
    .bhhs-launch{
        position:relative!important;
        display:flex!important;
        align-items:center!important;
        justify-content:flex-start!important;
        height:42px!important;
        min-height:42px!important;
        padding-top:0!important;
        padding-bottom:0!important;
    }

    .bhhs-search-icon{
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        flex:0 0 18px!important;
        width:18px!important;
        height:42px!important;
        min-height:42px!important;
        margin:0 9px 0 0!important;
        padding:0!important;
        line-height:1!important;
        font-size:22px!important;
        vertical-align:middle!important;
        transform:translateY(-1px)!important;
    }

    .bhhs-launch-label,
    .bhhs-rotating{
        display:flex!important;
        align-items:center!important;
        height:42px!important;
        min-height:42px!important;
        margin-top:0!important;
        margin-bottom:0!important;
        padding-top:0!important;
        padding-bottom:0!important;
        line-height:1!important;
        transform:none!important;
    }

    /* Do not reintroduce large vertical margins around the hero text */
    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-bottom:10px!important;
    }
    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-bottom:12px!important;
    }
}

/* Slightly tighter general block rhythm around the section below hero */
@media (min-width:821px){
    .bhhs-section-title-runtime{
        margin-top:18px!important;
        margin-bottom:24px!important;
    }

    .bhhs-profession-slider-runtime{
        margin-top:0!important;
        margin-bottom:24px!important;
        padding-top:0!important;
        padding-bottom:0!important;
    }

    .bhhs-recommended-title-runtime{
        margin-top:18px!important;
        margin-bottom:18px!important;
    }
}

@media (max-width:820px){
    .bhhs-section-title-runtime{
        margin-top:20px!important;
        margin-bottom:20px!important;
    }

    .bhhs-profession-slider-runtime{
        margin-top:0!important;
        margin-bottom:20px!important;
        padding-top:0!important;
        padding-bottom:0!important;
    }

    .bhhs-recommended-title-runtime{
        margin-top:16px!important;
        margin-bottom:16px!important;
    }
}


/* v1.3.1 — slightly tighter overall vertical rhythm */
@media (max-width:820px){
    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-bottom:8px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-bottom:10px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        margin-top:18px!important;
        margin-bottom:8px!important;
    }

    .bhhs-section-title-runtime{
        margin-top:14px!important;
        margin-bottom:14px!important;
    }

    .bhhs-profession-slider-runtime{
        margin-top:0!important;
        margin-bottom:14px!important;
    }

    .bhhs-recommended-title-runtime{
        margin-top:12px!important;
        margin-bottom:12px!important;
    }
}

@media (min-width:821px){
    .bhhs-section-title-runtime{
        margin-top:12px!important;
        margin-bottom:18px!important;
    }

    .bhhs-profession-slider-runtime{
        margin-top:0!important;
        margin-bottom:18px!important;
    }

    .bhhs-recommended-title-runtime{
        margin-top:12px!important;
        margin-bottom:14px!important;
    }
}


/* v1.3.2 — mobile search panel locked to the viewport */
@media (max-width:820px){

    body.bhhs-panel-body-open{
        overflow:hidden!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open{
        display:block!important;
        position:fixed!important;
        top:82px!important;
        left:14px!important;
        right:14px!important;
        bottom:14px!important;
        width:auto!important;
        min-width:0!important;
        max-width:none!important;
        height:auto!important;
        max-height:none!important;
        margin:0!important;
        padding:18px 18px 20px!important;
        transform:none!important;
        translate:none!important;
        box-sizing:border-box!important;
        overflow-x:hidden!important;
        overflow-y:auto!important;
        overscroll-behavior:contain!important;
        border-radius:18px!important;
        z-index:2147483000!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open *,
    body > .bhhs-panel.bhhs-mobile-panel-open *::before,
    body > .bhhs-panel.bhhs-mobile-panel-open *::after{
        box-sizing:border-box!important;
        min-width:0!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-close{
        top:10px!important;
        right:12px!important;
        left:auto!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-tabs{
        width:calc(100% - 36px)!important;
        max-width:none!important;
        margin:0 36px 18px 0!important;
        padding:4px!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-tab{
        width:100%!important;
        padding:10px 8px!important;
        text-align:center!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-fields{
        display:grid!important;
        grid-template-columns:minmax(0,1fr)!important;
        width:100%!important;
        gap:14px!important;
        margin:0!important;
        padding:0!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-field{
        width:100%!important;
        margin:0!important;
        padding:0!important;
        text-align:left!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-field label{
        display:block!important;
        width:100%!important;
        margin:0 0 8px!important;
        padding-left:2px!important;
        padding-right:2px!important;
        text-align:left!important;
        white-space:normal!important;
        overflow:visible!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-field input,
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-company-search{
        width:100%!important;
        max-width:100%!important;
        margin:0!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-field input{
        height:50px!important;
        padding-left:16px!important;
        padding-right:16px!important;
        font-size:16px!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-suggestions{
        position:relative!important;
        top:auto!important;
        left:auto!important;
        right:auto!important;
        width:100%!important;
        max-width:100%!important;
        margin:6px 0 0!important;
        border-radius:12px!important;
        max-height:250px!important;
        overflow-x:hidden!important;
        overflow-y:auto!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-suggestion{
        width:100%!important;
        padding:11px 16px!important;
        text-align:left!important;
        white-space:normal!important;
        overflow-wrap:anywhere!important;
    }

    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-countbox,
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-popular,
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-company-results{
        width:100%!important;
        max-width:100%!important;
    }
}

@media (max-width:430px){
    body > .bhhs-panel.bhhs-mobile-panel-open{
        top:72px!important;
        left:12px!important;
        right:12px!important;
        bottom:10px!important;
        padding:16px 16px 18px!important;
    }
}


/* v1.3.3 — laptop/desktop panel overlays slider instead of hiding behind it */
@media (min-width:821px){
    body > .bhhs-panel.bhhs-desktop-panel-open{
        display:block!important;
        position:fixed!important;
        right:auto!important;
        bottom:auto!important;
        height:auto!important;
        max-height:calc(100vh - 24px)!important;
        margin:0!important;
        padding:24px!important;
        transform:none!important;
        translate:none!important;
        overflow-x:hidden!important;
        overflow-y:auto!important;
        box-sizing:border-box!important;
        border-radius:22px!important;
        z-index:2147483000!important;
        isolation:isolate!important;
    }

    body > .bhhs-panel.bhhs-desktop-panel-open *,
    body > .bhhs-panel.bhhs-desktop-panel-open *::before,
    body > .bhhs-panel.bhhs-desktop-panel-open *::after{
        box-sizing:border-box!important;
    }

    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-tabs{
        width:100%!important;
        margin-bottom:20px!important;
        padding-right:4px!important;
    }

    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-fields{
        display:grid!important;
        grid-template-columns:minmax(0,1.2fr) minmax(0,1fr) minmax(120px,.7fr)!important;
        gap:12px!important;
        width:100%!important;
    }

    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-field,
    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-field input{
        min-width:0!important;
        width:100%!important;
    }

    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-suggestions{
        z-index:2147483001!important;
    }
}








/* v1.4.0 — clean compact dropdowns, no arrow controls */
.bhhs-suggestions{
    padding-right:0!important;
    scrollbar-width:thin!important;
    scrollbar-color:#8aa4bf #eef2f7!important;
}

.bhhs-suggestions::-webkit-scrollbar{
    width:7px!important;
    display:block!important;
}
.bhhs-suggestions::-webkit-scrollbar-track{
    background:#eef2f7!important;
    border-radius:8px!important;
}
.bhhs-suggestions::-webkit-scrollbar-thumb{
    background:#8aa4bf!important;
    border-radius:8px!important;
}

/* Remove any old custom controls if cached markup somehow survives */
.bhhs-scroll-control,
.bhhs-scroll-arrow,
.bhhs-scroll-step,
.bhhs-scroll-track,
.bhhs-scroll-thumb{
    display:none!important;
}

/* Laptop / desktop: shorter dropdown, never touches the blue slider below */
@media (min-width:821px){
    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-suggestions{
        max-height:165px!important;
        min-height:0!important;
    }
}

/* Mid-size laptop / tablet widths */
@media (min-width:700px) and (max-width:820px){
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-suggestions{
        max-height:150px!important;
        min-height:0!important;
    }
}

/* Phone */
@media (max-width:699px){
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-suggestions{
        max-height:175px!important;
        min-height:0!important;
    }
}


/* v1.4.1 — EXACT five-row dropdown viewport */
.bhhs-suggestions{
    max-height:220px!important;
    min-height:0!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
}

.bhhs-suggestion{
    height:44px!important;
    min-height:44px!important;
    max-height:44px!important;
    padding:0 14px!important;
    display:flex!important;
    align-items:center!important;
    line-height:1.2!important;
    box-sizing:border-box!important;
}

/* Keep the floating desktop dropdown exactly five rows tall when enough items exist. */
@media (min-width:821px){
    body > .bhhs-panel.bhhs-desktop-panel-open .bhhs-suggestions{
        max-height:220px!important;
    }
}

/* Same five-row capacity on mobile. */
@media (max-width:820px){
    body > .bhhs-panel.bhhs-mobile-panel-open .bhhs-suggestions{
        max-height:220px!important;
    }
}


/* v1.4.2 — MOBILE HOMEPAGE AIR / RHYTHM ONLY
   Desktop/laptop untouched. */
@media (max-width:820px){

    /* More breathing room below the main mobile header. */
    .bhhs-mobile-hero-runtime{
        padding-top:36px!important;
        padding-bottom:30px!important;
    }

    /* Heading begins lower instead of sitting against the header. */
    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-top:28px!important;
        margin-bottom:12px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-top:0!important;
        margin-bottom:18px!important;
    }

    /* Search comes down slightly after the text. */
    .bhhs-mobile-hero-runtime .bhhs,
    .wp-block-columns:has(.bhhs) .bhhs{
        margin-top:6px!important;
        margin-bottom:0!important;
    }

    /* Image: only a small increase + visibly more air above it. */
    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 36px)!important;
        max-width:445px!important;
        max-height:255px!important;
        margin-top:38px!important;
        margin-bottom:18px!important;
    }
}

@media (max-width:430px){

    .bhhs-mobile-hero-runtime{
        padding-top:32px!important;
        padding-bottom:28px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-top:24px!important;
        margin-bottom:12px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-bottom:17px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs{
        margin-top:6px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 28px)!important;
        max-width:405px!important;
        max-height:235px!important;
        margin-top:36px!important;
        margin-bottom:18px!important;
    }
}


/* v1.4.3 — MOBILE HERO IMAGE: wider, not taller */
@media (max-width:820px){
    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 12px)!important;
        max-width:540px!important;
        height:240px!important;
        max-height:240px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin-top:42px!important;
        margin-left:auto!important;
        margin-right:auto!important;
        border-radius:18px!important;
    }
}

@media (max-width:430px){
    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 8px)!important;
        max-width:440px!important;
        height:220px!important;
        max-height:220px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin-top:40px!important;
    }
}


/* v1.4.4 — MOBILE HERO: more vertical rhythm + wider image */
@media (max-width:820px){

    .bhhs-mobile-hero-runtime{
        padding-top:44px!important;
        padding-bottom:34px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-top:38px!important;
        margin-bottom:16px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-top:0!important;
        margin-bottom:24px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs,
    .wp-block-columns:has(.bhhs) .bhhs{
        margin-top:10px!important;
        margin-bottom:0!important;
    }

    /* Search itself: preserve width but add visible air around it */
    .bhhs-mobile-hero-runtime .bhhs-launch,
    .wp-block-columns:has(.bhhs) .bhhs-launch{
        margin-top:0!important;
        margin-bottom:0!important;
    }

    /* Image much wider, but height still controlled */
    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 4px)!important;
        max-width:560px!important;
        height:238px!important;
        max-height:238px!important;
        object-fit:cover!important;
        object-position:center!important;
        margin-top:48px!important;
        margin-left:auto!important;
        margin-right:auto!important;
        margin-bottom:18px!important;
        border-radius:18px!important;
    }
}

@media (max-width:430px){

    .bhhs-mobile-hero-runtime{
        padding-top:40px!important;
        padding-bottom:32px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-heading{
        margin-top:34px!important;
        margin-bottom:15px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-subtitle{
        margin-bottom:22px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs{
        margin-top:9px!important;
    }

    .bhhs-mobile-hero-runtime .bhhs-runtime-hero-image,
    .wp-block-columns:has(.bhhs) img{
        width:calc(100% - 2px)!important;
        max-width:445px!important;
        height:218px!important;
        max-height:218px!important;
        margin-top:46px!important;
        object-fit:cover!important;
        object-position:center!important;
    }
}


/* v1.4.5 — MOBILE ONLY: remove large gap above Smart Slider #13 */
@media (max-width:820px){

    /* Gutenberg shortcode wrapper */
    .wp-block-shortcode:has(#n2-ss-13-align),
    .wp-block-shortcode:has(#n2-ss-13),
    .wp-block-shortcode:has([id^="n2-ss-13"]){
        margin-top:0!important;
        padding-top:0!important;
        margin-bottom:0!important;
    }

    /* Smart Slider 13 outer wrappers */
    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-85px!important;
        padding-top:0!important;
    }
}

@media (max-width:430px){
    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-95px!important;
    }
}


/* v1.4.6 — MOBILE ONLY: balance Slider 13 position
   Previous -85/-95px lift was too aggressive and overlapped the heading. */
@media (max-width:820px){
    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-22px!important;
        padding-top:0!important;
    }
}

@media (max-width:430px){
    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-18px!important;
    }
}


/* v1.4.7 — Slider 13 gap balance on LAPTOP/DESKTOP too
   Same principle as mobile: reduce wasted gap, no overlap. */
@media (min-width:821px){

    .wp-block-shortcode:has(#n2-ss-13-align),
    .wp-block-shortcode:has(#n2-ss-13),
    .wp-block-shortcode:has([id^="n2-ss-13"]){
        margin-top:0!important;
        padding-top:0!important;
        margin-bottom:0!important;
    }

    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-18px!important;
        padding-top:0!important;
    }
}

/* Slightly smaller lift on wider desktop so it stays natural. */
@media (min-width:1200px){
    #n2-ss-13-align,
    #n2-ss-13,
    [id^="n2-ss-13"][id$="-align"]{
        margin-top:-14px!important;
    }
}

/* v1.5.0 — large popup / results / request */
.bhhs{width:620px!important;max-width:100%!important;margin:0 auto!important;text-align:center!important}.bhhs .bhhs-launch{width:620px!important;max-width:100%!important;min-height:68px!important;padding:0 26px!important;margin:0 auto!important;text-align:left!important;border-radius:18px!important;font-size:17px!important}.bhhs .bhhs-launch .bhhs-search-icon{font-size:26px!important;margin-right:12px!important}.bhhs-panel{position:fixed!important;inset:0!important;z-index:999999!important;background:rgba(8,20,39,.62)!important;display:none!important;align-items:center!important;justify-content:center!important;padding:28px!important;overflow:auto!important}.bhhs-panel.open{display:flex!important}.bhhs-modal-shell{position:relative!important;width:min(920px,94vw)!important;max-height:88vh!important;overflow:auto!important;background:#fff!important;border-radius:24px!important;box-shadow:0 30px 90px rgba(0,0,0,.28)!important;padding:38px 42px 42px!important;text-align:left!important}.bhhs-close{position:absolute!important;right:22px!important;top:20px!important;width:42px!important;height:42px!important;border:0!important;border-radius:50%!important;background:#eef4fb!important;color:#17345e!important;font-size:29px!important;line-height:1!important;cursor:pointer!important;z-index:5!important}.bhhs-step{display:none!important}.bhhs-step.active{display:block!important}.bhhs-modal-kicker{font-size:13px!important;font-weight:800!important;letter-spacing:.08em!important;text-transform:uppercase!important;color:#1f67c1!important;margin-bottom:8px!important}.bhhs-modal-shell h2{margin:0 60px 8px 0!important;font-size:31px!important;line-height:1.15!important;color:#172b4d!important;font-weight:800!important}.bhhs-modal-intro{margin:0 0 26px!important;font-size:16px!important;line-height:1.55!important;color:#607086!important;max-width:720px!important}.bhhs-search-grid{display:grid!important;grid-template-columns:1fr 1fr!important;gap:22px!important;align-items:start!important}.bhhs-field label,.bhhs-request-form label{display:block!important;font-size:14px!important;font-weight:800!important;color:#263d5d!important;margin-bottom:8px!important}.bhhs-input-wrap{display:flex!important;align-items:center!important;gap:10px!important;min-height:62px!important;border:1.5px solid #c8d7e9!important;border-radius:16px!important;background:#fff!important;padding:0 17px!important}.bhhs-input-wrap:focus-within{border-color:#2371d1!important;box-shadow:0 0 0 4px rgba(35,113,209,.10)!important}.bhhs-input-wrap>span{font-size:23px!important;color:#4a6c96!important}.bhhs-input-wrap input{width:100%!important;border:0!important;outline:0!important;background:transparent!important;font-size:16px!important;color:#172b4d!important;padding:0!important;height:58px!important}.bhhs-inline-options{display:none!important;margin-top:9px!important;border:1px solid #dbe5f1!important;border-radius:14px!important;max-height:275px!important;overflow:auto!important;background:#fff!important}.bhhs-inline-options.show{display:block!important}.bhhs-inline-option{display:block!important;width:100%!important;text-align:left!important;border:0!important;border-bottom:1px solid #eef3f8!important;background:#fff!important;padding:13px 15px!important;font-size:14px!important;color:#263d5d!important;cursor:pointer!important}.bhhs-inline-option:last-child{border-bottom:0!important}.bhhs-inline-option:hover{background:#f5f9ff!important;color:#1559aa!important}.bhhs-search-summary{margin:23px 0 16px!important;font-size:14px!important;color:#66788e!important}.bhhs-search-summary strong{font-size:21px!important;color:#1e5fae!important;margin-right:5px!important}.bhhs-primary{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:56px!important;padding:0 28px!important;border:0!important;border-radius:15px!important;background:#1f64bd!important;color:#fff!important;font-size:16px!important;font-weight:800!important;cursor:pointer!important}.bhhs-find,.bhhs-send-request{width:100%!important}.bhhs-search-error,.bhhs-request-message{min-height:22px!important;margin-top:12px!important;font-size:14px!important;color:#b42318!important}.bhhs-request-message:not(.error){color:#1f6a44!important}.bhhs-back{border:0!important;background:transparent!important;padding:0!important;margin:0 0 18px!important;color:#1f64bd!important;font-size:14px!important;font-weight:800!important;cursor:pointer!important}.bhhs-results-subtitle{margin:0 0 22px!important;color:#66788e!important;font-size:15px!important}.bhhs-results-list{display:grid!important;gap:14px!important}.bhhs-result-card{border:1px solid #dce7f3!important;border-radius:18px!important;padding:18px 20px!important;background:#fff!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:20px!important}.bhhs-result-main{display:flex!important;align-items:center!important;gap:16px!important;min-width:0!important}.bhhs-result-avatar{width:68px!important;height:68px!important;border-radius:50%!important;object-fit:cover!important;background:#eef4fb!important}.bhhs-result-copy h3{margin:0 0 7px!important;font-size:19px!important;color:#172b4d!important}.bhhs-result-specs{display:flex!important;gap:6px!important;flex-wrap:wrap!important}.bhhs-result-specs span{background:#eef5ff!important;color:#245a96!important;border-radius:999px!important;padding:5px 9px!important;font-size:12px!important;font-weight:700!important}.bhhs-result-city{margin-top:7px!important;color:#718198!important;font-size:13px!important}.bhhs-result-actions{display:flex!important;align-items:center!important;gap:9px!important;flex-shrink:0!important}.bhhs-profile-link,.bhhs-contact-pro{min-height:42px!important;border-radius:12px!important;padding:0 14px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;font-size:13px!important;font-weight:800!important;text-decoration:none!important}.bhhs-profile-link{border:1px solid #bfd0e5!important;color:#275d9c!important;background:#fff!important}.bhhs-contact-pro{border:0!important;background:#1f64bd!important;color:#fff!important;cursor:pointer!important}.bhhs-empty-results{padding:34px!important;text-align:center!important;background:#f7faff!important;border:1px dashed #c5d7ec!important;border-radius:18px!important;color:#52667f!important}.bhhs-empty-results strong,.bhhs-empty-results span{display:block!important}.bhhs-request-pro{display:flex!important;align-items:center!important;gap:12px!important;margin:0 0 20px!important;padding:12px 14px!important;background:#f6f9fd!important;border-radius:15px!important}.bhhs-request-pro img{width:52px!important;height:52px!important;border-radius:50%!important;object-fit:cover!important}.bhhs-request-pro small,.bhhs-request-pro strong{display:block!important}.bhhs-request-context{margin:0 0 16px!important;padding:10px 13px!important;border-radius:12px!important;background:#eef5ff!important;color:#245a96!important;font-size:13px!important;font-weight:800!important}.bhhs-request-form textarea,.bhhs-request-form input{box-sizing:border-box!important;width:100%!important;border:1.5px solid #c8d7e9!important;border-radius:13px!important;background:#fff!important;color:#172b4d!important;font-size:15px!important;padding:13px 14px!important;outline:0!important}.bhhs-contact-grid{display:grid!important;grid-template-columns:1fr 1fr 1.25fr!important;gap:13px!important;margin:16px 0 18px!important}.bhhs-hp{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;opacity:0!important}.bhhs-step[data-step="success"]{text-align:center!important;padding:42px 8px 20px!important}.bhhs-success-icon{width:72px!important;height:72px!important;border-radius:50%!important;margin:0 auto 18px!important;display:flex!important;align-items:center!important;justify-content:center!important;background:#e8f7ef!important;color:#177447!important;font-size:37px!important;font-weight:900!important}.bhhs-success-text{max-width:620px!important;margin:0 auto 24px!important;color:#5d6e84!important;line-height:1.55!important}body.bhhs-panel-body-open{overflow:hidden!important}@media(max-width:820px){.bhhs{width:100%!important}.bhhs .bhhs-launch{width:100%!important;min-height:60px!important;border-radius:16px!important;padding:0 18px!important;font-size:15px!important}.bhhs-panel{padding:0!important;align-items:flex-end!important}.bhhs-modal-shell{width:100%!important;max-height:93vh!important;border-radius:22px 22px 0 0!important;padding:28px 18px 30px!important}.bhhs-modal-shell h2{font-size:25px!important;margin-right:44px!important}.bhhs-close{right:14px!important;top:13px!important;width:38px!important;height:38px!important}.bhhs-search-grid{grid-template-columns:1fr!important;gap:16px!important}.bhhs-inline-options{max-height:210px!important}.bhhs-result-card{display:block!important;padding:16px!important}.bhhs-result-actions{margin-top:14px!important;display:grid!important;grid-template-columns:1fr 1.25fr!important}.bhhs-profile-link,.bhhs-contact-pro{width:100%!important;box-sizing:border-box!important;text-align:center!important}.bhhs-contact-grid{grid-template-columns:1fr!important;gap:10px!important}}


/* =========================================================
   v1.5.1 — TRUE BODY-LEVEL MODAL OVERLAY
   Popup is detached from hero and centered over whole viewport.
   ========================================================= */
body > .bhhs-panel{
    position:fixed!important;
    inset:0!important;
    width:100vw!important;
    height:100dvh!important;
    min-height:100vh!important;
    max-width:none!important;
    max-height:none!important;
    margin:0!important;
    padding:32px!important;
    box-sizing:border-box!important;
    z-index:2147483000!important;
    background:rgba(8,20,39,.62)!important;
    display:none!important;
    align-items:center!important;
    justify-content:center!important;
    overflow:hidden!important;
}

body > .bhhs-panel.open{
    display:flex!important;
}

body > .bhhs-panel > .bhhs-modal-shell{
    position:relative!important;
    inset:auto!important;
    display:block!important;
    width:min(900px, calc(100vw - 64px))!important;
    height:auto!important;
    max-height:min(760px, calc(100dvh - 64px))!important;
    min-height:0!important;
    margin:auto!important;
    padding:36px 40px 38px!important;
    box-sizing:border-box!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    border-radius:22px!important;
    background:#fff!important;
    box-shadow:0 30px 100px rgba(0,0,0,.36)!important;
    transform:none!important;
    float:none!important;
}

body.bhhs-panel-body-open{
    overflow:hidden!important;
    overscroll-behavior:none!important;
}

body > .bhhs-panel .bhhs-step{
    width:100%!important;
    max-width:none!important;
    margin:0!important;
}

@media(max-width:820px){
    body > .bhhs-panel{
        padding:16px!important;
        align-items:center!important;
        justify-content:center!important;
    }

    body > .bhhs-panel > .bhhs-modal-shell{
        width:calc(100vw - 32px)!important;
        max-height:calc(100dvh - 32px)!important;
        margin:auto!important;
        border-radius:18px!important;
        padding:28px 18px 26px!important;
    }
}

@media(max-width:430px){
    body > .bhhs-panel{
        padding:10px!important;
    }

    body > .bhhs-panel > .bhhs-modal-shell{
        width:calc(100vw - 20px)!important;
        max-height:calc(100dvh - 20px)!important;
        border-radius:16px!important;
    }
}


/* v1.5.2 — slightly smaller desktop/laptop popup only */
@media (min-width:821px){
    body > .bhhs-panel > .bhhs-modal-shell{
        width:min(820px, calc(100vw - 120px))!important;
        max-height:min(680px, calc(100dvh - 110px))!important;
        padding:32px 34px 34px!important;
    }
}


/* v1.5.4 — search mode tabs */
.bhhs-search-tabs{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:8px!important;
    padding:5px!important;
    margin:0 58px 22px 0!important;
    background:#eef3f8!important;
    border-radius:14px!important;
}
.bhhs-tab{
    min-height:42px!important;
    border:0!important;
    border-radius:10px!important;
    background:transparent!important;
    color:#5d6f86!important;
    font-size:14px!important;
    font-weight:800!important;
    cursor:pointer!important;
}
.bhhs-tab.active{
    background:#244f86!important;
    color:#fff!important;
    box-shadow:0 4px 12px rgba(36,79,134,.16)!important;
}
.bhhs-company-field[hidden],
.bhhs-service-field[hidden]{
    display:none!important;
}
@media(max-width:820px){
    .bhhs-search-tabs{
        margin:0 46px 18px 0!important;
    }
}

/* v1.5.9 direct-request validation hint */
.bhhs-description-help{display:block;margin-top:5px;color:#64748b;font-size:12px;line-height:1.35}


/* v1.6.1 — MOBILE ONLY: make the hero search launcher more compact again.
   Desktop is intentionally untouched. */
@media (max-width: 820px) {
    .bhhs {
        width: 100% !important;
        max-width: 100% !important;
    }

    .bhhs .bhhs-launch,
    .bhhs-mobile-hero-runtime .bhhs-launch,
    .wp-block-columns:has(.bhhs) .bhhs-launch {
        width: 92% !important;
        max-width: 520px !important;
        min-height: 52px !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 15px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
        box-sizing: border-box !important;
    }

    .bhhs .bhhs-launch .bhhs-search-icon,
    .bhhs .bhhs-launch svg,
    .bhhs .bhhs-launch .bhhs-icon,
    .bhhs .bhhs-launch [class*="icon"] {
        font-size: 21px !important;
        width: 21px !important;
        height: 21px !important;
        flex: 0 0 21px !important;
        margin-right: 9px !important;
    }

    .bhhs .bhhs-launch-label {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 430px) {
    .bhhs .bhhs-launch,
    .bhhs-mobile-hero-runtime .bhhs-launch,
    .wp-block-columns:has(.bhhs) .bhhs-launch {
        width: 90% !important;
        min-height: 50px !important;
        padding: 0 13px !important;
        border-radius: 13px !important;
        font-size: 13px !important;
    }

    .bhhs .bhhs-launch-label {
        font-size: 13px !important;
    }
}


/* v1.6.2 — compact rounded hero search, inspired by the cleaner pill-style reference */
@media (min-width:821px){
    .bhhs{
        width:560px!important;
        max-width:100%!important;
        margin-left:auto!important;
        margin-right:auto!important;
    }
    .bhhs .bhhs-launch{
        width:560px!important;
        max-width:100%!important;
        min-height:54px!important;
        height:54px!important;
        padding:0 22px!important;
        border-radius:999px!important;
        border:1px solid rgba(30,58,95,.10)!important;
        background:#fff!important;
        box-shadow:0 5px 16px rgba(0,0,0,.08)!important;
        display:flex!important;
        align-items:center!important;
        gap:9px!important;
        box-sizing:border-box!important;
    }
    .bhhs .bhhs-launch .bhhs-search-icon{
        font-size:20px!important;
        width:20px!important;
        height:20px!important;
        flex:0 0 20px!important;
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        margin:0 2px 0 0!important;
        opacity:.48!important;
        line-height:1!important;
    }
    .bhhs .bhhs-launch-label{
        font-size:14px!important;
        line-height:1!important;
        opacity:.58!important;
        white-space:nowrap!important;
    }
    .bhhs .bhhs-rotating{
        font-size:15px!important;
        line-height:1!important;
        font-weight:800!important;
        white-space:nowrap!important;
    }
}

@media (max-width:820px){
    .bhhs{
        width:90%!important;
        max-width:500px!important;
        margin-left:auto!important;
        margin-right:auto!important;
    }
    .bhhs .bhhs-launch,
    .bhhs-mobile-hero-runtime .bhhs-launch,
    .wp-block-columns:has(.bhhs) .bhhs-launch{
        width:100%!important;
        max-width:100%!important;
        min-height:48px!important;
        height:48px!important;
        padding:0 17px!important;
        border-radius:999px!important;
        border:1px solid rgba(30,58,95,.10)!important;
        box-shadow:0 4px 14px rgba(0,0,0,.08)!important;
        box-sizing:border-box!important;
    }
    .bhhs .bhhs-launch .bhhs-search-icon{
        font-size:18px!important;
        width:18px!important;
        height:18px!important;
        flex:0 0 18px!important;
        margin-right:8px!important;
    }
    .bhhs .bhhs-launch-label{font-size:13px!important}
    .bhhs .bhhs-rotating{font-size:14px!important}
}

@media (max-width:430px){
    .bhhs{width:88%!important}
    .bhhs .bhhs-launch,
    .bhhs-mobile-hero-runtime .bhhs-launch,
    .wp-block-columns:has(.bhhs) .bhhs-launch{
        min-height:46px!important;
        height:46px!important;
        padding:0 15px!important;
        border-radius:999px!important;
    }
    .bhhs .bhhs-launch-label{font-size:12.5px!important}
    .bhhs .bhhs-rotating{font-size:13.5px!important}
}


/* v1.6.3 — simple internal "Βρες Επαγγελματία" client info page */
.bhhs-info-page{
    padding:72px 20px 84px;
    background:linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
    color:#17324f;
}
.bhhs-info-shell{
    width:min(980px,100%);
    margin:0 auto;
}
.bhhs-info-kicker{
    display:block;
    margin-bottom:10px;
    color:#2a69d4;
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.bhhs-info-page h1{
    max-width:760px;
    margin:0 0 18px;
    color:#17324f;
    font-size:clamp(34px,4.5vw,56px);
    line-height:1.06;
    letter-spacing:-1.2px;
}
.bhhs-info-lead{
    max-width:820px;
    margin:0 0 30px;
    color:#60758b;
    font-size:17px;
    line-height:1.65;
}
.bhhs-info-points{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}
.bhhs-info-points>div{
    padding:20px;
    border:1px solid #dfe8f1;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 28px rgba(20,56,90,.05);
}
.bhhs-info-points strong,
.bhhs-info-points span{
    display:block;
}
.bhhs-info-points strong{
    margin-bottom:6px;
    color:#17324f;
    font-size:16px;
}
.bhhs-info-points span{
    color:#687c90;
    font-size:14px;
    line-height:1.5;
}
.bhhs-info-note{
    margin-top:18px;
    padding:18px 20px;
    border-radius:16px;
    background:#eef5fb;
    color:#566c81;
    line-height:1.55;
}
.bhhs-info-note strong,
.bhhs-info-note span{
    display:block;
}
.bhhs-info-note strong{
    margin-bottom:4px;
    color:#17324f;
}
.bhhs-info-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    margin-top:24px;
    padding:0 24px;
    border-radius:999px;
    background:#1f64bd;
    color:#fff!important;
    font-weight:900;
    text-decoration:none!important;
}
@media(max-width:680px){
    .bhhs-info-page{padding:48px 16px 60px}
    .bhhs-info-points{grid-template-columns:1fr}
    .bhhs-info-page h1{font-size:34px}
    .bhhs-info-lead{font-size:16px}
    .bhhs-info-cta{width:100%;box-sizing:border-box}
}


/* v1.6.4 — clean internal Βρες Επαγγελματία page */
body:has(.bhhs-info-page) .wp-block-post-title,
body:has(.bhhs-info-page) .entry-title,
body:has(.bhhs-info-page) header.entry-header > h1{
    display:none!important;
}
body:has(.bhhs-info-page) .bhhs-info-page{
    padding:64px 24px 78px!important;
}
body:has(.bhhs-info-page) .bhhs-info-shell{
    width:min(1160px,100%)!important;
    margin:0 auto!important;
    text-align:center!important;
}
body:has(.bhhs-info-page) .bhhs-info-kicker{
    margin-bottom:12px!important;
}
body:has(.bhhs-info-page) .bhhs-info-page h1{
    max-width:880px!important;
    margin:0 auto 18px!important;
    font-size:clamp(36px,4vw,54px)!important;
    text-align:center!important;
}
body:has(.bhhs-info-page) .bhhs-info-lead{
    max-width:900px!important;
    margin:0 auto 34px!important;
    text-align:center!important;
}
body:has(.bhhs-info-page) .bhhs-info-points{
    width:100%!important;
    max-width:1100px!important;
    margin:0 auto!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:18px!important;
}
body:has(.bhhs-info-page) .bhhs-info-points>div{
    min-height:128px!important;
    padding:24px 26px!important;
    display:flex!important;
    flex-direction:column!important;
    justify-content:center!important;
    text-align:center!important;
    border-radius:20px!important;
}
body:has(.bhhs-info-page) .bhhs-info-points strong{
    font-size:17px!important;
}
body:has(.bhhs-info-page) .bhhs-info-points span{
    font-size:14.5px!important;
}
body:has(.bhhs-info-page) .bhhs-info-note{
    max-width:900px!important;
    margin:22px auto 0!important;
    padding:20px 24px!important;
    text-align:center!important;
}
body:has(.bhhs-info-page) .bhhs-info-cta{
    display:none!important;
}
@media(max-width:760px){
    body:has(.bhhs-info-page) .bhhs-info-page{padding:46px 16px 58px!important}
    body:has(.bhhs-info-page) .bhhs-info-points{grid-template-columns:1fr!important;gap:14px!important}
    body:has(.bhhs-info-page) .bhhs-info-points>div{min-height:auto!important;padding:20px!important}
    body:has(.bhhs-info-page) .bhhs-info-page h1{font-size:34px!important}
}
