/* Hope One Walk — Wall of Hope View More v1
   Additive styles only. The existing Journey and Wall of Hope CSS remains active. */
.j-wall-more{
  align-self:center;
  width:100%;
  padding:11px 16px;
  border:1px solid #c8d3dc;
  border-radius:8px;
  background:#fff;
  color:var(--jn);
  cursor:pointer;
  font:800 13px Inter,sans-serif;
  text-transform:uppercase;
  letter-spacing:.04em;
  transition:background .2s ease,border-color .2s ease,color .2s ease
}
.j-wall-more:hover,
.j-wall-more:focus-visible{
  border-color:var(--jr);
  background:var(--jr);
  color:#fff
}
.j-wall-more:focus-visible{
  outline:3px solid rgba(11,92,173,.2);
  outline-offset:2px
}
.j-wall-more:disabled{
  cursor:wait;
  opacity:.65
}
.j-wall-more[hidden]{
  display:none!important
}
