/* FH9 – Home Reassurance (front)
   v1.1.7: higher cards + 3x image size + font scale tuned
*/
.fh9-hr{margin:28px 0;color:var(--fh9-text,#f2f2f2)}
.fh9-hr__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
@media (max-width:992px){.fh9-hr__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:576px){.fh9-hr{margin:20px 0}.fh9-hr__grid{grid-template-columns:1fr;gap:12px}}

.fh9-hr__item{
  display:flex;
  gap:18px;
  padding:24px 22px;
  min-height:110px;
  border-radius:var(--fh9-radius-xl,22px);
  background:var(--fh9-bg-1,#1b1b1f);
  border:1px solid var(--fh9-card-line,rgba(218,165,32,.18));
  box-shadow:var(--fh9-shadow,0 16px 40px rgba(0,0,0,.35));
  align-items:center;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  position:relative;
}
.fh9-hr__item:hover{
  transform:translateY(-3px);
  border-color:var(--fh9-gold,#c6a756);
  box-shadow:0 20px 48px rgba(0,0,0,.45),0 0 0 1px var(--fh9-gold-soft,rgba(240,194,58,.18));
}

.fh9-hr__media{flex:0 0 auto}
.fh9-hr__img{
  width:72px;
  height:72px;
  object-fit:cover;
  display:block;
  border-radius:14px;
  border:1px solid var(--fh9-card-line,rgba(218,165,32,.18));
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.55));
}

.fh9-hr__content{min-width:0}
.fh9-hr__title{
  font-weight:800;
  letter-spacing:.25px;
  margin:0 0 8px 0;
  font-size:1.20rem;
  line-height:1.15;
}
.fh9-hr__text{
  color:var(--fh9-text-dim,#b7b7b7);
  line-height:1.45;
  font-size:1.00rem;
}

@media (max-width:576px){
  .fh9-hr__item{
    padding:18px 16px;
    min-height:auto;
    align-items:flex-start;
  }
  .fh9-hr__img{width:56px;height:56px;border-radius:12px}
  .fh9-hr__title{font-size:1.05rem;margin-bottom:6px}
  .fh9-hr__text{font-size:.95rem}
}
