/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/
.recipe-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.recipe-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  background: #fff;
}

.recipe-card:hover {
  transform: translateY(-4px);
}

.recipe-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.recipe-card h2 {
  font-size: 20px;
  margin: 15px;
}

.recipe-card p {
  margin: 0 15px 20px;
  color: #666;
}