/* 1660 AutoCare V3.6.7.2 — Home hero hours micro-polish.
   Adds a compact, operational hours cue beside the existing top-of-page
   location information. Full weekly hours remain in the lower contact block. */

.home-page .hero__hours{
  display:flex;
  align-items:flex-start;
  gap:12px;
  width:max-content;
  max-width:min(100%,560px);
  margin-top:12px;
  color:#aebdc7;
  font-size:11px;
  font-weight:700;
  letter-spacing:.035em;
  line-height:1.5;
  text-transform:uppercase;
}

.home-page .hero__hours>svg{
  flex:0 0 24px;
  width:24px;
  height:24px;
  margin-top:1px;
  fill:none;
  stroke:var(--blue-bright);
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.home-page .hero__hours>span{
  display:block;
  min-width:0;
}

.home-page .hero__hours strong{
  display:block;
  margin-bottom:2px;
  color:var(--white);
  font-size:9px;
  font-weight:800;
  letter-spacing:.13em;
  line-height:1.3;
}

@media (max-width:620px){
  .home-page .hero__hours{
    gap:10px;
    margin-top:11px;
    font-size:10px;
    line-height:1.55;
  }

  .home-page .hero__hours>svg{
    flex-basis:21px;
    width:21px;
    height:21px;
  }

  .home-page .hero__hours strong{
    font-size:8px;
  }
}
