/* =========================================================
   fh26 Google Reviews
   ========================================================= */
.fh26-reviews{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:999;
  width:min(320px,calc(100vw - 28px));
  padding:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  box-shadow:0 12px 40px rgba(0,0,0,.16);
  font-family:inherit;
  color:#1f2933;
  opacity:0;
  visibility:hidden;
  transform:translateY(24px);
  transition:opacity .45s ease,transform .45s ease,visibility .45s;
}
.fh26-reviews.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.fh26-reviews__close{
  position:absolute;
  top:8px;
  right:10px;
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:#667085;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.fh26-reviews__head{
  display:flex;
  align-items:center;
  margin-bottom:12px;
  padding-right:26px;
}
.fh26-reviews__stars{
  color:#f5a623;
  font-size:16px;
  line-height:1;
  letter-spacing:1px;
}
.fh26-reviews__title{
  margin-top:4px;
  font-size:13px;
  font-weight:700;
}
.fh26-reviews__quote{
  transition:opacity .25s ease;
}
.fh26-reviews__quote.is-fading{
  opacity:0;
}
.fh26-reviews__text{
  margin:0 0 13px;
  font-size:14px;
  line-height:1.5;
}
.fh26-reviews__meta{
  display:flex;
  align-items:center;
  gap:8px;
}
.fh26-reviews__avatar{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#eef2f4;
  font-weight:700;
  font-size:14px;
}
.fh26-reviews__author{
  display:block;
  font-size:13px;
}
.fh26-reviews__time{
  display:block;
  margin-top:2px;
  color:#7a828a;
  font-size:11px;
}
.fh26-reviews__dots{
  display:flex;
  gap:5px;
  margin:12px 0 10px;
}
.fh26-reviews__dots span{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#d2d6da;
}
.fh26-reviews__dots span.is-active{
  background:#4f7c70;
}
.fh26-reviews__link{
  display:inline-block;
  color:#315f54;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.fh26-reviews__link:hover{
  text-decoration:underline;
}
@media(max-width:600px){
  .fh26-reviews{
    right:12px;
    bottom:12px;
    width:calc(100vw - 24px);
    padding:16px;
  }
}
@media(prefers-reduced-motion:reduce){
  .fh26-reviews,
  .fh26-reviews__quote{
    transition:none;
  }
}