/* ── Ontrepreneur Leads Showcase ─────────────────────────────────── */
.olsc {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 48px;
}

/* Header */
.olsc__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.olsc__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.2;
}
.olsc__subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

/* CTA button */
.olsc__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .15s, transform .1s;
    box-shadow: 0 4px 14px rgba(99,102,241,.3);
}
.olsc__cta-btn:hover { opacity: .9; transform: translateY(-1px); }

/* Toolbar: search + category select */
.olsc__toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.olsc__search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}
.olsc__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.olsc__search {
    width: 100%;
    padding: 10px 36px 10px 36px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}
.olsc__search:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.olsc__search::placeholder { color: #94a3b8; }
.olsc__search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 12px;
    color: #94a3b8;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1;
}
.olsc__search-clear:hover { color: #ef4444; background: rgba(239,68,68,.08); }

.olsc__select-wrap {
    position: relative;
    flex-shrink: 0;
}
.olsc__select-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.olsc__select {
    padding: 10px 14px 10px 32px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    outline: none;
    cursor: pointer;
    appearance: none;
    min-width: 180px;
    transition: border-color .15s;
}
.olsc__select:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,.1); }

.olsc__result-count {
    font-size: 13px;
    color: #64748b;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Lead grid */
.olsc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.olsc__loading {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    color: #94a3b8;
    font-size: 14px;
}
.olsc__spinner {
    width: 22px; height: 22px;
    border: 2px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: olsc-spin .7s linear infinite;
}
@keyframes olsc-spin { to { transform: rotate(360deg); } }
.olsc__empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
}

/* Lead card */
.olsc__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    transition: box-shadow .2s, transform .2s;
}
.olsc__card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.09);
    transform: translateY(-2px);
}
.olsc__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.olsc__card-meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.olsc__cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6366f1;
    background: rgba(99,102,241,.1);
    padding: 2px 9px;
    border-radius: 10px;
}
.olsc__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
}
.olsc__badge--website { background: rgba(16,185,129,.1); color: #059669; }
.olsc__badge--admin   { background: rgba(245,158,11,.12); color: #d97706; }
.olsc__date { font-size: 11px; color: #94a3b8; flex-shrink: 0; }

.olsc__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}
.olsc__card-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Bid bar */
.olsc__bid-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.olsc__bid-segs { display: flex; gap: 3px; flex-shrink: 0; }
.olsc__bid-seg {
    width: 18px; height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
}
.olsc__bid-seg--taken { background: #3b82f6; }
.olsc__bid-row--full .olsc__bid-seg--taken { background: #ef4444; }
.olsc__bid-label { font-size: 12px; color: #64748b; flex: 1; }
.olsc__bid-row--full .olsc__bid-label { color: #dc2626; font-weight: 600; }

/* Card footer */
.olsc__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid #f1f5f9;
}
.olsc__card-footer--centered {
    justify-content: center;
}
.olsc__spots { font-size: 12px; color: #22c55e; font-weight: 600; }
.olsc__full-badge {
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    background: rgba(239,68,68,.08);
    padding: 2px 8px;
    border-radius: 10px;
}
.olsc__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6 !important;
    text-decoration: none !important;
    transition: color .15s;
    white-space: nowrap;
}
.olsc__card-btn:hover { color: #6366f1 !important; }

/* Load more */
.olsc__pagination { text-align: center; margin-bottom: 32px; }
.olsc__load-more {
    padding: 11px 32px;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    background: #fff;
    color: #3b82f6;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
}
.olsc__load-more:hover { background: #3b82f6; color: #fff; }
.olsc__load-more:disabled { opacity: .6; cursor: wait; }

/* CTA strip */
.olsc__cta-strip {
    background: linear-gradient(135deg, #1e40af 0%, #4338ca 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 16px;
    color: #fff;
}
.olsc__cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.olsc__cta-strip strong { font-size: 18px; font-weight: 700; display: block; margin-bottom: 4px; }
.olsc__cta-strip p { font-size: 14px; opacity: .85; margin: 0; }
.olsc__cta-btn--lg { font-size: 15px; padding: 13px 28px; background: #fff; color: #3b82f6 !important; box-shadow: none; }
.olsc__cta-btn--lg:hover { background: #f0f7ff; }

@media (max-width: 600px) {
    .olsc__title { font-size: 22px; }
    .olsc__grid { grid-template-columns: 1fr; }
    .olsc__header, .olsc__cta-strip-inner { flex-direction: column; }
}

/* CTA variants — logged-in member vs guest */
.olsc__card-btn--member {
    color: #3b82f6 !important;
    font-weight: 700;
}
.olsc__card-btn--register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: opacity .15s, transform .1s;
    white-space: nowrap;
    width: 100%;
    box-shadow: 0 3px 12px rgba(99,102,241,.35);
}
.olsc__card-btn--register:hover { opacity: .9; transform: translateY(-1px); }

/* Category mismatch notice for logged-in members */
.olsc__cat-mismatch {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 7px;
    padding: 6px 10px;
    line-height: 1.4;
}
.olsc__cat-mismatch strong { color: #78350f; }

/* City on showcase tile */
.olsc__card-city {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 4px;
}

/* Masked contact teaser */
.olsc__contact-teaser {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 4px;
}
.olsc__contact-masked {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    filter: blur(3px);
    user-select: none;
    pointer-events: none;
    letter-spacing: .04em;
}
.olsc__contact-unlock-hint {
    font-size: 11px;
    color: #6366f1;
    font-weight: 600;
    filter: none;
    margin-top: 2px;
}
