/* --- Receitas agendadas para hoje --- */
#receitas-hoje {
  display: none;
  padding: 16px 16px 8px;
}
#receitas-hoje h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin: 0 0 12px 0;
}
.receita-hoje-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.receita-hoje-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.receita-hoje-card .rcnome {
  font-size: 0.78rem;
  color: #333;
  margin-top: 5px;
  line-height: 1.25;
  word-break: break-word;
}
.receita-hoje-card .turno-badge {
  font-size: 0.7rem;
  color: #999;
  margin-top: 2px;
}
.receitas-hoje-turno {
  margin-bottom: 20px;
}
.receitas-hoje-turno-titulo {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  padding: 6px 12px;
  background: #f0f0f0;
  border-left: 4px solid #b08c00;
  border-radius: 0 4px 4px 0;
}
.receitas-hoje-grupo {
  margin-bottom: 16px;
}
.receitas-hoje-grupo-titulo {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid #eee;
}
.receitas-hoje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .receitas-hoje-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
  }
  .receita-hoje-card .rcnome {
    font-size: 0.72rem;
  }
}
