/* 18-community-home overview */

.ov-stage {
    height: 100%;
    overflow: auto;
    padding: 20px 22px 28px;
    background:
        radial-gradient(700px 320px at 80% 0%, color-mix(in srgb, var(--va-accent) 14%, transparent), transparent 50%),
        transparent;
}

.ov-stage--empty {
    padding: 0;
    min-height: 100%;
    pointer-events: none;
}

.ov-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

.ov-card {
    border-radius: 22px;
    padding: 18px;
    border: 1px solid var(--va-border);
    background: rgba(255, 255, 255, 0.03);
    min-height: 0;
}

.ov-card h3 {
    font-family: var(--va-display, Syne, Inter, sans-serif);
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.ov-wide {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.ov-row {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
    color: inherit;
    width: 100%;
    text-align: left;
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: pointer;
}

.ov-row:hover {
    color: var(--va-text);
}

.ov-ava {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ov-ava--sm {
    width: 32px;
    height: 32px;
}

.ov-preview {
    color: var(--va-text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ov-live {
    display: block;
    width: 100%;
    height: 180px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    background-color: #12151c;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.ov-live span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: #fff;
}

.ov-meta {
    color: var(--va-text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0 0 12px;
}

.ov-pin strong {
    display: block;
    margin-bottom: 6px;
}

.ov-pin p {
    color: var(--va-text-muted);
    font-size: 0.85rem;
    margin: 0 0 12px;
    line-height: 1.45;
}

.ov-link {
    margin-top: var(--space-2);
}

.ov-count {
    font-weight: 500;
    color: var(--va-text-muted);
    font-size: 0.85em;
}

.ov-row--compact {
    padding: 8px 0;
}

.ov-live:disabled {
    opacity: 0.55;
    cursor: default;
}

.ov-card .btn-primary.ov-link {
    box-shadow: 0 0 24px color-mix(in srgb, var(--va-accent) 35%, transparent);
}

.badge-n {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--va-accent);
    color: var(--va-btn-text);
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* @bp-content — 1000px */
@media (max-width: 1000px) {
    .ov-grid { grid-template-columns: 1fr; }
    .ov-wide { grid-column: auto; grid-row: auto; }
}
