/*──────────────────────────────────────────────────────────────────────
  Locked video card styles
  - Yellow lock icon positioned top-left of thumbnail
  - Cursor indicates non-interactive state
──────────────────────────────────────────────────────────────────────*/

/* Lock icon — positioned top-left of the thumbnail */
.card-lock-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.1rem;
    color: #d4a017;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    pointer-events: none;
}

/* Desktop: locked cards get default cursor, no pointer */
.card-locked { cursor: default; }
.card-locked .card-thumbnail { cursor: default; }

/* Desktop: show title + class count beneath all thumbnails */
.card-info { padding: 8px 2px 0; }
.card-info-title {
    font-size: 0.85em;
    font-weight: 600;
    color: #e5e5e5;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-info-sub {
    font-size: 0.75em;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}

/* Mobile: locked cards — same lock icon treatment */
.nf-card-locked { cursor: default; }
.nf-card-locked .nf-thumb .card-lock-icon {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 1rem;
}