/* Household Hub Refresh - base styles */
:root{
  --hh-max: 1120px;
  --hh-pad: 20px;
  --hh-radius: 16px;
  --hh-border: #e7e7e7;
  --hh-text: #1a1a1a;
  --hh-muted:#5b5b5b;
  --hh-bg:#ffffff;
  --hh-card:#fafafa;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--hh-text);
  background:var(--hh-bg);
  line-height:1.55;
}
a{color:inherit}
.hh-container{
  max-width:var(--hh-max);
  margin:0 auto;
  padding:0 var(--hh-pad);
}
.hh-header{
  border-bottom:1px solid var(--hh-border);
  background:#fff;
}
.hh-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}
.hh-brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.hh-logo{
  width:42px;height:42px;border-radius:12px;
  background:var(--hh-card);
  border:1px solid var(--hh-border);
  display:grid;place-items:center;
  font-weight:700;
}
.hh-site-title{
  font-size:18px;
  font-weight:800;
  letter-spacing:0.2px;
}
.hh-site-tagline{
  font-size:13px;
  color:var(--hh-muted);
}
.hh-nav ul{list-style:none;margin:0;padding:0;display:flex;gap:18px;flex-wrap:wrap}
.hh-nav a{text-decoration:none;color:var(--hh-muted);font-weight:600}
.hh-nav a:hover{color:var(--hh-text)}
.hh-main{padding:34px 0}
.hh-hero{
  border:1px solid var(--hh-border);
  border-radius:var(--hh-radius);
  padding:28px;
  background:linear-gradient(180deg,#ffffff, #fbfbfb);
}
.hh-hero h1{margin:0 0 10px 0;font-size:34px;line-height:1.15}
.hh-hero p{margin:0;color:var(--hh-muted);max-width:70ch}
.hh-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}
@media (max-width: 900px){ .hh-grid{grid-template-columns:repeat(2, minmax(0,1fr));} }
@media (max-width: 600px){
  .hh-grid{grid-template-columns:1fr;}
  .hh-header-inner{flex-direction:column;align-items:flex-start}
}
.hh-card{
  border:1px solid var(--hh-border);
  background:var(--hh-card);
  border-radius:var(--hh-radius);
  padding:18px;
}
.hh-card h3{margin:0 0 8px 0;font-size:18px}
.hh-card p{margin:0;color:var(--hh-muted)}
.hh-footer{
  border-top:1px solid var(--hh-border);
  padding:22px 0;
  color:var(--hh-muted);
  background:#fff;
}
.hh-footer .hh-footer-inner{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap
}
.hh-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--hh-border);
  background:#fff;
  text-decoration:none;
  font-weight:700;
}
.hh-btn:hover{background:#f6f6f6}
/* Content */
.entry-title{margin-top:0}
.wp-block-image img{max-width:100%;height:auto}
