.browse-layout {
    grid-template-columns: 1fr;
}

.browse-search {
    position: relative;
    margin-bottom: 24px;
}

.browse-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}

.browse-search-input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-primary);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s;
}

.browse-search-input::placeholder {
    color: var(--text-muted);
}

.browse-search-input:focus {
    border-color: var(--accent);
}

.browse-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.browse-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.browse-bar:hover {
    border-color: #444;
    background: var(--bg-raised);
    text-decoration: none;
}

.browse-bar-content {
    min-width: 0;
}

.browse-bar-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.browse-bar:hover .browse-bar-icon {
    opacity: 1;
}

.browse-bar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.browse-bar-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
