/* Google Business Profile details card (GBP Audit tool). Token-based so it
   themes with the app. Not in the design-lint TARGETS — but still uses tokens,
   not raw hex, so it stays consistent with the design system. */
.gbp-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 18px; }
.gbp-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.gbp-ico { display: inline-block; vertical-align: middle; flex-shrink: 0; margin-right: 6px; }

.gbp-verify { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 800; background: rgba(245,158,11,0.14); color: var(--amber); border: 1px solid rgba(245,158,11,0.40); }
.gbp-verify.ok { background: rgba(16,185,129,0.14); color: var(--green); border-color: rgba(16,185,129,0.40); }

.gbp-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.gbp-row:last-child { border-bottom: 0; }
.gbp-row-label { width: 120px; flex: 0 0 120px; font-size: 11px; font-weight: 800; letter-spacing: .3px; color: var(--muted); text-transform: uppercase; }
.gbp-row-val { flex: 1; font-size: 13px; color: var(--text); line-height: 1.5; }
.gbp-row-val a { color: var(--purple-bright); text-decoration: none; }
.gbp-row-val a:hover { text-decoration: underline; }
.gbp-sub { color: var(--muted); }

.gbp-status { font-weight: 700; color: var(--green); margin-bottom: 6px; }
.gbp-hours { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 2px 16px; }
.gbp-hours-row { display: flex; justify-content: space-between; font-size: 12px; }
.gbp-hours-row span:first-child { color: var(--muted); }

.gbp-chip { display: inline-block; padding: 4px 10px; margin: 0 5px 5px 0; border-radius: var(--radius-pill); background: rgba(124,92,252,0.08); border: 1px solid rgba(124,92,252,0.22); font-size: 11.5px; color: var(--text); }
.gbp-photo { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); vertical-align: middle; margin-right: 10px; }

.gbp-review { padding: 12px 0; border-bottom: 1px solid var(--border); }
.gbp-review:last-child { border-bottom: 0; }
.gbp-review-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.gbp-review-stars { color: var(--gold); font-size: 12px; }
.gbp-review-time { color: var(--muted); font-size: 11px; }
.gbp-review-text { font-size: 12.5px; color: var(--text); line-height: 1.55; }
.gbp-owner { margin-top: 8px; margin-left: 14px; padding: 8px 12px; background: rgba(124,92,252,0.06); border-left: 2px solid var(--purple-bright); border-radius: 0 8px 8px 0; font-size: 12px; color: var(--muted); }
.gbp-owner strong { color: var(--purple-bright); }
