
/* BRANCH VISUAL SYSTEM - scoped and mobile safe */
.branch-detail{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  gap:42px;
  align-items:start;
}

.branch-visual{
  position:sticky;
  top:24px;
}

.branch-visual img,
.branch-detail > div:last-child img{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  border-radius:28px;
  box-shadow:0 24px 55px rgba(47,107,34,.12);
  border:1px solid rgba(230,220,201,.9);
  background:#fffdf7;
}

@media(max-width:900px){
  .branch-detail{
    grid-template-columns:1fr;
    gap:26px;
  }

  .branch-visual{
    position:relative;
    top:auto;
    order:-1;
  }

  .branch-visual img,
  .branch-detail > div:last-child img{
    max-width:100%;
    border-radius:22px;
  }
}
