.cg-home-food{
    padding:72px 0;
    background:#f7fafc;
}

.cg-food-layout{

    display:grid;

    grid-template-columns:
    1.4fr
    .8fr;

    gap:30px;

    margin-top:28px;

}

.cg-food-featured{

    overflow:hidden;

    border-radius:34px;

    background:#fff;

    box-shadow:0 24px 60px rgba(16,24,40,.08);

}

.cg-food-featured__image {
    min-height: 360px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.28)),
        url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1400") center/cover;
}

.cg-food-featured__content{

    padding:34px;

}

.cg-food-badge{

    display:inline-block;

    padding:8px 16px;

    border-radius:999px;

    background:#FFF5D6;

    font-weight:800;

    margin-bottom:18px;

}

.cg-food-featured h3{

    margin:0;

    font-size:44px;

    font-weight:850;

}

.cg-food-featured p{

    margin:18px 0;

    color:#64748B;

    font-size:18px;

    line-height:1.7;

}

.cg-food-meta{

    display:flex;

    gap:18px;

    margin-bottom:26px;

    font-weight:800;

}

.cg-food-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:56px;

    padding:0 28px;

    border-radius:999px;

    background:var(--cg-primary);

    color:#fff;

    font-weight:800;

    text-decoration:none;

}

.cg-food-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.cg-food-small{

    height:160px;

    border-radius:28px;

    background:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-size:42px;

    font-weight:850;

    box-shadow:0 18px 40px rgba(16,24,40,.06);

    transition:.3s;

}

.cg-food-small span{

    margin-top:12px;

    font-size:20px;

}

.cg-food-small:hover{

    transform:translateY(-6px);

}