/* Scoped naturally by BB node wrapper; keep selectors module-specific */
.bb-footer-highlight-banner-with-socials .bb-fhbs-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-logo{
    flex:0 0 auto;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-logo-img{
    display:block;
    max-width:180px;
    height:auto;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-content{
    flex:1 1 auto;
    min-width:0;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-heading{
    margin:0 0 6px 0;
}
.bb-footer-highlight-banner-with-socials .bb-fhbs-paragraph p{
    max-width: 100%;
    width:500px;
}
.bb-footer-highlight-banner-with-socials .bb-fhbs-paragraph > *:first-child{ margin-top:0; }
.bb-footer-highlight-banner-with-socials .bb-fhbs-paragraph > *:last-child{ margin-bottom:0; }

.bb-footer-highlight-banner-with-socials .bb-fhbs-socials{
    flex:0 0 auto;
    align-self:end;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-socials-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.bb-footer-highlight-banner-with-socials .bb-fhbs-socials-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    width:32px;
    height:32px;
    font-size:16px;
    color:#fff;
    background-color:#768e45;
    border:1px solid transparent;
    border-radius: 100%;
    transition:all .3s ease-in-out;
}
.bb-footer-highlight-banner-with-socials .bb-fhbs-socials-link:hover{
    color:#768e45;
    background-color:#fff;
    border:1px solid #768e45;
}

@media (max-width: 768px){
    .bb-footer-highlight-banner-with-socials .bb-fhbs-inner{
        flex-direction:column;
        align-items:center;
    }
    .bb-footer-highlight-banner-with-socials .bb-fhbs-content{
        text-align:center;
    }
    .bb-footer-highlight-banner-with-socials .bb-fhbs-paragraph p{
        width:100%;
    }
    .bb-footer-highlight-banner-with-socials .bb-fhbs-socials{
        width: 100%;
    }
    .bb-footer-highlight-banner-with-socials .bb-fhbs-socials-list{
        justify-content:center;
        width: 100%;
    }
}