/* Locations page - child rebuild 2026-07-08. Scoped to .el-locations. ASCII only. */

.el-locations{
  padding: 0 30px 150px;
  overflow-x: hidden;
}
.el-locations .el-loc-inner{
  max-width: 100%;
  padding: 0;
}
.el-locations .el-loc-photo{
  position: relative;
  line-height: 0;
}
.el-locations .el-loc-photo img{
  width: 100%;
  height: auto;
  display: block;
}
.el-locations .el-loc-photo:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}
.el-locations .el-loc-info{
  position: relative;
  margin-top: -90px;
  padding: 0 10px;
  z-index: 3;
}
.el-locations .el-loc-name{
  font-family: var(--f-serif);
  font-weight: 400;
  color: var(--c-grey-dark);
}
.el-locations .el-loc-info a{
  color: inherit;
}
.el-locations .el-loc-text{
  float: left;
  font-weight: 700;
}
.el-locations .el-loc-text p{
  margin-bottom: 5px;
}
.el-locations .el-loc-addr a{
  display: inline-block;
  padding-right: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322a1c4'%3E%3Cpath d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") top right no-repeat;
  background-size: 13px;
}
.el-locations .el-loc-email a{
  text-decoration: underline;
  font-weight: 400;
}
.el-locations .el-loc-book{
  margin-top: 15px;
  float: right;
}
@media (max-width: 768px){
  .el-locations{
    padding-bottom: 100px;
  }
  .el-locations .el-loc-info{
    margin-top: 0;
  }
  .el-locations .el-loc-text{
    float: none;
  }
  .el-locations .el-loc-book{
    display: block;
    width: 260px;
    margin: 25px auto 0;
    float: none;
    clear: both;
  }
  .el-locations .el-loc-photo:after{
    height: 40px;
  }
}
