/* Utility: visually hidden text (accessible to screen readers) */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Image tiles used in Daily Offers / Events (preserves existing look) */
.tile{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;

  flex:0 0 clamp(160px, 28vw, 240px);
  aspect-ratio:1 / 1;
  scroll-snap-align:start;

  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(13,67,94,0.12);
  box-shadow:0 18px 70px rgba(13,67,94,0.14);
}

/* Carousel responsiveness helpers */
@media (max-width: 380px){
  .carousel-shell{
    padding-left:34px !important;
    padding-right:34px !important;
  }
  .carousel-arrow{
    width:30px !important;
    height:30px !important;
  }
}

/* Directions link under the map (styled to match site buttons, without affecting layout) */
.map-directions-link{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(18,162,177,0.16);
  border:1px solid rgba(13,67,94,0.14);
  color:#0D435E;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(13,67,94,0.10);
}
.map-directions-link:hover{
  background:rgba(18,162,177,0.22);
}
