/* Modules: featured + entree */

/* Featured section banner (Title + Image + Featured items)
   Designed to create a bold block like the provided "ENTREES" reference.
*/
.jh-featured{
    display:grid;
    grid-template-columns: 1.1fr 1.1fr 1.3fr;
    align-items:stretch;
    overflow:hidden;
    margin: 0 0 18px;
}

.jh-featured__left{
    background: var(--jh-f-left-bg, var(--jh-entree-negro));
    color: var(--jh-f-left-color, var(--jh-entree-naranja-lavado));
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 18px 18px;
}
.jh-featured__title{
    width:100%;
    text-align:left;
    text-transform: uppercase;
    font-family: var(--jh-item-title-font, 'JH_Knockout94', Arial, sans-serif);
    line-height: .9;
    letter-spacing: .02em;
    font-size: clamp(56px, 9vw, 160px);
}
.jh-featured__img{
    background:var(--jh-entree-negro);
    position:relative;
}
.jh-featured__img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.jh-featured__items{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap:0;
    color: var(--jh-f-right-color, var(--jh-entree-negro));
}
.jh-featured__card{
    padding: 16px 16px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    gap:8px;
}
.jh-featured__card-title{
    font-family: var(--jh-item-title-font, 'JH_Knockout94', Arial, sans-serif);
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1;
    font-size: 28px;
}
.jh-featured__card-desc{
    font-family: var(--jh-item-desc-font, Arial, sans-serif);
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .01em;
    opacity:.95;
}
.jh-featured__card-price{
    margin-top:auto;
    font-family: var(--jh-item-desc-font, Arial, sans-serif);
    /* font-weight: 800; */
    letter-spacing: .02em;
}

@media (max-width: 767px){

    .jh-featured{
        grid-template-columns: 1fr;
    }
    .jh-featured__title{
        text-align:center;
        font-size: clamp(44px, 18vw, 120px);
    }
    .jh-featured__img{
        min-height: 180px;
    }
    .jh-featured__items{
        grid-template-columns: 1fr;
    }
}
