.location-map{
  width: 100%;
}

.map-frame{
  width: 100%;
  height: 50vh;       /* 50% of the viewport height */
  min-height: 320px;  /* optional: keeps it usable on small screens */
  overflow: hidden;
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.reviews {
	padding:20px 0px;
	
}


/* Space + nicer paragraph rhythm just for this block */
.trails-findus-intro{
  margin: 0 auto;
}

/* Shamrock + glowing line divider (between intro + address) */
.trails-shamrock-divider{
  position: relative;
  width: min(600px, 80%);
  height: 34px;                 /* reserves space so nothing overlaps */
  margin: 1.35rem auto 1.55rem; /* "a little more space" */
}

/* Glowing Irish line */
.trails-shamrock-divider::before{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;                    /* sits just below shamrocks */
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.9),
    rgba(255,255,255,0)
  );
  opacity: .9;
}

/* Shamrock motif */
.trails-shamrock-divider::after{
  content: "☘ ☘ ☘ ☘ ☘";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 9px;
  font-size: .9rem;
  letter-spacing: 6px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 0 6px rgba(0,0,0,.6);
}

/* Address spacing */
.trails-address p{
  margin: .25rem auto;
  line-height: 1.6;
}

/* Tighter shamrocks on very small phones */
@media (max-width: 420px){
  .trails-shamrock-divider{ width: 92%; }
  .trails-shamrock-divider::after{
    font-size: .82rem;
    letter-spacing: 4px;
  }
}
