/* Module: bebidas */

/* ===============================
   MODULO BEBIDAS (3 columnas)
   =============================== */

.jh-bebidas{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 360px;
}

.jh-bebidas__col{
    padding: 56px 52px;
    display:flex;
    flex-direction:column;
}

.jh-bebidas__left{
    background:var(--jh-entree-negro);
    justify-content:center;
}

.jh-bebidas__big{
    font-family: var(--jh-item-title-font);
    /* font-weight: 400; */
    text-transform:uppercase;
    line-height: .88;
    letter-spacing: 1px;
    color:var(--jh-entree-naranja-lavado);
}

.jh-bebidas__big-line{
    display:block;
    font-size: 120px;
}

.jh-bebidas__center{
    background:var(--jh-entree-rojo-lavado);
}

.jh-bebidas__right{
    background:var(--jh-entree-rojo-fuerte);
}

.jh-bebidas__subtitle{
    font-family: var(--jh-item-title-font, 'Inter', system-ui, sans-serif);
    /* font-weight: 900; */
    text-transform:uppercase;
    letter-spacing: 1.2px;
    color:var(--jh-entree-naranja-lavado);
    font-size: 26px;
    margin-bottom: 22px;
}

.jh-bebidas__row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap: 18px;
    padding: 6px 0;
}

.jh-bebidas__name{
    font-family: var(--jh-item-desc-font, 'Inter', system-ui, sans-serif);
    /* font-weight: 800; */
    text-transform:uppercase;
    letter-spacing: .6px;
    color:var(--jh-entree-naranja-lavado);
    font-size: 15px;
    line-height: 1.25;
}

.jh-bebidas__price{
    font-family: var(--jh-item-desc-font, 'Inter', system-ui, sans-serif);
    /* font-weight: 900; */
    color:var(--jh-entree-naranja-lavado);
    font-size: 15px;
    line-height: 1.25;
    white-space:nowrap;
}

@media (max-width: 980px){
    .jh-bebidas{
        grid-template-columns: 1fr;
    }
    .jh-bebidas__col{
        padding: 40px 28px;
    }
    .jh-bebidas__big-line{
        font-size: 92px;
    }
}
