/*
Theme Name: Plumbing Child
Template: plumbing
Version: 1.0.0
Description: Child theme for Plumbing SPL theme (custom category archive layout).
*/

/* Category archive grid (3 tiles per row) */
body.category .vip-cat-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}
@media (max-width: 1024px){
  body.category .vip-cat-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  body.category .vip-cat-grid{ grid-template-columns:repeat(1, minmax(0, 1fr)); }
}
body.category .vip-cat-tile{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
body.category .vip-cat-link{
  display:block;
  padding:16px;
  text-decoration:none;
}
body.category .vip-cat-thumb img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}
body.category .vip-cat-title{
  margin:12px 0 6px;
  font-size:18px;
  line-height:1.3;
}
body.category .vip-cat-excerpt{
  opacity:.85;
  line-height:1.5;
}
body.category .vip-cat-description{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.10);
}
