.gz-business-hours{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.gz-hours-row{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #ececec;

}

.gz-day{

    font-weight:600;

}

.gz-time{

    color:#555;

}

.gz-closed{

    color:#999;

}

.gz-hours-24{

    background:#e9fff0;

    color:#22863a;

    padding:14px 18px;

    border-radius:8px;

    font-weight:600;

}

@media(max-width:768px){

.gz-hours-row{

    flex-direction:column;

    align-items:flex-start;

    gap:5px;

}

}