/* Location page layout + components */

.hrow{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.hrow img{
  height:36px;
  width:auto;
}

h1{
  font-size:22px;
  margin:0;
}

.photo{
  margin:12px 0;
}

.photo img{
  display:block;
  width:75%;
  height:auto;
  margin:0 auto;
}

.info{
  margin-top:10px;
  font-family:Arial,Helvetica,sans-serif;
}

.info .row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:baseline;
  margin:6px 0;
}

.info .label{
  font-weight:800;
  color:var(--ink);
}

.info .value{
  font-weight:700;
  color:var(--muted);
}

a.value{
  color:var(--red);
  text-decoration:none;
}

a.value:hover{
  text-decoration:underline;
}

/* Hours */
.hours{
  display:grid;
  gap:4px;
}

.hours .line{
  font-weight:400;
  color:var(--muted);
  line-height:1.25;
}

.hours .line.today{
  font-weight:900;
  color:var(--ink);
}

/* Button row */
.btnrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

/* Hide Call now on desktop/tablet */
.btnrow a.btn.danger{ display:none; }

/* Mobile: 3 across + back full width + show Call */
@media (max-width:720px){
  .btnrow{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }
  .btnrow .btn{
    width:100%;
    justify-content:center;
  }
  .btnrow .btn:last-child{
    grid-column:1 / -1;
  }

  .btnrow a.btn.danger{ display:inline-flex; }
}
