/**
 * FXD Broker Card List — [frs_broker_card_list]
 * Extracted from an inline <style> block (was echoed on wp_head
 * for every page load, whether the shortcode was used or not).
 * Now a real stylesheet, enqueued only when the shortcode renders.
 */

/* ── FRS Broker Card List ─────────────────────────────────────
   Uses --frs-* CSS variables (which in turn alias --fdhf-*).
   Supports both dark (default) and light (.frs-light) modes.
   ─────────────────────────────────────────────────────────── */
.frs-bcl-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}
.frs-bcl-card {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 110px;
    background: var(--fxd-surface);
    border-radius: 8px;
    padding: 0 18px;
    box-sizing: border-box;
    font-family: "Outfit", "DM Sans", sans-serif;
    transition: border-color 0.2s;
    overflow: hidden;
}

/* Rank badge (optional) */
.frs-bcl-rank {
    font-size: 12px;
    font-weight: 700;
    color: var(--fxd-primary);
    flex-shrink: 0;
    min-width: 20px;
}
/* Logo */
.frs-bcl-logo {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    border: 1px solid var(--fxd-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.frs-bcl-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-sizing: border-box;
}
.frs-bcl-initials {
    font-size: 16px;
    font-weight: 700;
    color: var(--fxd-text-muted);
    letter-spacing: -0.5px;
}
/* Meta */
.frs-bcl-meta {
    flex: 1;
    min-width: 0;
}
.frs-bcl-name {
    margin: 0 0 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fxd-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.frs-bcl-sub {
    margin: 0 0 6px;
    font-size: 10px;
    color: var(--fxd-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.frs-bcl-tags {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
}
.frs-bcl-tag {
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid var(--frs-line);
    color: var(--fxd-text-muted);
    white-space: nowrap;
    line-height: 1.6;
}
.frs-bcl-tag--plat {
    border-color: rgba(74,144,217,0.3);
    color: var(--fxd-info);
    background: var(--fxd-info-tint);
}
.frs-bcl-tag--reg {
    border-color: rgba(46,204,138,0.3);
    color: var(--fxd-positive);
    background: var(--fxd-positive-tint);
}
/* Right column */
.frs-bcl-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.frs-bcl-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.frs-bcl-score {
    font-size: 11px;
    font-weight: 700;
    color: var(--fxd-text);
    line-height: 1;
    font-family: "Syne", "Outfit", sans-serif;
}
.frs-bcl-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}
.frs-bcl-stars svg {
    display: block;
}
.frs-bcl-no-rating {
    font-size: 9px;
    color: var(--fxd-text-muted);
    margin-bottom: 3px;
}
/* CTA button — uses brand gold */
.frs-bcl-btn {
    display: inline-block;
    background: var(--fxd-primary);
    color: var(--fxd-surface) !important;
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1.5;
    transition: opacity 0.2s;
}
.frs-bcl-btn:hover {
    opacity: .85;
}
/* Full review link */
.frs-bcl-review-link {
    font-size: 10px;
    color: var(--fxd-text) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    white-space: nowrap;
    transition: color 0.2s;
    line-height: 1.5;
}
