/* Cannabicity All Locations Grid Styles */
/* Note: grid-template-columns is set dynamically via inline style for the columns attribute */
.cbl-locations-grid{display:grid;gap:24px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}
.cbl-loc-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.08);transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column}
.cbl-loc-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.12)}
.cbl-loc-card-image-wrap{display:block;width:100%;height:200px;overflow:hidden;flex-shrink:0;background:#f2e9da}
.cbl-loc-card-image{width:100%;height:100%;object-fit:cover;display:block}
.cbl-loc-card-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.cbl-loc-card-image-placeholder svg{width:60px;height:60px;opacity:.3}
.cbl-loc-card-body{padding:20px;flex:1;display:flex;flex-direction:column}
.cbl-loc-card-name{font-size:20px;font-weight:700;color:#11274a;margin:0 0 8px;line-height:1.3}
.cbl-loc-card-name a{color:#11274a;text-decoration:none}
.cbl-loc-card-name a:hover{color:#f5b335}
.cbl-loc-card-address{font-size:14px;color:#4a5568;margin-bottom:10px;line-height:1.5;min-height:42px}
.cbl-loc-card-phone{font-size:14px;margin-bottom:12px;min-height:21px}
.cbl-loc-card-phone a{color:#11274a;text-decoration:none;font-weight:600}
.cbl-loc-card-phone a:hover{color:#f5b335}
.cbl-loc-card-status{display:inline-block;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600;margin-bottom:12px}
.cbl-loc-card-status.is-open{background:#d4edda;color:#155724}
.cbl-loc-card-status.is-closed{background:#f8d7da;color:#721c24}
.cbl-loc-card-status.is-coming-soon{background:#fff3cd;color:#856404}
.cbl-loc-card-services{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:16px;min-height:26px}
.cbl-loc-card-service{padding:4px 10px;background:#f2e9da;border-radius:12px;font-size:11px;font-weight:600;color:#11274a}
.cbl-loc-card-hours{font-size:13px;color:#4a5568;margin-bottom:16px;line-height:1.5}
.cbl-loc-card-hours strong{color:#11274a}
.cbl-loc-card-actions{display:flex;gap:10px;margin-top:auto}
.cbl-loc-card-btn{flex:1;padding:12px 16px;border-radius:8px;font-size:14px;font-weight:600;text-align:center;text-decoration:none !important;transition:background .2s}
.cbl-loc-card-btn-primary{background:#f5b335;color:#11274a !important}
.cbl-loc-card-btn-primary:hover{background:#e5a325;color:#11274a !important}
.cbl-loc-card-btn-secondary{background:#11274a;color:#f5b335 !important}
.cbl-loc-card-btn-secondary:hover{background:#1a3660;color:#f5b335 !important}
.cbl-loc-card-distance{font-size:12px;color:#11274a;font-weight:600;margin-bottom:8px;display:none}
@media(max-width:992px){.cbl-locations-grid{grid-template-columns:repeat(2,1fr) !important}}
@media(max-width:600px){.cbl-locations-grid{grid-template-columns:1fr !important}}
