.nav-callout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
    background: var(--deep-blue) !important;
    text-decoration: none !important;
}

.nav-callout .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
}

.nav-callout .title {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 280px;
    padding-left: 24px;
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    font-size: 25px;
    line-height: var(--leading-none);
    letter-spacing: .04em;
    color: var(--white);
    text-transform: uppercase;
}

.nav-callout .title::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 5px;
    background: var(--gold);
    pointer-events: none;
    content: '';
}

/*=====----- MOBILE NAV CALLOUT -----=====*/

.mobile-nav .nav-callout {
    min-height: 145px;
}

.mobile-nav .nav-callout .title {
    max-width: 220px;
    padding-left: 15px;
    margin-left: 10px;
    font-size: 20px;
}