/* locate.css */
.loc-split { display:grid; grid-template-columns:1fr 1.6fr; }
.loc-info  { padding:60px 52px; background:var(--p); color:rgba(255,255,255,.88); display:flex; flex-direction:column; justify-content:center; min-height:460px; }
.loc-lbl   { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.38); margin-bottom:4px; }
.loc-val   { font-size:14px; color:rgba(255,255,255,.82); margin-bottom:20px; }
.loc-item  { margin-bottom:4px; }
.loc-map iframe { width:100%; height:100%; min-height:460px; border:none; display:block; }
.loc-transport { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; padding:64px 60px; }
.loc-tcard { background:var(--wh); border:1px solid var(--ln); padding:26px; }
@media(max-width:1024px){
  .loc-split { grid-template-columns: 1fr; }
  .loc-info  { min-height: auto; padding: 48px 32px; }
  .loc-map iframe { min-height: 360px; }
  .loc-transport { grid-template-columns: repeat(2,1fr); padding: 48px 32px; }
}
@media(max-width:768px){
  .loc-split { grid-template-columns:1fr; }
  .loc-map iframe { min-height:300px; }
  .loc-transport { grid-template-columns:1fr; padding:40px 20px; }
  .loc-info { padding:40px 20px; }
}
