/* ==========================================
   HEADER
========================================== */

.hamsa-site-header {
    position: relative;

    background: #ffffff;

    border-bottom:
        1px solid rgba(0,0,0,.06);

    transition:
        background .2s ease,
        box-shadow .2s ease;
}

/* ==========================================
   HEADER INNER
========================================== */

.hamsa-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    min-height: 112px;
}

/* ==========================================
   BRANDING
========================================== */

.hamsa-header-left {
    display: flex;
    align-items: center;
}

.custom-logo {
    display: block;

    max-width: 240px;
    height: auto;
}

.site-title {
    text-decoration: none;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;

    color: #222222;
}

/* ==========================================
   NAVIGATION
========================================== */

.hamsa-header-navigation {
    margin-left: auto;

    display: flex;
    align-items: center;
}

/* ==========================================
   HEADER RIGHT
========================================== */

.hamsa-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}