/*
Theme Name: Woostify Child
Template: woostify
Version: 1.0
*/

.zayela-matcha-recipes {
  background: linear-gradient(135deg, #0d1f0d, #1e3a1e);
  color: #dfeee0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  border-radius: 16px;
  max-width: 1200px;
  margin: auto;
}
.zayela-matcha-recipes h2 {
  font-size: 2.6rem;
  margin-bottom: 36px;
  color: #b0d9b0;
}
.recipe-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.recipe-card {
  background: #112a11;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 0 16px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.8);
}
.recipe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.recipe-card h3 {
  font-size: 1.3rem;
  color: #98c698;
  margin: 12px 0 6px;
}
.recipe-card p {
  font-size: 0.95rem;
  color: #c8dec8;
  padding: 0 16px 16px;
}
@media (max-width: 800px) {
  .recipe-grid {
    flex-direction: column;
    align-items: center;
  }
}
