.ne-today-menu{

    max-width: 500px;
    margin: 40px auto;
    background:#fff;
    border-radius: 1.2rem;
    border: 0.2rem solid #055B4E;
    padding: 1rem;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.ne-today-menu h2{

    text-align:center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom:10px;
}

.ne-today-menu h3{

    margin-top:20px;
    padding-bottom:8px;
    border-bottom:2px dotted #055B4E;
}

.ne-menu-list{

    list-style:none;
    padding:0;
    margin:0;
}

.ne-menu-list li{

    position:relative;
    padding-left:24px;
    margin:10px 0;
    line-height:1.6;
}

.ne-menu-list li::before{

    content:"➜";
    position:absolute;
    left:0;
    color:#4CAF50;
    font-weight:bold;
}

.ne-today-menu p{

    text-align:center;
    color:#777;
}

.ne-week-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin:40px 0;
}

.ne-day-card{

    background:#fff;
    border-radius:10px;
    padding:15px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transition:.25s;
}

.ne-day-card:hover{

    transform:translateY(-6px);

}

.ne-day-header{

    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:1px solid #ececec;
}

.ne-day-card h4{

    margin-top:20px;
    margin-bottom:10px;
}