/* PATCH 51: Detail Go-Live polish
   - Hero image uses the available right-hand area
   - Small location/map card on detail pages
   - Detail content remains editable via DB content blocks
*/
.onb-detail-page .onb-product-hero{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(360px,1.08fr);
  align-items:stretch;
  gap:0;
}
.onb-detail-page .onb-product-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.onb-detail-page .onb-product-image{
  min-height:390px;
  height:auto;
  display:block;
  position:relative;
  overflow:hidden;
}
.onb-detail-page .onb-product-image img{
  width:100%;
  height:100%;
  min-height:390px;
  object-fit:cover;
  object-position:center;
  display:block;
}
.onb-detail-page .onb-gallery-button{
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:2;
}
.onb-detail-page .onb-product-subtitle{
  max-width:42rem;
}
.onb-detail-page .onb-product-facts{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.onb-location-detail-card{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(300px,1.05fr);
  gap:18px;
  align-items:stretch;
  overflow:hidden;
}
.onb-location-detail-card .onb-location-copy{
  padding:4px 0;
}
.onb-location-detail-card h2{
  margin-top:0;
}
.onb-location-detail-card p{
  color:#40566d;
  line-height:1.6;
}
.onb-location-detail-card address{
  margin:14px 0 0;
  padding:14px 16px;
  border:1px solid rgba(10,35,75,.12);
  border-radius:16px;
  background:#f6f9fc;
  font-style:normal;
  display:grid;
  gap:4px;
  color:#09234a;
}
.onb-location-detail-card address strong{
  font-weight:900;
}
.onb-location-map{
  min-height:230px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(10,35,75,.12);
  box-shadow:0 14px 34px rgba(12,35,66,.10);
  background:#eaf0f6;
}
.onb-location-map iframe{
  width:100%;
  height:100%;
  min-height:230px;
  border:0;
  display:block;
}
.onb-location-map-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:9px 14px;
  border-radius:999px;
  background:#0b2a57;
  color:#fff;
  font-weight:900;
  text-decoration:none;
}
.onb-location-map-link:hover{
  background:#123d78;
}
.onb-detail-page .onb-pretab-copy{
  margin-top:18px;
}
@media(max-width:920px){
  .onb-detail-page .onb-product-hero,
  .onb-location-detail-card{
    grid-template-columns:1fr;
  }
  .onb-detail-page .onb-product-image,
  .onb-detail-page .onb-product-image img{
    min-height:300px;
  }
}
@media(max-width:620px){
  .onb-detail-page .onb-product-image,
  .onb-detail-page .onb-product-image img{
    min-height:245px;
  }
  .onb-detail-page .onb-product-facts{
    grid-template-columns:1fr 1fr;
  }
  .onb-location-map,
  .onb-location-map iframe{
    min-height:210px;
  }
}
