/* Empório Portugal — cards de receitas (ENTREGA_01) */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.recipe-card {
  background: #fffaf0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.recipe-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  background: linear-gradient(165deg, #f7efde 0%, #e8dcc4 100%);
}

.recipe-card-content {
  padding: 20px;
}

.recipe-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0b2f24;
  background: rgba(212, 175, 55, 0.18);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.recipe-card h3 {
  font-size: 22px;
  color: #0b2f24;
  margin: 0 0 10px;
}

.recipe-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #4a3b2a;
  margin: 0 0 16px;
}

.recipe-link {
  color: #8b1e1e;
  font-weight: 700;
  text-decoration: none;
}

.recipe-link:hover {
  color: #d4af37;
}

.ep-home-recipes-featured .recipes-grid {
  margin-top: 24px;
}

@media (max-width: 620px) {
  .recipe-card img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}
