.rest-conteudo{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.rest-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid #e8e8ed;
    border-radius: 8px;
    padding: 12px;
    text-decoration: none; 
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rest-card-link:hover {
border-color: #111111;
background-color: #fafdff;
transform: translateY(-2px);
}
.rest-image-container {
width: 120px; 
height: 80px; 
flex-shrink: 0;
border-radius: 6px; 
overflow: hidden; 
background-color: #f7f7f7;
}
.rest-card-img { 
width: 100%; 
height: 100%; 
object-fit: cover; 
}
.rest-card-text-side { 
display: flex; 
flex-direction: column; 
justify-content: center; 
flex-grow: 1; 
min-width: 0; 
}
.rest-card-type { 
font-size: 10px; 
text-transform: uppercase; 
color: #86868b; 
margin-bottom: 4px; 
font-weight: 500; 
}
.rest-card-name { 
font-size: 14px; 
font-weight: 600; 
color: #111111; 
margin: 0; 
line-height: 1.3; 
}

/* Responsividade da Grid Interna */
@media (max-width: 900px) { 
.rest-cards-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 600px) { 
.rest-cards-grid { grid-template-columns: 1fr; gap: 10px; } 
.rest-image-container { width: 100px; height: 70px; }
.rest-card-name { font-size: 13px; }
.rest-card-type { font-size: 9px; }

.rest-conteudo{
    grid-template-columns: repeat(1, 1fr);
   
}

}