/* One consistent, image-free list for all stockists. */
#shops .list-4 { background:#fff; }
#shops .stockist-row {
  display:grid; grid-template-columns:minmax(220px,.95fr) minmax(0,1.25fr) auto;
  align-items:center; gap:24px; width:100%; height:auto; min-width:0;
  box-sizing:border-box; margin:0; padding:30px; background:#fff;
  border:0; border-bottom:2px dotted #eee;
}
#shops .stockist-name, #shops .stockist-address {
  display:block; width:auto; height:auto; min-width:0; max-width:100%; margin:0;
  text-align:left; color:#333; letter-spacing:.04em; overflow-wrap:anywhere;
}
#shops .stockist-name { font-size:16px; line-height:1.8; font-weight:500; }
#shops .stockist-address { font-size:14px; line-height:1.9; font-weight:400; }
#shops .stockist-link {
  display:inline-flex; align-items:center; justify-content:flex-start; gap:8px;
  width:max-content; min-height:44px; height:auto; margin:0; padding:8px 0;
  font-size:13px; line-height:1.5; font-weight:400; letter-spacing:.02em;
  color:#655b52; text-decoration:underline; text-underline-offset:4px;
}
#shops .stockist-link svg { flex:none; }
#shops .stockist-link:hover { color:#333; }
@media(max-width:800px) {
  #shops .stockist-row { grid-template-columns:minmax(0,1fr); gap:8px; padding:25px 28px; }
  #shops .stockist-link { margin-top:2px; }
}
