.ps-food-archive{
  max-width:1120px;
  margin:0 auto;
  padding:56px 20px 96px;
}

.ps-food-hero{
  margin-bottom:40px;
}

.ps-food-hero h1{
  font-size:40px;
  line-height:1.35;
  margin:0 0 14px;
}

.ps-food-hero p{
  font-size:16px;
  line-height:1.9;
  color:#555;
  margin:0;
}

.ps-food-category-filter{
  margin:0 0 52px;
  padding:24px;
  border-radius:20px;
  background:#fafafa;
}

.ps-food-category-filter h2{
  font-size:16px;
  margin:0 0 16px;
}

.ps-food-category-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.ps-food-category-chips a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
  color:#333;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.ps-food-category-chips a.is-active{
  background:#111;
  color:#fff;
  border-color:#111;
}

.ps-food-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.ps-food-card{
  display:block;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:#333;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.ps-food-card-image{
  aspect-ratio:4/3;
  background:#f2f2f2;
  overflow:hidden;
}

.ps-food-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ps-food-card-body{
  padding:16px;
}

.ps-food-card-body h3{
  font-size:18px;
  margin:0 0 8px;
}

.ps-food-card-body p{
  font-size:13px;
  line-height:1.7;
  color:#666;
  margin:0;
}

@media (max-width:800px){
  .ps-food-grid{
    grid-template-columns:1fr;
  }

  .ps-food-hero h1{
    font-size:32px;
  }
}

.ps-food-single{
  max-width:100%;
  padding:56px 20px 96px;
}

.ps-food-article{
  max-width:720px;
  margin:0 auto;
}

.ps-food-header{
  margin-bottom:36px;
}

.ps-food-header h1{
  font-size:36px;
  line-height:1.4;
  margin:12px 0 16px;
}

.ps-food-lead{
  font-size:18px;
  line-height:1.9;
  color:#444;
  font-weight:500;
  margin:24px 0 0;
}

.ps-food-featured{
  margin:0 0 40px;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:16/9;
}

.ps-food-featured img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ps-food-content{
  font-size:17px;
  line-height:2.05;
  color:#333;
}

.ps-food-info{
  margin:64px 0 0;
  padding-top:36px;
  border-top:1px solid #eee;
}

.ps-food-info h2{
  font-size:26px;
  margin:0 0 18px;
}

.ps-food-text{
  font-size:16px;
  line-height:2;
  color:#555;
}

.ps-food-footer{
  margin-top:56px;
  padding-top:28px;
  border-top:1px solid #eee;
}

.ps-back-link{
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

@media (max-width:768px){
  .ps-food-single{
    padding:36px 18px 72px;
  }

  .ps-food-header h1{
    font-size:30px;
  }

  .ps-food-content{
    font-size:16px;
  }
}

.ps-food-tags{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.ps-food-tag{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:#f5f5f5;

    text-decoration:none;

    color:#333;

    font-weight:700;

}

.ps-food-tag:hover{

    background:#111;
    color:#fff;

}