/* Widget: Featured Businesses — grid wrapper (cards use wgt-sr__* styles) */
.wgt-fb { margin: 0 auto var(--space-8,64px); padding: 0 var(--space-4,16px); max-width: 960px; }
.wgt-fb__head { display:flex; align-items:flex-end; justify-content:space-between; gap:var(--space-3,12px); margin-bottom:var(--space-5,24px); }
.wgt-fb__head-text { min-width:0; }
.wgt-fb__kicker { font-size:.6875rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:#94a3b8; margin:0 0 3px; }
.wgt-fb__title { font-family:var(--font-display,var(--font-sans)); font-size:1.125rem; font-weight:700; color:var(--c-text,#1f252b); margin:0; line-height:1.3; }
.wgt-fb__more { font-size:.8125rem; font-weight:600; color:var(--c-primary,#3a5568); text-decoration:none; white-space:nowrap; flex-shrink:0; transition:opacity .15s; }
.wgt-fb__more:hover { opacity:.75; }
.wgt-fb__grid { display:grid; grid-template-columns:1fr; gap:var(--space-4,16px); }
/* Sin botón CTA: tarjeta horizontal tipo resultados */
.wgt-fb__grid .wgt-sr__parent { grid-template-columns:64px minmax(0,1fr); }
@media (min-width:768px) {
    .wgt-fb { padding:0; }
    .wgt-fb__title { font-size:1.25rem; }
    .wgt-fb__grid .wgt-sr__parent { grid-template-columns:64px minmax(0,1fr); }
}
@media (min-width:1024px) {
    .wgt-fb__grid .wgt-sr__parent { grid-template-columns:64px minmax(0,1fr); }
}

/* ── Empty state ─────────────────────────────────────────────────── */
.wgt-fb--empty {
    padding: var(--space-7, 48px) var(--space-4, 16px);
}

.wgt-fb__empty {
    text-align: center;
    max-width: 460px;
    margin: 0 auto;
    padding: var(--space-7, 48px) var(--space-5, 24px);
    border: 1px dashed var(--c-line-strong, #c9c5bb);
    border-radius: var(--radius-lg, 16px);
    background: var(--c-fill, #faf9f5);
}

.wgt-fb__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full, 9999px);
    background: var(--c-primary-soft, #e7f0f6);
    color: var(--c-primary, #14314a);
    margin-bottom: var(--space-4, 16px);
}

.wgt-fb__empty .wgt-fb__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-2, 8px);
}

.wgt-fb__empty-desc {
    font-size: 0.9375rem;
    color: var(--c-text-muted, #5a6470);
    line-height: 1.5;
    margin: 0 0 var(--space-5, 24px);
}

.wgt-fb__empty-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 8px);
    min-height: 44px;
    padding: 0 var(--space-5, 24px);
    border-radius: var(--radius-md, 10px);
    background: var(--c-accent, #e8702a);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease;
}

.wgt-fb__empty-cta:hover {
    background: var(--c-accent-hover, #d05f17);
}

