/* =====================================================================
   OFFSZN Mobile Search — Completely independent class names
   These classes are ONLY used on mobile (≤768px) and have zero
   conflicts with any existing desktop CSS.
   ===================================================================== */

.offszn_m_row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.offszn_m_thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.offszn_m_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.offszn_m_info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.offszn_m_title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.offszn_m_meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
}

.offszn_m_producer {
    color: #888;
    cursor: pointer;
}

.offszn_m_producer:hover {
    color: #fff;
    text-decoration: underline;
}

.offszn_m_sep {
    color: #555;
}

.offszn_m_type {
    color: #888;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.offszn_m_pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    color: #ccc;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    flex-shrink: 0;
}

.offszn_m_pill_sep {
    color: #444;
    margin: 0 2px;
}

/* Results header mobile */
.offszn_m_results_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.offszn_m_results_count {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}
