.lunch_wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-block: 30px;
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    place-items: center; */
}
.lunch_item a {
    display: block;
    width: min(100%, 320px);
    margin-inline: auto;
    border: 1px solid #ccc;
    box-sizing: border-box;
    transition: all .1s;
    &:hover {
        filter: brightness(87%) contrast(120%);
    }
}
.lunch_item img {
    width: 100%;
    height: auto;
}
.lunch_heading {
    /* font-size: 2em; */
    position: relative;
    font-weight: bold;
    color: #fff;
    background-color: #3cb9b4;
    padding: 10px 20px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-size: 1.2em;
}
.lunch_heading span {
    display: inline-block;
    vertical-align: middle;
}

.lunch_heading .china_town {
    padding: 0 20px;
    font-size: 2em;
    line-height: 1.4;
    background: #fff;
    color: #3cb9b4;
    border-radius: 10px;
}
.lunch_heading .badge {
    margin-top: 10px;
    font-size: 1.2em;
}
.lunch_heading .lunch {
    font-size: 1.8em;
}


@media screen and (max-width: 640px){
    .lunch_wrapper {
        flex-direction: column;
    }
	.lunch_heading {
        font-size: 1em;
    }
    .lunch_heading .china_town {
        font-size: 1.6em;
    }
    .lunch_heading .lunch {
        font-size: 1.6em;
    }
}










